From fe77c348893d0fee606b92c4d017f610905ab488 Mon Sep 17 00:00:00 2001 From: Jonathan Klee Date: Mon, 3 Jun 2024 11:41:23 +0200 Subject: [PATCH] fix: Remove useless FORCE_STOP_PACKAGES permission This permission prevented eDrive from being installed with adb install. As mentioned in the permission description, this permission is required to use the forceStopPackage(). cf. https://cs.android.com/android/platform/superproject/main/+/main:frameworks/base/core/res/AndroidManifest.xml;l=4296 eDrive does not use this method anymore so we can safetly remove the permission. --- app/src/main/AndroidManifest.xml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 3bf33e1d..6bb8b5ac 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -28,12 +28,6 @@ tools:ignore="QueryAllPackagesPermission" /> - - -- GitLab