Qt for Android provides a complete solution to develop, build, and package your applications for Android. Most of these tasks, especially packaging and deployment are handled by Qt Creator providing rich developer experience.
Every time you run the application using Qt Creator, an Android Application Package (APK) is created and deployed onto the target of your choice (device or emulator). With few minor changes to packaging settings, you can publish your application on Google Play. The following instructions guide you to create an
.apk
that can go live on Google Play:
Release Build
.
AndroidManifest.xml
which is the main file of concern here.
AndroidManifest.xml
:
更多信息,见 editing the Manifest Files in Qt Creator .
注意:
By default, Qt adds the permissions and the features based on the module dependencies of your application. If you do not want these default permissions and features, either deselect the checkboxes
Include default permissions for Qt modules
and
Include default features for Qt modules
, or remove the following part from the
AndroidManifest.xml
文件:
<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application. Remove the comment if you do not require these default permissions. --> <!-- %%INSERT_PERMISSIONS --> <!-- The following comment will be replaced upon deployment with default features based on the dependencies of the application. Remove the comment if you do not require these default features. --> <!-- %%INSERT_FEATURES -->
For information on the manifest XML format, see Android: App Manifest .
.apk
file. You can create a new keystore if you do not have one. For more information, see
Specifying Settings for Packages in Qt Creator
.
.apk
package at:
<$BUILD_DIR>/android-build/build/outputs/apk/release/android-build-release.apk
注意:
In Qt Creator, select
Projects
>
构建
>
Build Steps
>
Build Android APK
>
Open package location after build
to build the application's
.apk
and open the directory containing the package.
.aab
file, then locate the package at:
<$BUILD_DIR>/android-build/build/outputs/bundle/release/android-build-release.aab
.apk
or
.aab
files, along with a description and screen captures resembling the usage of your application.
For more information on packaging, see 在 Android 部署应用程序 .