下载应用程序并在 Android 上动态安装

发布于 2025-01-06 02:06:20 字数 143 浏览 0 评论 0原文

如何在 Android 上下载给定 URL 的应用程序并进行设置?

示例:

当应用程序运行时,它会首先控制Web服务来请求新的应用程序。

如果有任何新的应用程序,它将获取 URL、下载文件并安装。

怎么办呢?

How to download application given URL and setup on android?

Example:

When the application runs, it will first control the web service to ask for a new application.

If there are any new applications, it will get the URL, downloads the file and install.

How can it be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

攒眉千度 2025-01-13 02:06:20

您不能以这种方式安装 APK——只有属于系统固件一部分的应用程序才能执行此操作。

您应该能够使用 ACTION_VIEW Intent,其中 MIME 类型为 application/vnd.android.package-archive ,并且 Uri 指向您的文件。请注意,这可能不适用于未选中“允许非市场安装”的设备。

You cannot install APKs that way -- only applications that are part of the system firmware can do that.

You should be able to use an ACTION_VIEW Intent, with a MIME type of application/vnd.android.package-archive and a Uri pointing to your file. Note that this may not work on devices that do not have "allow non-Market installs" checked.

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