martincik / react-native-hockeyapp

HockeyApp integration for React Native with Android and iOS support
MIT License
124 stars 56 forks source link

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

Open omkarsheral1989 opened 6 years ago

omkarsheral1989 commented 6 years ago

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

samueljmurray commented 6 years ago

This is the permission you can add to fix this:

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