how to build apk target for API level 30 by using qt5.12.4
Unsolved
Mobile and Embedded
-
@jsulm Thanks a lot
Try 1:
Due to there is no 30 in QT 5.12.4:
I tried to add:<uses-sdk android:minSdkVersion="22" android:targetSdkVersion="30"/>
so I manually set 30 in AndroidManifest.xml,
android 64bit apk is built, but the app can not connect with wifi, and log get this "
QNetworkInterface/AF_NETLINK: found unknown interface with index 1 ....
If set android:targetSdkVersion="29", has no any issue.
Try 2:
I update with QT 5.15.6, Android Qt 5.15.6 Clang Multi-Abi, and set this in build.gradle:
defaultConfig { resConfig "en" minSdkVersion = 22 targetSdkVersion = 30 }
App could be build on usb-connected Android 12 device (Pixel5), but even login can not show up. only show app icon at the top of while background.
Would you mind give me some suggestion or hint to solve this? thanks a lot