1

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

4

2 回答 2

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

于 2012-12-28T10:29:52.447 回答
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>
于 2012-12-29T15:19:43.367 回答