mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-25 19:36:50 +01:00
Extra QUERY_ALL_PACKAGES permission required for SDK 30 (which Play Store needs)
This commit is contained in:
parent
1eab878c8e
commit
ae3fc3ed48
@ -160,6 +160,10 @@ android {
|
||||
resValue "string", "about_activity_title", "@string/about_activity_title_banglejs_main"
|
||||
resValue "string", "about_description", "@string/about_description_banglejs_main"
|
||||
resValue "string", "gadgetbridge_running", "@string/gadgetbridge_running_banglejs_main"
|
||||
targetSdkVersion 30 // SDK 30 needed for play store
|
||||
// SDK 30 stops us querying package names - https://developer.android.com/training/package-visibility
|
||||
// which we need for getting app name from notifications. We have to request android.permission.QUERY_ALL_PACKAGES
|
||||
// as well for SDK 30
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -32,6 +32,9 @@
|
||||
android:name="android.permission.MEDIA_CONTENT_CONTROL"
|
||||
tools:ignore="ProtectedPermissions" />
|
||||
|
||||
<!-- SDK 30 https://developer.android.com/training/package-visibility for getting app name from notifications -->
|
||||
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
|
||||
|
||||
<!-- Used for background service -->
|
||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
||||
|
Loading…
Reference in New Issue
Block a user