如何在Android Market上发布的更新应用程序? [英] how to publish an update to application on the android market?

查看:124
本文介绍了如何在Android Market上发布的更新应用程序?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经在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>

这篇关于如何在Android Market上发布的更新应用程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆