如何删除旧版apk并在Google Play市场上发布更新?

时间:2012-12-27 15:44:16

标签: google-play

如何删除旧的APK并在Google Play市场上发布更新?我有一个已发布的APK,但我在我的代码中添加了一些额外内容。我已经想出如何取消发布我的应用程序,但是如何删除旧的并上传新的?我尝试取消激活并上传新的...并向我发送消息新的apk的versionCode(1)已经存在... 。但我已经修改了代码并进行了新的签名...如果更改了包名称不被接受...我从清单更新版本代码和名称并修复它!

2 个答案:

答案 0 :(得分:0)

在你的新APK的Android清单中更改这两行:

android:versionCode="the higher the number here, the newer the apk is to the android market- for ex. 2"
android:versionName="here is your version name- for ex. 1.0.2"

之后发布apk

答案 1 :(得分:0)

还使用相同的.keystore文件::

对导出版本.apk文件进行签名

尝试发布包含清单的新.apk文件::#

<application
android:versionCode="2.0" //higher number than your previous version(1.0) so 2.0 --> new version >      old version
android:versionName="2.0.0" //these version which would be display at Google Play Store
>  

</application>