Build error: kit supports "", but the device uses "arm64-v8a..."
-
wrote on 28 Sept 2023, 19:15 last edited by
I installed Qt 6.5.3 Android. on MacOS Ventura. Target is Android Pixel 6.
There is no sub-module for "ARMeabi" or "ARMv8" under Qt 6.x on MaintainceTool. Qt 5.x has these sub-module.When I build with Qt Creator, I got this error.
The kit supports "", but the device uses "arm64-v8a, armeabi-v7a, armeabi".
I made sure these Kits are installed.
Do I missing some steps for kit installation?
-
I installed Qt 6.5.3 Android. on MacOS Ventura. Target is Android Pixel 6.
There is no sub-module for "ARMeabi" or "ARMv8" under Qt 6.x on MaintainceTool. Qt 5.x has these sub-module.When I build with Qt Creator, I got this error.
The kit supports "", but the device uses "arm64-v8a, armeabi-v7a, armeabi".
I made sure these Kits are installed.
Do I missing some steps for kit installation?
@torui Did you check the Kit for warnings/errors?
-
@jsulm I have actually almost the same problem with
And those are my kits :
With my phone :
All things seems okay but still doesn't work...
-
@simcir can you show qt versions tab of the kit? It looks like you did not select any of arm64-v8a, armeabi-v7a, armeabi. Qt 6 is a bit different now.
-
wrote on 10 Dec 2023, 23:26 last edited by
This means your device is likely not recognized by adb. To confirm go to
Android/Sdk/platform-tools
run./adb devices
You may see something like this:
List of devices attached 2A191FDH2000WJ no permissions (missing udev rules? user is in the plugdev group); see [http://developer.android.com/tools/device.html]
This can be because your device is in charging mode, or your user account doesn't have permission to access the USB device. Simplest fix is probably switch to "file transfer" mode on your device.
If that doesn't fix it, check here
https://stackoverflow.com/questions/53887322/adb-devices-no-permissions-user-in-plugdev-group-are-your-udev-rules-wrong -
wrote on 9 Jan 2024, 06:04 last edited by roger2000 1 Sept 2024, 06:06
Hello,
I'm too in Qt 6.5.3 and galaxy tab8, and I have the same problem.
I'm on widows 11.
I'm connected to adb, and my device is listed in adb devices.
Qt does not reconize his own kit version. -
wrote on 16 Jan 2024, 03:50 last edited by
I had the same problem and solved it on Ubuntu by deleting the cache of QtCreator using :
rm -R ~/.cache/QtProject
-