简体   繁体   English

如何强制将我的Android应用安装在移动设备上而不是下载

[英]How to force my android app to be installed in mobile device instead of download

I have provided my android app on my website for download instead of Google Play Store. 我已经在我的网站上提供了我的android应用程序供下载,而非Google Play商店。 From my website user can download the apk file and can install that. 用户可以从我的网站下载apk文件并进行安装。 How can I force that application to be install directly in the mobile instead of download? 如何强制该应用程序直接在移动设备上安装而不是下载?

You can try following code and see if it works. 您可以尝试下面的代码,看看它是否有效。

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.myweb.com/myapp.apk")));

Reference 参考

If you provide a link, and they open from browser it will automatically install for it. 如果您提供链接,并且它们从浏览器打开,它将自动为其安装。

 <a href="yourdomain.com/yourapp.apk">Download and install...</a>.

but only if users allow installation from 'Unknown sources' in settings/security. 但前提是用户允许通过设置/安全性中的“未知来源”进行安装。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Android:如何显示安装在我的设备上的拨号程序列表,而不是直接调用默认拨号程序 - Android: How to show a list of dialer app installed on my device instead of directly calling default dialer Android-如何检查我的应用之前是否已安装到设备上? - Android - how to check was my app installed to device before? Android应用程序未显示安装在模拟器和我的设备上 - Android app is not showing installed on emulator and my device 打开移动设备时如何查看我的 android 应用程序? - how to check in my android app when switch on mobile device? 在设备上安装App后的Android通知 - 如何? - Android Notification after App is installed on device - How to? 如何检测设备上是否已安装Android App? - How to detect, if Android App was already installed at the device? 我的Android应用程序无法安装在我的设备中 - My android app can't be installed in my device 您如何强制android下载播客而不是播放播客? - How do you force android to download a podcast instead of playing it? Android:如何强制将文件下载(从Chrome,Gmail…)到我的应用定义的特定位置 - Android: how do I force file download (form Chrome, Gmail…) to a specific location defined by my app Android Market说我的应用“不在目标群体中”或“无法在此设备上安装” - Android Market says my app is “not in targeted group” or “cannot be installed on this device”
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM