[solved] How to install android app without connect it with Pc
-
-
When you run your app with qt creator it create apk file in build/folder/android/bin directory which you can copy and install on other device. In case debug build it called QtApp-debug.apk. In case release you get QtApp-release-unsigned.apk to run it on other device you need to sign it either manual or configure QtCreator to sign it(see project->run->deploy configuration).
-
You could add custom icon by editing AndroidManifest.xml in your project
-
-
If you are using Qt 5.1.1 or greater, open the AndroidManifest.xml from QtCreator, it opens in an editor and in it General > Application > Application Icon (Click on the individual boxes and select your file)
-
In addition to p3c0's answer. You also could edit AndroidManifest.xml manually. "There":http://stackoverflow.com/a/10817936/1850954 are more info about application icon for Android.
-
Ok, So it must be here,
QtCreator > Projects > Build & Run > "Your Android kit" > Run > Package Configurations > Application Icon and then click on the individual boxes and select your file -
Here is the Screenshot:
!http://i41.tinypic.com/2mwfig5.png(Application Icons)!
-
It also depends which version of QtCreator you use. In 2.8.1 to add icon you should open AndroidManifest.xml which is placed in "Other files" in your project tree. There is two mode to edit it: "XML Source" and "General". In General you could find "Application icon" field where you could add your icon.