简体   繁体   中英

Android developer console app update

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

您只需上传一个新的apk文件,该文件应具有比之前的apk更高的版本代码和更高的版本号。

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM