Android APK Distribution Without “Unknown Sources”

2019-07-04 23:41发布

We are trying to distribute our Android App outside of Google Play. Is there any way to do this without forcing the user to go through the Settings App and checking the "Allow Unknown Sources" checkbox?

2条回答
冷血范
2楼-- · 2019-07-05 00:27

Is there any way to do this without forcing the user to go through the Settings App and checking the "Allow Unknown Sources" checkbox?

If they have the Android SDK installed, they can install your app via USB cable.

Otherwise, they have to check that checkbox.

查看更多
别忘想泡老子
3楼-- · 2019-07-05 00:28

In addition to CommonsWare's comment, there is one other way to install. If you can get the manufacturer to sign your app, or if you can somehow get them to install your app from one of their apps, then you can use the following permission:

android.permission.INSTALL_PACKAGES

Android does not provide this to 3rd party apps, however, so the above two are really your only options.

查看更多
登录 后发表回答