Android 上的 OTA 应用程序配置实现

发布于 2024-11-09 03:31:00 字数 75 浏览 0 评论 0原文

我正在尝试为我的应用程序实施 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倒带 2024-11-16 03:31:00

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 an ACTION_VIEW Intent, a Uri 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文