如何在Android Market上发布的更新应用程序?应用程序、如何在、Android、Market

2023-09-05 06:45:06 作者:一念苍井便成空

我已经在Android Market上的应用程序,现在我想更新上传到该应用程序。 我与该软件包的新的应用程序,我已递增的版本code和姓名,我也使用相同的密钥存储...等签署。现在我想知道如何发布更新。

I already have an application on the android market and now I want to upload an update to that application. I have made the new application with the same package name, I have incremented the version code and name , I have signed with the same key-store...etc. Now I want to know how to publish an update.

我上传更新作为一个单独的应用程序?还是怎么回事怎么办呢?

Do I upload the update as a separate application? or how else do I do it?

编辑:是否APK名称必须相同previous版本?我的意思是如果原来的版本我的apk的名字是abc.apk可我的更新名xyz.apk?

Does the apk name need to be same as the previous version? I mean if my apk name for the original version is abc.apk can my update name be xyz.apk?

推荐答案

您需要的,除非你需要增加在清单XML的版本号上传你的新的应用程序一样的应用程序为previous版本。

You need to upload your new app as the same app as previous version except you need to increment the version number in manifest xml.

所以,如果你有清单文件类似如下: <舱单的xmlns:机器人=htt​​p://schemas.android.com/apk/res/android           安卓版code =1     。 。 。照片 < /舱单>

So if you have manifest file like following: <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" . . . </manifest>

您将需要以下内容: &LT;舱单的xmlns:机器人=htt​​p://schemas.android.com/apk/res/android           安卓版code =2     。 。 。照片 &LT; /舱单&GT;

You will need following: <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="2" . . . </manifest>

 
精彩推荐
图片推荐