Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. Unable to debug Android App (Windows + Qt Creator 12 + LLDB)

Unable to debug Android App (Windows + Qt Creator 12 + LLDB)

Scheduled Pinned Locked Moved Unsolved Mobile and Embedded
169 Posts 9 Posters 61.4k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C CodesInChaoss
    24 Feb 2024, 07:29

    and the build.gradle file:```
    buildscript {
    repositories {
    google()
    mavenCentral() // For Kotlin and many other dependencies
    }

    dependencies {
    classpath 'com.android.tools.build:gradle:7.0.4'
    }
    }

    repositories {
    google()
    jcenter()
    }

    apply plugin: 'com.android.application'

    dependencies {
    implementation fileTree(dir: 'libs', include: ['.jar', '.aar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
    //compile 'com.android.support:design:28.0.0'
    implementation 'com.android.support:support-v4:24.+'
    }

    android {
    /*******************************************************
    * The following variables:
    * - androidBuildToolsVersion,
    * - androidCompileSdkVersion
    * - qt5AndroidDir - holds the path to qt android files
    * needed to build any Qt application
    * on Android.
    *
    * are defined in gradle.properties file. This file is
    * updated by QtCreator and androiddeployqt tools.
    * Changing them manually might break the compilation!
    *******************************************************/

    compileSdkVersion 31
      buildToolsVersion '28.0.3'
    ndkVersion '25.1.8937393'
    
    sourceSets {
        main {
            manifest.srcFile 'AndroidManifest.xml'
            java.srcDirs = [qt5AndroidDir + '/src', 'src', 'java']
            aidl.srcDirs = [qt5AndroidDir + '/src', 'src', 'aidl']
            res.srcDirs = [qt5AndroidDir + '/res', 'res']
            resources.srcDirs = ['resources']
            renderscript.srcDirs = ['src']
            assets.srcDirs = ['assets']
            jniLibs.srcDirs = ['libs']
       }
    }
    
    tasks.withType(JavaCompile) {
        options.incremental = true
    }
    
    
    lintOptions {
        abortOnError false
    }
    
    // Do not compress Qt binary resources file
    aaptOptions {
        noCompress 'rcc'
    }
    
    defaultConfig {
        resConfig "en"
        minSdkVersion = qtMinSdkVersion
        targetSdkVersion = qtTargetSdkVersion
    }
    

    }

    C Offline
    C Offline
    CodesInChaoss
    wrote on 24 Feb 2024, 11:34 last edited by
    #73

    @CodesInChaoss

    Now we became paranoid to get things running 626fd603-b810-4d42-aa7a-4955612a26d7-image.png

    so we keep going through points available at https://wiki.qt.io/Qt_5.15_Tools_and_Versions

    line by line... so we uninstall JAVA SE 17 compatible stuff in favor of JAVA SE 11 (even though in variety of places it says newer versions of JAVA are all good)

    but guess what?

    After the JDK is unistalled.... new versions of JDK chosen.... QT CReator 12... it would never recover - look above........
    NEVER.

    C 1 Reply Last reply 24 Feb 2024, 11:36
    0
    • C CodesInChaoss
      24 Feb 2024, 11:34

      @CodesInChaoss

      Now we became paranoid to get things running 626fd603-b810-4d42-aa7a-4955612a26d7-image.png

      so we keep going through points available at https://wiki.qt.io/Qt_5.15_Tools_and_Versions

      line by line... so we uninstall JAVA SE 17 compatible stuff in favor of JAVA SE 11 (even though in variety of places it says newer versions of JAVA are all good)

      but guess what?

      After the JDK is unistalled.... new versions of JDK chosen.... QT CReator 12... it would never recover - look above........
      NEVER.

      C Offline
      C Offline
      CodesInChaoss
      wrote on 24 Feb 2024, 11:36 last edited by
      #74

      @CodesInChaoss 977ab8e0-a9b2-457f-9033-9779b288ab80-image.png

      after one attempts to select NDK's loation by hand (..) wonderful huh?

      C 1 Reply Last reply 24 Feb 2024, 11:37
      0
      • C CodesInChaoss
        24 Feb 2024, 11:36

        @CodesInChaoss 977ab8e0-a9b2-457f-9033-9779b288ab80-image.png

        after one attempts to select NDK's loation by hand (..) wonderful huh?

        C Offline
        C Offline
        CodesInChaoss
        wrote on 24 Feb 2024, 11:37 last edited by
        #75

        @CodesInChaoss 1166e4ef-139f-492a-84dd-5650aa49b6be-image.png

        C 1 Reply Last reply 24 Feb 2024, 11:40
        0
        • C CodesInChaoss
          24 Feb 2024, 11:37

          @CodesInChaoss 1166e4ef-139f-492a-84dd-5650aa49b6be-image.png

          C Offline
          C Offline
          CodesInChaoss
          wrote on 24 Feb 2024, 11:40 last edited by
          #76

          8232cfdd-2868-400c-a4e9-b884e6ebff5b-image.png @CodesInChaoss 1199539a-fb9d-4484-b6a5-1e58176e80f9-image.png 09175890-2c79-4375-83d5-ba243298dde6-image.png

          Guess time to un install Creator 12... the COMMERCIAL THING.. all over again.. doing this like 8th time this week maybe more

          C 1 Reply Last reply 24 Feb 2024, 11:41
          0
          • C CodesInChaoss
            24 Feb 2024, 11:40

            8232cfdd-2868-400c-a4e9-b884e6ebff5b-image.png @CodesInChaoss 1199539a-fb9d-4484-b6a5-1e58176e80f9-image.png 09175890-2c79-4375-83d5-ba243298dde6-image.png

            Guess time to un install Creator 12... the COMMERCIAL THING.. all over again.. doing this like 8th time this week maybe more

            C Offline
            C Offline
            CodesInChaoss
            wrote on 24 Feb 2024, 11:41 last edited by
            #77

            Am I to receive any kind of 'thanks' for these reports from Qt? A free Tech Support just maybe?

            C 1 Reply Last reply 24 Feb 2024, 11:42
            0
            • C CodesInChaoss
              24 Feb 2024, 11:41

              Am I to receive any kind of 'thanks' for these reports from Qt? A free Tech Support just maybe?

              C Offline
              C Offline
              CodesInChaoss
              wrote on 24 Feb 2024, 11:42 last edited by
              #78

              @CodesInChaoss 33bcc727-d816-4557-bc3c-a33548542cb4-image.png Here we go AGAIN

              C 1 Reply Last reply 24 Feb 2024, 13:02
              0
              • C CodesInChaoss
                24 Feb 2024, 11:42

                @CodesInChaoss 33bcc727-d816-4557-bc3c-a33548542cb4-image.png Here we go AGAIN

                C Offline
                C Offline
                CodesInChaoss
                wrote on 24 Feb 2024, 13:02 last edited by
                #79

                GOOD FOLKS!

                QT Creator 12 (the paid for version) does not continue to surprise (..) along with its documentation.

                cb3e7d5d-6944-40ba-930a-bdaa31526a4c-image.png

                So that's the result of QT Creator doing autonomous Android SDK setup under the Java SE 11 as advised by official docs.

                RE-install AGAIN?

                C 1 Reply Last reply 24 Feb 2024, 13:14
                0
                • C CodesInChaoss
                  24 Feb 2024, 13:02

                  GOOD FOLKS!

                  QT Creator 12 (the paid for version) does not continue to surprise (..) along with its documentation.

                  cb3e7d5d-6944-40ba-930a-bdaa31526a4c-image.png

                  So that's the result of QT Creator doing autonomous Android SDK setup under the Java SE 11 as advised by official docs.

                  RE-install AGAIN?

                  C Offline
                  C Offline
                  CodesInChaoss
                  wrote on 24 Feb 2024, 13:14 last edited by
                  #80

                  @CodesInChaoss

                  Since we really really WANT to get this up and running, we would download and OFFICIAL 11.0.12 JE as advises by docs (..) not the opensource thing...and see

                  C 1 Reply Last reply 24 Feb 2024, 13:20
                  0
                  • C CodesInChaoss
                    24 Feb 2024, 13:14

                    @CodesInChaoss

                    Since we really really WANT to get this up and running, we would download and OFFICIAL 11.0.12 JE as advises by docs (..) not the opensource thing...and see

                    C Offline
                    C Offline
                    CodesInChaoss
                    wrote on 24 Feb 2024, 13:20 last edited by CodesInChaoss
                    #81

                    @CodesInChaoss ba41a8fd-eda1-49f4-859e-cfb3db33751f-image.png

                    Windows 11 version exactly as the one found in docs 22H... now it MUST work, right?

                    C 1 Reply Last reply 24 Feb 2024, 13:28
                    0
                    • C CodesInChaoss
                      24 Feb 2024, 13:20

                      @CodesInChaoss ba41a8fd-eda1-49f4-859e-cfb3db33751f-image.png

                      Windows 11 version exactly as the one found in docs 22H... now it MUST work, right?

                      C Offline
                      C Offline
                      CodesInChaoss
                      wrote on 24 Feb 2024, 13:28 last edited by
                      #82

                      @CodesInChaoss a45e2915-850e-4e3c-bd56-5b6ab03c88ea-image.png

                      Do I dare?

                      C 1 Reply Last reply 24 Feb 2024, 13:29
                      0
                      • C CodesInChaoss
                        24 Feb 2024, 13:28

                        @CodesInChaoss a45e2915-850e-4e3c-bd56-5b6ab03c88ea-image.png

                        Do I dare?

                        C Offline
                        C Offline
                        CodesInChaoss
                        wrote on 24 Feb 2024, 13:29 last edited by
                        #83

                        @CodesInChaoss 1debc1e9-0ece-4a11-9b2d-089aca35f2cc-image.png

                        C 1 Reply Last reply 24 Feb 2024, 13:41
                        0
                        • C CodesInChaoss
                          24 Feb 2024, 13:29

                          @CodesInChaoss 1debc1e9-0ece-4a11-9b2d-089aca35f2cc-image.png

                          C Offline
                          C Offline
                          CodesInChaoss
                          wrote on 24 Feb 2024, 13:41 last edited by
                          #84

                          @CodesInChaoss 3acbdb5f-7b88-4e5c-8ffe-60dd52dbc047-image.png 963ff6a9-e714-460c-b5b3-7cb0410359e0-image.png 10f40172-509d-4d4e-88a2-b028c4e0a3f8-image.png

                          679aa87a-6467-443c-8017-cd7c488ba5f8-image.png

                          what can I do

                          C 1 Reply Last reply 24 Feb 2024, 13:46
                          0
                          • C CodesInChaoss
                            24 Feb 2024, 13:41

                            @CodesInChaoss 3acbdb5f-7b88-4e5c-8ffe-60dd52dbc047-image.png 963ff6a9-e714-460c-b5b3-7cb0410359e0-image.png 10f40172-509d-4d4e-88a2-b028c4e0a3f8-image.png

                            679aa87a-6467-443c-8017-cd7c488ba5f8-image.png

                            what can I do

                            C Offline
                            C Offline
                            CodesInChaoss
                            wrote on 24 Feb 2024, 13:46 last edited by
                            #85

                            so since Android SDK with API 31 EMPLOYS Java class version 61 objects for its components this IMPLIES a requirements for JDK version 17. ​

                            QT ... kindly update your docs?

                            C T 2 Replies Last reply 24 Feb 2024, 13:48
                            0
                            • C CodesInChaoss
                              24 Feb 2024, 13:46

                              so since Android SDK with API 31 EMPLOYS Java class version 61 objects for its components this IMPLIES a requirements for JDK version 17. ​

                              QT ... kindly update your docs?

                              C Offline
                              C Offline
                              CodesInChaoss
                              wrote on 24 Feb 2024, 13:48 last edited by
                              #86

                              7a25f61d-68ea-45ed-8b56-f538613a675a-image.png @CodesInChaoss

                              that's WRONG... Android API 31 components (SDK) REQUIRES (seemingly JAVA SE version 17) since its components use object version 61 NOT 55.

                              C 1 Reply Last reply 24 Feb 2024, 13:48
                              0
                              • C CodesInChaoss
                                24 Feb 2024, 13:48

                                7a25f61d-68ea-45ed-8b56-f538613a675a-image.png @CodesInChaoss

                                that's WRONG... Android API 31 components (SDK) REQUIRES (seemingly JAVA SE version 17) since its components use object version 61 NOT 55.

                                C Offline
                                C Offline
                                CodesInChaoss
                                wrote on 24 Feb 2024, 13:48 last edited by
                                #87

                                let's keep trying... shall we...

                                1 Reply Last reply
                                0
                                • J JoeCFD
                                  21 Feb 2024, 18:15

                                  @CodesInChaoss Maybe try to do it on Linux and it could be easier. The executable is same.

                                  C Offline
                                  C Offline
                                  CodesInChaoss
                                  wrote on 24 Feb 2024, 13:55 last edited by
                                  #88

                                  @JoeCFD you say?

                                  C 2 Replies Last reply 24 Feb 2024, 14:03
                                  0
                                  • C CodesInChaoss
                                    24 Feb 2024, 13:55

                                    @JoeCFD you say?

                                    C Offline
                                    C Offline
                                    CodesInChaoss
                                    wrote on 24 Feb 2024, 14:03 last edited by
                                    #89

                                    @CodesInChaoss e1ac9316-6879-4b64-a8b7-ff8f85a8e723-image.png

                                    but windows is on the list..but sure.. if it's to help out... we are are up for ANYTHING

                                    C 1 Reply Last reply 24 Feb 2024, 14:07
                                    0
                                    • C CodesInChaoss
                                      24 Feb 2024, 14:03

                                      @CodesInChaoss e1ac9316-6879-4b64-a8b7-ff8f85a8e723-image.png

                                      but windows is on the list..but sure.. if it's to help out... we are are up for ANYTHING

                                      C Offline
                                      C Offline
                                      CodesInChaoss
                                      wrote on 24 Feb 2024, 14:07 last edited by
                                      #90

                                      @CodesInChaoss b57a4701-8801-489c-9f38-0e19f45cf823-image.png Fetching Ubuntu 20.04 LTS already

                                      C 1 Reply Last reply 24 Feb 2024, 14:14
                                      0
                                      • C CodesInChaoss
                                        24 Feb 2024, 14:07

                                        @CodesInChaoss b57a4701-8801-489c-9f38-0e19f45cf823-image.png Fetching Ubuntu 20.04 LTS already

                                        C Offline
                                        C Offline
                                        CodesInChaoss
                                        wrote on 24 Feb 2024, 14:14 last edited by
                                        #91
                                        This post is deleted!
                                        1 Reply Last reply
                                        0
                                        • C CodesInChaoss
                                          24 Feb 2024, 13:55

                                          @JoeCFD you say?

                                          C Offline
                                          C Offline
                                          CodesInChaoss
                                          wrote on 24 Feb 2024, 19:09 last edited by CodesInChaoss
                                          #92

                                          @CodesInChaoss f95a2129-b57c-4acd-bb74-11707ecc3050-image.png

                                          The exact version of UBUNTU as advised by QT documentation....

                                          Now,' hilarious' is not a word which would do justice, or is it..

                                          C J 2 Replies Last reply 24 Feb 2024, 19:10
                                          0

                                          82/169

                                          24 Feb 2024, 13:28

                                          • Login

                                          • Login or register to search.
                                          82 out of 169
                                          • First post
                                            82/169
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Search
                                          • Get Qt Extensions
                                          • Unsolved