summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorJoel Galenson <jgalenson@google.com>2018-10-12 12:59:45 -0700
committerJoel Galenson <jgalenson@google.com>2018-10-19 10:55:17 -0700
commitcfb1f6fc63c929f56cc8113663ce24fac2162c04 (patch)
tree0c2f70108e6ad0230214441cd31017970fd445a5 /AndroidManifest.xml
parent45f057e1b3ac0feff00058f619acabe03ce35567 (diff)
downloadandroid_packages_apps_PackageInstaller-cfb1f6fc63c929f56cc8113663ce24fac2162c04.tar.gz
android_packages_apps_PackageInstaller-cfb1f6fc63c929f56cc8113663ce24fac2162c04.tar.bz2
android_packages_apps_PackageInstaller-cfb1f6fc63c929f56cc8113663ce24fac2162c04.zip
Add the permission usage screen of the Permissions Hub.
This adds an initial version of the permission usage screen. It shows permission requests by apps with the ability to filter based on permission, time, and whether or not to show system apps. Currently the only way to access it is through searching Settings for "permissions usage", and clicking on an entry brings you to that app's list of permissions. Bug: 63532550 Test: Used the Permissions Hub. Change-Id: I9282f859cb99d2ade4cb9b01d8145ca27e17363e
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index aaf89aad..d3362e41 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -14,6 +14,7 @@
<uses-permission android:name="android.permission.OBSERVE_GRANT_REVOKE_PERMISSIONS" />
<uses-permission android:name="android.permission.UPDATE_APP_OPS_STATS" />
<uses-permission android:name="android.permission.MANAGE_APP_OPS_MODES" />
+ <uses-permission android:name="android.permission.GET_APP_OPS_STATS" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.KILL_UID" />
@@ -60,6 +61,7 @@
android:theme="@style/Settings">
<intent-filter android:priority="1">
<action android:name="android.intent.action.MANAGE_PERMISSIONS" />
+ <action android:name="android.intent.action.REVIEW_PERMISSION_USAGE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>