summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorSvet Ganov <svetoslavganov@google.com>2015-03-22 18:49:22 -0700
committerSvetoslav <svetoslavganov@google.com>2015-03-24 20:18:16 -0700
commit72b68774632f03289dc02d0e3dada06e9c984fd3 (patch)
treec427d0d5841da4391216b22728223508c0b49dd6 /AndroidManifest.xml
parent3c99a2b334eb00b6cfa078a9e9ed2d6a151bde46 (diff)
downloadandroid_packages_apps_PackageInstaller-72b68774632f03289dc02d0e3dada06e9c984fd3.tar.gz
android_packages_apps_PackageInstaller-72b68774632f03289dc02d0e3dada06e9c984fd3.tar.bz2
android_packages_apps_PackageInstaller-72b68774632f03289dc02d0e3dada06e9c984fd3.zip
Initial version of the grant permission UI.
Change-Id: Ieb311d29d122cfce130ae1a26889dd7794548833
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml15
1 files changed, 13 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 781d60b3..3273ddef 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -62,7 +62,7 @@
android:configChanges="orientation|keyboardHidden|screenSize"
android:exported="false" />
- <activity android:name=".GrantActivity"
+ <activity android:name=".permission.GrantPermissionsActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:excludeFromRecents="true"
android:theme="@android:style/Theme.DeviceDefault.Dialog.NoActionBar">
@@ -72,5 +72,16 @@
</intent-filter>
</activity>
+ <activity android:name=".permission.ManagePermissionsActivity"
+ android:configChanges="orientation|keyboardHidden|screenSize"
+ android:excludeFromRecents="true"
+ android:permission="android.permission.GRANT_REVOKE_PERMISSIONS">
+ <intent-filter>
+ <action android:name="android.intent.action.MANAGE_APP_PERMISSIONS" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
+
</application>
-</manifest>
+
+</manifest>