diff options
author | Arne Schwabe <arne@rfc2549.org> | 2020-12-20 02:00:16 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2021-02-16 16:40:04 +0100 |
commit | 5f360d1271e79548025ccb4f7cedead7c0a7a35e (patch) | |
tree | 80fe81dd68cb53a508ea395e34bdd1ce59d23670 | |
parent | ff4d625d1ef0b8c6e2226dec171487ef2f20e742 (diff) |
ignore lint error on permission to list all apps
-rw-r--r-- | main/src/main/AndroidManifest.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/main/src/main/AndroidManifest.xml b/main/src/main/AndroidManifest.xml index aa3815ac..e0f7154c 100644 --- a/main/src/main/AndroidManifest.xml +++ b/main/src/main/AndroidManifest.xml @@ -9,8 +9,10 @@ <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> - <!-- Used to show all apps in the allowed Apps selection --> - <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" /> + <!-- Used to show all apps in the allowed Apps selection, + this app needs the list the app in the allow/deny apps over the VPN --> + <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" + tools:ignore="QueryAllPackagesPermission" /> <!-- <queries>--> |