Android APK文件升级流程
我想知道是否有一个 API 可以在不通过 Android Market 的情况下将应用程序升级到新版本。示例 我有一个 .apk 文件版本 1.0,我想以编程方式将其升级到版本 2.0。请记住,我更喜欢一种在进行应用程序升级时不会覆盖用户的高分或数据的方法。
非常感谢
I was wandering if there is an API to upgrade an application to newer version without going through Android Market. Example I have a .apk file version 1.0 and I would like to upgrade it to version 2.0 programmatically. Bearing in mind I would prefer a method that does not override user's high score or data when doing application upgrade.
Thanks much
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在指向更新的 APK 的
Uri
上使用ACTION_VIEW
Intent
,同时为Intent
提供神奇的 MIME 类型(application/vnd.android.package-archive
)。Use an
ACTION_VIEW
Intent
on aUri
pointing to the updated APK, also giving theIntent
the magic MIME type (application/vnd.android.package-archive
).