发布到 Google Play

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:

  1. Open your project with Qt Creator 4.11 or later choosing a Release Build .
  2. 选择 Projects > 构建 > Build Android APK > Create Templates to create the Android package template files such as AndroidManifest.xml which is the main file of concern here.
  3. Check for the following settings in AndroidManifest.xml :
    • Set Minimum required SDK to API 21 or later.
    • Set 应用程序名称 and Application icon .
    • 检查 权限 list has all the required permissions.
    • 检查 特征 list has the software or hardware features that your application depends on, such as GPS or NFC.

    更多信息,见 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 .

  4. 设置 keystore to sign your .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 .
  5. Locate the generated package:
    • For APK packages, locate the .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.

    • For AAB packages, select Projects > 构建 > Build Steps > Build Android APK > Build .aab (Android App Bundle) for Qt Creator to generate the .aab file, then locate the package at:
      <$BUILD_DIR>/android-build/build/outputs/bundle/release/android-build-release.aab
      									
  6. Log into the Google Play Developer Console and upload either of .apk or .aab files, along with a description and screen captures resembling the usage of your application.

For more information on packaging, see 在 Android 部署应用程序 .