mirror of
https://github.com/nextcloud/android.git
synced 2024-11-30 08:25:21 +03:00
Added the REQUEST_INSTALL_PACKAGES permission to the Android manifest.
With API 26 (Android O) any app that wants to install unknown apps must declare the REQUEST_INSTALL_PACKAGES permission. The user can then control what specific apps should be allowed to install unknown apps unlike the previous system where it was a system wide binary option for all apps. Without this declared permission the Nextcloud app will not be able to install apk's that the user have in their Nextcloud storage. With this permission added the user will be prompted to grant the app permission to install apps from unknown sources should they attempt to do so . This fixes #2269 and #2266
This commit is contained in:
parent
d3c8bc242b
commit
897a25d0fc
1 changed files with 1 additions and 0 deletions
|
@ -62,6 +62,7 @@
|
|||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||||
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
||||
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
||||
|
||||
|
||||
<application
|
||||
|
|
Loading…
Reference in a new issue