下载应用程序并在 Android 上动态安装
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能以这种方式安装 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.