UBports Robot Logo UBports Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. ezze
    3. Posts
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 7
    • Posts 58
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Redmi Note 9 Pro Call Problem

      @Enrico13011978 Not sure, but probably it depends on the region you are in. As far as I know QJZEUXM are firmwares dedicated to European countries and QJZMIXM are global firmwares. Keeping it in mind, I chose 12.0.2.0.QJZMIXM, and it works for me in Russia.

      posted in Xiaomi Redmi Note 9 Pro/Pro Max/9S & Poco M2 Pro
      ezzeE
      ezze
    • RE: Redmi Note 9 Pro Call Problem

      Here is the list of working firmwares at the moment:

      https://t.me/UTForMiatoll/5112

      • 11.0.03.0.QJZMIXM
      • 12.0.2.0.QJZMIXM
      • 12.0.4.0.QJZEUXM
      posted in Xiaomi Redmi Note 9 Pro/Pro Max/9S & Poco M2 Pro
      ezzeE
      ezze
    • RE: Clickable: CMake Error: Cannot open file for write

      I'm still struggling with the issue, so decided to report it here.

      posted in App Development
      ezzeE
      ezze
    • RE: Clickable: CMake Error: Cannot open file for write

      @wizardi3 Yes, I am on Ubuntu 20.04. I've already done these steps (tried installing from both pip3 and apt, see above), and yes, Clickable works under the root.

      But this is not what I want. My questions is whether it's possible to install and run it without root privileges. I guess that Docker is the culprit. I don't want to run Docker with root privileges for security reasons, and it was configured this way to run other image containers. But seems that Clickable doesn't respect this way of Docker installation, no matter whether it's installed with pip3 or apt.

      posted in App Development
      ezzeE
      ezze
    • RE: Clickable: CMake Error: Cannot open file for write

      @wizardi3 First time I installed it with this command:

      pip3 install --user clickable-ut --upgrade
      

      So I didn't use sudo. Should pip3 install it locally?

      posted in App Development
      ezzeE
      ezze
    • RE: Clickable: CMake Error: Cannot open file for write

      @jezek First of all, thank you for your reply! Really appreciate it!

      I am pretty sure I had docker group because I was able to run docker without root privileges.

      My last experiments with running sudo clickable mentioned above ended with broken login screen after reboot (.Xauthority was not writeable for some reason, and removing it didn't help). So I had to remove both Docker and Clickable in recovery mode.

      Here is the second attempt, and now I've installed Docker in rootless mode. Clickable asked me to setup Docker on the first run:

      $ clickable 
      Going to run all of "build", "install", "launch"
      Running command "build"
      Building app
      Docker is not running or not properly set up.
      Please run "clickable setup docker" first.
      ezze@merisa:~/Development/ubuntu-touch/hello-world$ clickable setup docker
      Do you want Clickable to set up docker by adding you to the docker group?
      See https://docs.docker.com/engine/security/#docker-daemon-attack-surface for security implications. [Y/n]: y
      Setting up docker
      Asking for root to start docker
      [sudo] password for ezze: 
      Setup finished
      Docker is set up and ready.
      

      And I am in docker group:

      $ groups ezze
      ezze : ezze adm cdrom sudo dip plugdev lpadmin lxd sambashare docker
      

      Anyway I'm still getting the same error like described in the first post of the topic when running clickable from the root directory of the project without root privileges.

      posted in App Development
      ezzeE
      ezze
    • RE: Creating Apps, ADB: No devices attached

      Hi, guys!
      Sorry for activating an old topic but it seems to me that it's the right place to ask the question. I have the same problem with Redmi Note 9 Pro. Developer mode has been enabled on the phone and I see it with adb on my Kubuntu 20.04 after device reboot:

      $ adb devices
      List of devices attached
      ec96a4b	unauthorized
      

      I also see the contents of my home directory in Dolphin but have no permissions to access directories from there:

      64dc210d-62b4-4460-85a4-e101d42add5a-image.png

      43ddd288-8372-4fc1-a3fd-b8a00d0da670-image.png

      I tried:

      $ adb shell
      error: device unauthorized.
      This adb server's $ADB_VENDOR_KEYS is not set
      Try 'adb kill-server' if that seems wrong.
      Otherwise check for a confirmation dialog on your device.
      

      But I don't see any confirmation dialog on my device.

      posted in App Development
      ezzeE
      ezze
    • RE: Clickable: CMake Error: Cannot open file for write

      Ok, I tried to change permissions of my hello-world directory:

      $ cd ..
      $ sudo chmod -R 777 hello-world
      $ cd hello-world
      $ clickable
      
      Going to run all of "build", "install", "launch"
      Running command "build"
      Building app
      -- The C compiler identification is GNU 5.4.0
      -- The CXX compiler identification is GNU 5.4.0
      -- Detecting C compiler ABI info
      -- Detecting C compiler ABI info - done
      -- Check for working C compiler: /usr/bin/cc - skipped
      -- Detecting C compile features
      -- Detecting C compile features - done
      -- Detecting CXX compiler ABI info
      -- Detecting CXX compiler ABI info - done
      -- Check for working CXX compiler: /usr/bin/c++ - skipped
      -- Detecting CXX compile features
      -- Detecting CXX compile features - done
      -- Found Gettext: /usr/bin/msgmerge (found version "0.19.7") 
      -- Configuring done
      -- Generating done
      -- Build files have been written to: /home/ezze/Development/ubuntu-touch/hello-world/build/all/app
      [ 50%] Merging translations into hello-world.desktop...
      [100%] Built target hello-world_FILES
      [100%] Generating translation template
      Wrote hello-world.desktop.in.h
      Merging translations into hello-world.desktop.
      [100%] Built target hello-world.desktop
      [100%] Built target hello-world.ezze.pot
      [ 50%] Merging translations into hello-world.desktop...
      Merging translations into hello-world.desktop.
      [ 50%] Built target hello-world.desktop
      [ 50%] Built target hello-world_FILES
      [100%] Generating translation template
      Wrote hello-world.desktop.in.h
      [100%] Built target hello-world.ezze.pot
      Install the project...
      -- Install configuration: "Release"
      -- Installing: /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/install/./manifest.json
      CMake Error at cmake_install.cmake:54 (file):
        file INSTALL cannot copy file
        "/home/ezze/Development/ubuntu-touch/hello-world/build/all/app/manifest.json"
        to
        "/home/ezze/Development/ubuntu-touch/hello-world/build/all/app/install/./manifest.json":
        Success.
      

      Now I have problems copying files to install subdirectory. The reason is that I have strange 100999 user and group for files generated in build/all/app directory.

      $ ls build/all/app
      
      total 64
      drwxrwxrwx 6 ezze   ezze    4096 дек  9 00:19 .
      drwxrwxrwx 3 ezze   ezze    4096 дек  9 00:18 ..
      drwxrwxrwx 3 ezze   ezze    4096 дек  9 00:18 .clickable
      -rw-r--r-- 1 100999 100999 14514 дек  9 00:19 CMakeCache.txt
      drwxr-xr-x 6 100999 100999  4096 дек  9 00:19 CMakeFiles
      -rw-r--r-- 1 100999 100999  4979 дек  9 00:19 cmake_install.cmake
      -rw-r--r-- 1 100999 100999   136 дек  9 00:19 hello-world.desktop
      drwxrwxr-x 2 ezze   ezze    4096 дек  9 00:19 install
      -rw-r--r-- 1 100999 100999  7826 дек  9 00:19 Makefile
      -rwxrwxrwx 1 100999 100999   392 дек  9 00:19 manifest.json
      drwxr-xr-x 3 100999 100999  4096 дек  9 00:19 po
      

      I am not a docker expert but is it somehow related to it?

      I saw in the installation guide that I also had to install docker.io in order to make clickable to work but I skipped this step because I already have Docker on my machine. My Docker instance is configured to start containers without root privileges. I don't remember exactly how it was done but I made it after Docker installation for sure.

      $ docker --version
      Docker version 20.10.21, build baeda1f
      $ clickable setup
      Docker is already set up
      Bash completion seems to be already set up.
      Run "source /home/ezze/.bashrc" or open a new terminal to apply changes.
      $ docker image ls
      REPOSITORY                    TAG                        IMAGE ID       CREATED         SIZE
      clickable/amd64-16.04-amd64   16.04.5                    ea27f5a0adbd   8 days ago      3.85GB
      postgres                      12                         4c69e29b9bc4   4 months ago    373MB
      debian                        buster                     d4729731066b   4 months ago    114MB
      maven                         3.8.5-openjdk-17-slim      126d58d17617   7 months ago    424MB
      openjdk                       17.0.2-jdk-slim-bullseye   37cb44321d04   7 months ago    408MB
      node                          16.5-alpine                4d2c046835fc   17 months ago   112MB
      

      So is it supposed to run clickable commands with root privileges?

      I reinstalled clickable from apt repository in order to be possible to run it under root, and do the following from my project's root directory:

      $ sudo clickable setup docker
      $ sudo clickable
      
      Going to run all of "build", "install", "launch"
      Running command "build"
      Building app
      -- Configuring done
      -- Generating done
      -- Build files have been written to: /home/ezze/Development/ubuntu-touch/hello-world/build/all/app
      [ 50%] Merging translations into hello-world.desktop...
      [ 50%] Built target hello-world_FILES
      [100%] Generating translation template
      Wrote hello-world.desktop.in.h
      Merging translations into hello-world.desktop.
      [100%] Built target hello-world.desktop
      [100%] Built target hello-world.ezze.pot
      [ 50%] Merging translations into hello-world.desktop...
      Merging translations into hello-world.desktop.
      [ 50%] Built target hello-world.desktop
      [ 50%] Built target hello-world_FILES
      [100%] Generating translation template
      Wrote hello-world.desktop.in.h
      [100%] Built target hello-world.ezze.pot
      Install the project...
      -- Install configuration: "Release"
      -- Installing: /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/install/./manifest.json
      -- Installing: /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/install//hello-world.apparmor
      -- Installing: /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/install//assets
      -- Installing: /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/install//assets/logo.svg
      -- Installing: /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/install//qml
      -- Installing: /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/install//qml/Main.qml
      -- Installing: /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/install//hello-world.desktop
      Successfully built package in './hello-world.ezze_1.0.0_all.click'.
      Running review on /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/hello-world.ezze_1.0.0_all.click
      /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/hello-world.ezze_1.0.0_all.click: pass
      Running command "install"
      Cannot access device.
      ADB: No devices attached
      SSH: no IP address specified (--ssh)
      

      Now it seems that I have more progress on running my first app (still need to explore why my device is not visible though developer mode is enabled). But my question at the moment: how can I configure clickable to run without root privileges?

      posted in App Development
      ezzeE
      ezze
    • Clickable: CMake Error: Cannot open file for write

      Hi, guys!

      I just installed clickable@7.7.3 using recommended way through pip3 mentioned here on my Kubuntu 20.04, and want to build my first simple app like described here.

      I was able to create the directory with required files by (QML only template):

      clickable create
      

      but when I try to compile the app with

      clickable
      

      I get the following error. The script creates some empty subdirectories starting with build and warns about permissions. I run all commands under my regular user without sudo and have 775 permissions to directories and 664 permissions to files in project directory.

      What's the reason and how can it be fixed?

      Going to run all of "build", "install", "launch"
      Running command "build"
      Building app
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake:181 (file):
        file failed to open for writing (No such file or directory):
      
          /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/CMakeOutput.log
      Call Stack (most recent call first):
        CMakeLists.txt:2 (project)
      
      
      CMake Error: Could not open file for write in copy operation /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CMakeSystem.cmake.tmp
      CMake Error: : System Error: No such file or directory
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake:193 (configure_file):
        configure_file Problem configuring file
      Call Stack (most recent call first):
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdC
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdC
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdC
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdC
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdC
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdC
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdC
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdC
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdC
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdC
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdC
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdC
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:1073 (file):
        file failed to open for writing (No such file or directory):
      
          /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/CMakeError.log
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:81 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:1073 (file):
        file failed to open for writing (No such file or directory):
      
          /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/CMakeError.log
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:81 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      -- The C compiler identification is unknown
      CMake Error: Could not open file for write in copy operation /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CMakeCCompiler.cmake.tmp
      CMake Error: : System Error: No such file or directory
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake:226 (configure_file):
        configure_file Problem configuring file
      Call Stack (most recent call first):
        CMakeLists.txt:2 (project)
      
      
      CMake Error: Could not find cmake module file: /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CMakeCCompiler.cmake
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdCXX
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake:120 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdCXX
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake:120 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdCXX
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake:120 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdCXX
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake:120 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdCXX
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake:120 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdCXX
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake:120 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdCXX
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake:120 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdCXX
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake:120 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdCXX
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake:120 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdCXX
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake:120 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdCXX
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake:120 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:300 (file):
        file problem creating directory:
        /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CompilerIdCXX
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:6 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:59 (__determine_compiler_id_test)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake:120 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:1073 (file):
        file failed to open for writing (No such file or directory):
      
          /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/CMakeError.log
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:81 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake:120 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:1073 (file):
        file failed to open for writing (No such file or directory):
      
          /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/CMakeError.log
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake:81 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)
        /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake:120 (CMAKE_DETERMINE_COMPILER_ID)
        CMakeLists.txt:2 (project)
      
      
      -- The CXX compiler identification is unknown
      CMake Error: Could not open file for write in copy operation /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CMakeCXXCompiler.cmake.tmp
      CMake Error: : System Error: No such file or directory
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake:226 (configure_file):
        configure_file Problem configuring file
      Call Stack (most recent call first):
        CMakeLists.txt:2 (project)
      
      
      CMake Error: Could not find cmake module file: /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/3.22.3/CMakeCXXCompiler.cmake
      -- Detecting C compiler ABI info
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake:49 (try_compile):
        Unknown extension ".c" for file
      
          /opt/cmake/share/cmake-3.22/Modules/CMakeCCompilerABI.c
      
        try_compile() works only for enabled languages.  Currently these are:
      
          C CXX
      
        See project() command to enable other languages.
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)
        CMakeLists.txt:2 (project)
      
      
      -- Detecting C compiler ABI info - failed
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake:188 (file):
        file failed to open for writing (No such file or directory):
      
          /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/CMakeError.log
      Call Stack (most recent call first):
        /opt/cmake/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)
        CMakeLists.txt:2 (project)
      
      
      -- Check for working C compiler: /usr/bin/cc
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake:41 (file):
        file failed to open for writing (No such file or directory):
      
          /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/CMakeTmp/testCCompiler.c
      Call Stack (most recent call first):
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake:56 (try_compile):
        Unknown extension ".c" for file
      
          /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/CMakeTmp/testCCompiler.c
      
        try_compile() works only for enabled languages.  Currently these are:
      
          C CXX
      
        See project() command to enable other languages.
      Call Stack (most recent call first):
        CMakeLists.txt:2 (project)
      
      
      -- Check for working C compiler: /usr/bin/cc - broken
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake:65 (file):
        file failed to open for writing (No such file or directory):
      
          /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeFiles/CMakeError.log
      Call Stack (most recent call first):
        CMakeLists.txt:2 (project)
      
      
      CMake Error at /opt/cmake/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake:69 (message):
        The C compiler
      
          "/usr/bin/cc"
      
        is not able to compile a simple test program.
      
        It fails with the following output:
      
          
      
        
      
        CMake will not be able to correctly generate this project.
      Call Stack (most recent call first):
        CMakeLists.txt:2 (project)
      
      
      -- Configuring incomplete, errors occurred!
      CMake Error: Cannot open file for write: /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeCache.txt.tmpaa10c
      CMake Error: : System Error: Permission denied
      CMake Error: Unable to open cache file for save. /home/ezze/Development/ubuntu-touch/hello-world/build/all/app/CMakeCache.txt
      CMake Error: : System Error: Permission denied
      
      posted in App Development
      ezzeE
      ezze
    • RE: no audio from calls when low volume

      @nitanmarcel Can this one be related? https://forums.ubports.com/topic/8388/sound-playback-recording-issues

      posted in Xiaomi Redmi Note 9 Pro/Pro Max/9S & Poco M2 Pro
      ezzeE
      ezze
    • Sound playback/recording issues

      I and my wife are using Redmi Note 9 Pro on a daily basis after migrating from Nexus 5 (half of a year and one year respectively). We have a good experience in common but the one thing is very annoying, and I couldn't bring myself to report it yet.

      When using the device, suddenly Camera app stops recording audio so the video file is silent during playback (and nothing helps). Looks like it's simply not being recorded. At the moment, I can't tell under which circumstances it happens exactly but can say that it may happen few times in a day (and even few minutes after reboot). The only way I found to temporarily fix the issue is to reboot the device. So each time we need to record some significant video where sound is important we're going to reboot the device first to minimize the risk of sound not being recorded.

      Another problem is that (also suddenly) the device stops playing the sound at the right volume. The sound becomes too quiet in videos and TELEports voice notes so it's almost impossible to distinguish the sound especially when some external noises are around. And the only way to "fix it" is also to reboot the device. Volume buttons don't help because Ubuntu Touch shows that sound is already at the highest volume.

      I would be very grateful to you, guys, if you can help to solve the issue or, at least, recommend some steps to narrow down the problem. I am a little bit surprised, to be honest, that nobody has addressed this one yet here (because I am experiencing it on two Redmi Note 9 Pro devices but not on two old Nexus 5 or BQ Aquaris M10). Does it mean that almost nobody use the device on a daily basis?

      Unfortunately, recent updates to OTA-24 also didn't help.

      I found that it's the only real alternative to my old Nexus 5 in our region so I dream of these issues being fixed in the nearest future.

      posted in Xiaomi Redmi Note 9 Pro/Pro Max/9S & Poco M2 Pro
      ezzeE
      ezze
    • RE: [Fixed] TELEports Login Issues

      Wow, guys, you're the best!!!

      posted in News
      ezzeE
      ezze
    • RE: [Fixed] TELEports Login Issues

      @ubportsnews Bad news but I found this thread after logging out. 😞 Hope you'll fix it as soon as possible, guys. I really appreciate your efforts on supporting this.

      posted in News
      ezzeE
      ezze
    • RE: [Fixed] TELEports Login Issues

      @nero355 Not sure that it's reasonable for Telegram developers. UT user base is very small, and a separate client development will not be able to recoup the investments.

      posted in News
      ezzeE
      ezze
    • RE: Struggle to buy phone to install onto

      @lsitongia Could you check, please, and tell me first 8 digits (TAC) of your IMEI? And do you have IMEIs from your previous phones that you were able to return back? It would be interesting to compare them.

      posted in Google Pixel 3a/3a XL
      ezzeE
      ezze
    • RE: Struggle to buy phone to install onto

      It seems that first eight numbers of IMEI identify the device model (so called TAC).

      The TAC provided by seller is 35967809. Unfortunatelly, I'm unable to find a complete free list of existing TAC yet.

      Another interesting detail from screenshot above is model number GA00974-UK. What is it and how can we use it?

      posted in Google Pixel 3a/3a XL
      ezzeE
      ezze
    • RE: Struggle to buy phone to install onto

      I've got an IMEI from the seller. Checked it here:

      9546fb7e-84c9-450d-96e2-972688c35164-image.png

      Does XL-NVZW mean that it's locked to Verizon carrier?

      The seller also couldn't provide the info regarding bootloader unlock status. He says that he doesn't know how to check it for me. Any help with it, guys, please?

      I've also checked IMEI here: https://www.imei.info/ But not sure it's really useful:

      cd600b16-0ea0-4e32-858c-acc20cbfde17-image.png

      39f20933-141e-4efa-a111-bf753a697c6c-image.png

      5d6ef341-770f-463a-ae27-fb07769cb816-image.png

      There is also interesting free warranty checker there: https://www.imei.info/services/google-pixel-country-sn-warranty/google/check-free/

      These are my results:

      40f464e4-543e-4d6e-9b31-3ce28e520042-image.png

      Does it mean that this device has been already sold to someone in UK in July, 2019, and now the seller located in Hong Kong is trying to resell it as a brand new one? :astonished_face:

      posted in Google Pixel 3a/3a XL
      ezzeE
      ezze
    • RE: Struggle to buy phone to install onto

      I found a candidate to buy on eBay. Asked the seller to confirm that the bootloader and carrier are unlocked, and that it's not a Verizon model. Here is his answer:

      "The phone is new and original. it's fully unlocked with GSM network.
      Verizon belongs to CDMA.
      We can send one IMEI number to you later."

      Can I believe him? He said nothing about bootloader. @lsitongia you told that you had bad experience with sellers from eBay, that's why I pricked up.

      Is having IMEI enough for me to check whether a phone is suitable for installing UT?

      posted in Google Pixel 3a/3a XL
      ezzeE
      ezze
    • RE: How to choose and where to purchase?

      @nauvpp Thank you for your response, mate! I am looking only for a new device so hope I'll have some luck getting the one I need.

      I can agree with you that Mi A2 looks like the best device for now according to the list of supported features: https://devices.ubuntu-touch.io/device/jasmine-sprout/

      I really appreciate your help, guys! I'm happy to get your feedback so soon!

      posted in Xiaomi Mi A2
      ezzeE
      ezze
    • RE: How to choose and where to purchase?

      @mateo_salta Thanks, it's very useful. I am confused now. How can I be sure that I order the proper model? As I can see, all of them are titled as A2 X6. Where did you get your A2?

      posted in Xiaomi Mi A2
      ezzeE
      ezze