在 android 上广播概念证明
Broadcasting Proof of Concept on android
我正在做一个 hackaton,我想向陪审团广播我的 android 申请的概念证明。问题是:我希望安装我的应用程序非常容易,我不想支付 25 美元来启动最多针对 20 人的东西。
例如,如果我们可以提供一个 url 就太好了,如果有人点击它,它会转到一个带有下载按钮的网页,然后你点击它,它就会安装在你的智能手机上.就这么简单!
For instance it would be great if we could provide an url, and if someone click on it, it goes to a webpage with a download button and you click on it and it install it on your smartphone.
那就照做吧。只要 Web 服务器设置为提供具有适当 MIME 类型 (application/vnd.android.package-archive
) 的 APK 文件,并且只要设备设置为允许从任意来源安装(在“设置”>“安全”中),这就可以正常工作很好。
我正在做一个 hackaton,我想向陪审团广播我的 android 申请的概念证明。问题是:我希望安装我的应用程序非常容易,我不想支付 25 美元来启动最多针对 20 人的东西。
例如,如果我们可以提供一个 url 就太好了,如果有人点击它,它会转到一个带有下载按钮的网页,然后你点击它,它就会安装在你的智能手机上.就这么简单!
For instance it would be great if we could provide an url, and if someone click on it, it goes to a webpage with a download button and you click on it and it install it on your smartphone.
那就照做吧。只要 Web 服务器设置为提供具有适当 MIME 类型 (application/vnd.android.package-archive
) 的 APK 文件,并且只要设备设置为允许从任意来源安装(在“设置”>“安全”中),这就可以正常工作很好。