Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试为我的应用实施 OTA 设置更新。没有找到任何关于这个问题的教程。设置文件将是一个 XML 文件。
谢谢。
Android 中没有内置的“OTA 设置更新”。
如果“OTA 设置更新”意味着对您的应用程序本身进行更新,请将 APK 下载到外部存储并startActivity()使用ACTION_VIEW Intent、Uri指向它(世界可读)和神奇的 MIME 类型 ( application/vnd.android.package-archive) 调用。
startActivity()
ACTION_VIEW
Intent
Uri
application/vnd.android.package-archive
如果“OTA 设置更新”是数据,请从您的 Web 服务器下载您想要的内容。