diff options
author | Michael Wright <michaelwr@google.com> | 2015-09-03 14:00:52 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-09-03 14:00:52 +0000 |
commit | 8ae90587a510f72a176119b1f23add8bc36285b9 (patch) | |
tree | 1f919ca6a19605612ef6a8f40337ba28506ae218 /core/res | |
parent | bd5b61c489fb0543c8db29030e57189c273010eb (diff) | |
parent | 39e5e947447bc611205404ae6a4690656f1aa0f9 (diff) | |
download | frameworks_base-8ae90587a510f72a176119b1f23add8bc36285b9.zip frameworks_base-8ae90587a510f72a176119b1f23add8bc36285b9.tar.gz frameworks_base-8ae90587a510f72a176119b1f23add8bc36285b9.tar.bz2 |
Merge "Add TabletModeChangedListener for SystemUI." into mnc-dr-dev
Diffstat (limited to 'core/res')
-rw-r--r-- | core/res/AndroidManifest.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index b60fdba..c8bb675 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -2054,6 +2054,12 @@ <permission android:name="android.permission.SET_KEYBOARD_LAYOUT" android:protectionLevel="signature" /> + <!-- Allows an application to monitor changes in tablet mode. + <p>Not for use by third-party applications. + @hide --> + <permission android:name="android.permission.TABLET_MODE_LISTENER" + android:protectionLevel="signature" /> + <!-- Allows an application to request installing packages. Apps targeting APIs greater than 22 must hold this permission in order to use {@link android.content.Intent#ACTION_INSTALL_PACKAGE}. |