diff options
-rw-r--r-- | api/current.txt | 1 | ||||
-rw-r--r-- | core/java/android/app/AppOpsManager.java | 5 | ||||
-rw-r--r-- | core/res/AndroidManifest.xml | 8 |
3 files changed, 12 insertions, 2 deletions
diff --git a/api/current.txt b/api/current.txt index c734db5196a9..2223375a1604 100644 --- a/api/current.txt +++ b/api/current.txt @@ -91,6 +91,7 @@ package android { field public static final String KILL_BACKGROUND_PROCESSES = "android.permission.KILL_BACKGROUND_PROCESSES"; field public static final String LOCATION_HARDWARE = "android.permission.LOCATION_HARDWARE"; field public static final String MANAGE_DOCUMENTS = "android.permission.MANAGE_DOCUMENTS"; + field public static final String MANAGE_EXTERNAL_STORAGE = "android.permission.MANAGE_EXTERNAL_STORAGE"; field public static final String MANAGE_OWN_CALLS = "android.permission.MANAGE_OWN_CALLS"; field public static final String MASTER_CLEAR = "android.permission.MASTER_CLEAR"; field public static final String MEDIA_CONTENT_CONTROL = "android.permission.MEDIA_CONTENT_CONTROL"; diff --git a/core/java/android/app/AppOpsManager.java b/core/java/android/app/AppOpsManager.java index 86a5c762240f..d168572081af 100644 --- a/core/java/android/app/AppOpsManager.java +++ b/core/java/android/app/AppOpsManager.java @@ -1220,7 +1220,8 @@ public class AppOpsManager { OP_START_FOREGROUND, OP_SMS_FINANCIAL_TRANSACTIONS, OP_MANAGE_IPSEC_TUNNELS, - OP_INSTANT_APP_START_FOREGROUND + OP_INSTANT_APP_START_FOREGROUND, + OP_MANAGE_EXTERNAL_STORAGE, }; /** @@ -1624,7 +1625,7 @@ public class AppOpsManager { null, // no direct permission for OP_READ_DEVICE_IDENTIFIERS Manifest.permission.ACCESS_MEDIA_LOCATION, null, // no permission for OP_QUERY_ALL_PACKAGES - null, // no permission for OP_MANAGE_EXTERNAL_STORAGE + Manifest.permission.MANAGE_EXTERNAL_STORAGE, }; /** diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index 7719165aa402..97114b951e47 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -932,6 +932,14 @@ <permission android:name="android.permission.WRITE_OBB" android:protectionLevel="signature|privileged" /> + <!-- Allows an application a broad access to external storage in scoped storage. + Intended to be used by few apps that need to manage files on behalf of the users. + <p>Protection level: signature|appop + <p>This protection level is temporary and will most likely be changed to |preinstalled --> + <permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" + android:permissionGroup="android.permission-group.UNDEFINED" + android:protectionLevel="signature|appop" /> + <!-- ====================================================================== --> <!-- Permissions for accessing the device location --> <!-- ====================================================================== --> |