Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
434 views
in Technique[技术] by (71.8m points)

android - 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:

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.

I am unable to find this feature on Google Play Developer Console, can someone guide me over this feature?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Update :

In Google I/O 2018, a new publishing format has been introduced for Android applications called 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

Read More from below links :

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. And its being replaced by Apk Release So Advanced Mode is removed in new UI on google play store

You must know some rules before upload multiple APKS to play store :

  1. All APKs you publish for the same application must have the same package name and be signed with the same certificate key.
  2. Each APK must have a different version code, specified by the android:versionCode attribute.
  3. Each APK must not exactly match the configuration support of another APK.

for more information please Read

You can also see How to create multiple apk files for android application

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...