truease.com
truease.com

Reputation: 1301

how to ask qt create apk package for android without start a simulator

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

Answers (2)

reyoung
reyoung

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

Ranco
Ranco

Reputation: 893

Here's a very fast alternative:

genymotion

which you can launch from eclipse and android studio as well

Upvotes: 1

Related Questions