【问题标题】:How do I remove my old apk and publish an update on the Google play market?如何删除我的旧 apk 并在 Google Play 市场上发布更新?
【发布时间】:2012-12-27 15:44:15
【问题描述】:

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

【问题讨论】:

    标签: google-play


    【解决方案1】:

    在新 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

    【讨论】:

      【解决方案2】:

      还使用相同的 .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>
      

      【讨论】:

        猜你喜欢
        • 2016-10-19
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2016-05-19
        • 2021-04-08
        • 2012-04-18
        • 2012-06-22
        相关资源
        最近更新 更多