summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2020-12-20 02:00:16 +0100
committerArne Schwabe <arne@rfc2549.org>2021-02-16 16:40:04 +0100
commit5f360d1271e79548025ccb4f7cedead7c0a7a35e (patch)
tree80fe81dd68cb53a508ea395e34bdd1ce59d23670
parentff4d625d1ef0b8c6e2226dec171487ef2f20e742 (diff)
ignore lint error on permission to list all apps
-rw-r--r--main/src/main/AndroidManifest.xml6
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>-->