Android developer console app update

可紊 提交于 2019-12-21 03:55:25

问题


How do I release an update for my app? I can not find an update apk option on the developer console.


回答1:


You just upload a new apk file, which should have a higher version code and a higher version number than the previous apk.




回答2:


As Pompe says; but also be aware:

Before uploading the updated application, be sure that you have incremented the android:versionCode and android:versionName attributes in the element of the manifest file. Also, the package name must be the same as the existing version and the .apk file must be signed with the same private key. If the package name and signing certificate do not match those of the existing version, Market will consider it a new application, publish it as such, and will not offer it to existing users as an update.

http://developer.android.com/guide/publishing/publishing.html#marketupgrade




回答3:


Remember that you always have use the same key that you used to sign the first release version. If you sign a new version with a different key, you will get an error message when trying to upload it. As said in other replies, make sure that you have increased the versionCode and versionName in the manifest.xml



来源:https://stackoverflow.com/questions/6820688/android-developer-console-app-update

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!