简体   繁体   English

将多个APK发布到Google Play商店

[英]Publish Multiple APKs to Google Play Store

I was studying Android Developer doc today and found a new topic Multiple APK Support which says that: 我今天正在学习Android Developer doc,并发现了一个新主题多APK支持 ,它说:

Multiple APK support is a feature on Google Play that allows you to publish different APKs for your application that are each targeted to different device configurations. 多个APK支持是Google Play上的一项功能,允许您为应用发布不同的APK,每个APK都针对不同的设备配置。

I am unable to find this feature on Google Play Developer Console, can someone guide me over this feature? 我无法在Google Play开发者控制台上找到此功能,有人可以指导我完成此功能吗?

Update : 更新:

In Google I/O 2018, a new publishing format has been introduced for Android applications called Android App Bundle. 在Google I / O 2018中,为Android应用程序引入了一种新的发布格式,称为Android App Bundle。 It is a new upload format that includes all your app's compiled code and resources, but defers APK generation and signing to Google Play 这是一种新的上传格式,包含您应用的所有已编译代码和资源,但会延迟APK生成并签名到Google Play

Read More from below links : 阅读以下链接:

https://medium.com/mindorks/android-app-bundle-6c65ce8105a1 https://developer.android.com/guide/app-bundle https://medium.com/mindorks/android-app-bundle-6c65ce8105a1 https://developer.android.com/guide/app-bundle

@Paul In new UI on play store developer console APK tab has been removed. @Paul在Play商店开发者控制台APK选项卡上的新UI已被删除。 And its being replaced by Apk Release So Advanced Mode is removed in new UI on google play store 它被Apk Release取代,因此在Google Play商店的新用户界面中删除了高级模式

You must know some rules before upload multiple APKS to play store : 在将多个APKS上传到Play商店之前,您必须先了解一些规则:

  1. All APKs you publish for the same application must have the same package name and be signed with the same certificate key. 您为同一应用程序发布的所有APK必须具有相同的程序包名称,并使用相同的证书密钥进行签名。
  2. Each APK must have a different version code, specified by the android:versionCode attribute. 每个APK必须具有不同的版本代码,由android:versionCode属性指定。
  3. Each APK must not exactly match the configuration support of another APK. 每个APK都不能完全匹配另一个APK的配置支持。

for more information please Read 了解更多信息,请阅读

You can also see How to create multiple apk files for android application 您还可以看到如何为Android应用程序创建多个apk文件

All you have to do is upload each version one at a time. 您所要做的就是一次上传每个版本。 Each next version will need to be higher than the previous and it will ask you if you would like to deactivate any of your previous versions or retain them, and you will want to retain them so that they stay available. 每个下一个版本都需要高于之前的版本,它会询问您是否要停用以前的任何版本或保留它们,并且您希望保留它们以便它们保持可用状态。 Please note, users will always receive the highest version available to them though so if they are compatible with multiple versions then they will not be given the choice of which version they want, they will just automatically receive the highest version 请注意,用户将始终收到他们可用的最高版本,但如果他们与多个版本兼容,那么他​​们将无法选择他们想要的版本,他们将自动获得最高版本

Later in the documentation you link, it has a "how it works" section which explains you have to enable Advanced Mode to be able to use the feature: 稍后在您链接的文档中,它有一个“如何工作”部分 ,它解释了您必须启用高级模式才能使用该功能:

To publish multiple APKs for the same application, you must enable Advanced mode in your application's APK files tab (as discussed in the previous section). 要为同一应用程序发布多个APK,您必须在应用程序的APK文件选项卡中启用高级模式(如上一节所述)。 Once in advanced mode, you can upload, activate, then publish multiple APKs for the same application. 进入高级模式后,您可以上传,激活,然后为同一个应用程序发布多个APK。 The following sections describe more about how it works 以下部分详细介绍了它的工作原理

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在Google Play中发布多个APK - Publish multiple apks in google play 是否可以使用Fastlane将不同应用的多个APK发布到Google Play? - Is it possible to publish multiple APKs of different apps to Google Play using Fastlane? 在Google Play上管理多个.apks - Manage multiple .apks on Google Play 我可以在不使用android NDK的情况下将多种架构的APK上传到Google Play商店吗? - Can I upload apks for multiple architectures into the Google Play store without using the android NDK? 多个APK,适用于Google TV和Android手机/平板电脑的Play商店上的单个应用列表 - Multiple apks, single listing of app for Google TV and Android Phone/Tablet on Play Store 如何在 google play store 上发布多种风格的应用程序作为单个应用程序? - How to publish multiple flavour of an app as a single app on google play store? 在Google Play商店中发布应用 - Publish app in google play store Google Play商店发布到生产 - Google Play Store Publish to Production 将多个密度拆分的APK发布到Play商店时出错 - Error publishing multiple density split APKs to Play Store 将多个APK上传到Play商店,并使用不同语言对其进行本地化 - Upload multiple APKs to Play Store and localize them in different languages
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM