diff options
Diffstat (limited to 'packages/SystemUI/AndroidManifest.xml')
-rw-r--r-- | packages/SystemUI/AndroidManifest.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/SystemUI/AndroidManifest.xml b/packages/SystemUI/AndroidManifest.xml index 9f2aa32ec7e2..d71d38a08ff0 100644 --- a/packages/SystemUI/AndroidManifest.xml +++ b/packages/SystemUI/AndroidManifest.xml @@ -297,6 +297,9 @@ <protected-broadcast android:name="com.android.settingslib.action.UNREGISTER_SLICE_RECEIVER" /> <protected-broadcast android:name="com.android.settings.flashlight.action.FLASHLIGHT_CHANGED" /> + <!-- DataSwitch tile --> + <uses-permission android:name="android.permission.WRITE_APN_SETTINGS" /> + <application android:name=".SystemUIApplication" android:persistent="true" @@ -343,7 +346,8 @@ TODO: Should have an android:permission attribute --> <service android:name=".screenshot.TakeScreenshotService" android:process=":screenshot" - android:exported="false" /> + android:exported="true" + android:permission="android.permission.INTERACT_ACROSS_USERS_FULL" /> <!-- Called from PhoneWindowManager --> <receiver android:name=".screenshot.ScreenshotServiceErrorReceiver" |