Qt For Android Doesn't Find Any Compatible Devices
I'm trying to write android applications with Qt5.2. My project builds without any error, but when i'm trying to RUN it says i don't have any compatible devices. I configured QT cr
Solution 1:
It is a bug in Qt Creator: https://bugreports.qt-project.org/browse/QTCREATORBUG-11658
It is a changed behaviour in the latest version of the Android SDK that lists Virtual Devices with some prefix. So instead of armeabi-v7a it's returning default/armeabi-v7a, resulting in QtCreator complaining that the ABI is not supported.
You can overcome this problem by:
In QtCreator -> Projects -> BuildEnvironment add the variable
ANDROID_TARGET_ARCH=default/armeabi-v7a
Then the AVDs are shown as compatible.
Post a Comment for "Qt For Android Doesn't Find Any Compatible Devices"