Reputation: 1301
The android simulator is very slow, I don't want to debug with a simulator. I just want the qt create the APK file, and copy it to real hardware, and test.
But seems there is NO option to let qt just create the APK file.
I use qt5.1.0 in windows 7 64bit
Can anyone there know how to do it?
Upvotes: 4
Views: 1162
Reputation: 173
The android simulator is slow because most android device is arm architecture. You can use android sdk create a X86 avd(or use genymotion) and compile your qt project in X86 android mode. It will make test and run extremely fast.
Alternatively, you can build your project in command line (not in qt creator). Here is a post that will show you how to do that.
Upvotes: 2
Reputation: 893
Here's a very fast alternative:
which you can launch from eclipse and android studio as well
Upvotes: 1