AndroidManifest: Drop non-required protected permissions

INSTALL and DELETE packages permissions are only available to system apps
and every project including Aurora Store by default seems to include it
as a user app

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta
2025-01-14 11:02:40 +07:00
parent 9681d4b682
commit d12339a454
2 changed files with 0 additions and 3 deletions

View File

@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<issue id="MissingTranslation" severity="ignore" />
<issue id="ProtectedPermissions" severity="ignore" />
<issue id="QueryAllPackagesPermission" severity="ignore" />
<issue id="ScopedStorage" severity="ignore" />
</lint>

View File

@@ -36,8 +36,6 @@
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
<uses-permission android:name="android.permission.INSTALL_PACKAGES" />
<uses-permission android:name="android.permission.DELETE_PACKAGES" />
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />