可能重复:
Is there a way to automatically update application on Android?
如何让Android应用程序检查更新并在现有应用程序上安装更新版本而无需卸载它?
答案 0 :(得分:2)
在你的清单中你需要提到
版本代码,比方说1
及更高版本将更新为大于1的数字,表示其更新
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.package.name"
android:versionCode="2"
android:versionName="1.1">
在此处阅读更多内容http://developer.android.com/tools/publishing/versioning.html
如果它在市场上你不需要担心检查部分。只需在市场上上传您的新apk以及更新的版本代码即可。
答案 1 :(得分:0)
Google Play会在您向其发布应用程序时自动为您执行此操作。
用户将获得“新更新可用”通知,并在他/她准备好后安装更新,或者他们已将Google Play配置为自动安装新更新。
无需卸载旧应用。