martincik/react-native-hockeyapp

Android: App doesn't install on Android Oreo 8.0 (api v26) and above

omkarsheral1989 opened this issue · 1 comments

New apk is downloaded but cannot install as there is change in 'Install apps from unknown sources' in Oreo.
Refer:
https://developer.android.com/about/versions/oreo/android-8.0-changes#security-all (scroll little down to unkown sources)

This can be resolved easily by adding this permission in Android.manifest

This is the permission you can add to fix this:

<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />