Android 上的 OTA 应用程序配置实现
我正在尝试为我的应用程序实施 OTA 设置更新。 没有找到有关此问题的任何教程。 设置文件是一个 XML 文件。
谢谢。
i am trying to implement OTA settings update for my app.
didn't find any tutorial regarding this issue.
the settings file would be an XML file.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Android 中没有内置的“OTA 设置更新”。
如果“OTA 设置更新”意味着应用程序本身的更新,请将 APK 下载到外部存储并使用
ACTION_VIEW
Intent
调用startActivity()
、指向该内容的Uri
(世界可读),以及神奇的 MIME 类型 (application/vnd.android.package-archive
)。如果“OTA 设置更新”是数据,请从 Web 服务器下载所需内容。
There is no built-in "OTA settings update" in Android.
If "OTA settings update" implies an update to your application itself, download the APK to external storage and call
startActivity()
with anACTION_VIEW
Intent
, aUri
pointing to that (world-readable), and the magic MIME type (application/vnd.android.package-archive
).If "OTA settings update" is data, download what you want from your Web server.