diff options
| author | 2017-03-24 16:39:56 +0000 | |
|---|---|---|
| committer | 2017-03-24 16:40:00 +0000 | |
| commit | cef238ed70a56400c62b81c0667c6b5792a5a6e3 (patch) | |
| tree | 82115dbab1b5a8ad0040667727d3fb2904059897 | |
| parent | dbf544f27193ecb5ad70aad24cd704b7daef3a70 (diff) | |
| parent | d8d1e199cce2eaaac0601125a57588a3055b3745 (diff) | |
Merge "Fix SystemUI intents"
| -rw-r--r-- | packages/SystemUI/AndroidManifest.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/SystemUI/AndroidManifest.xml b/packages/SystemUI/AndroidManifest.xml index 4b932a3361e6..e4d71b65ed6a 100644 --- a/packages/SystemUI/AndroidManifest.xml +++ b/packages/SystemUI/AndroidManifest.xml @@ -531,7 +531,7 @@ android:excludeFromRecents="true" android:exported="true"> <intent-filter> - <action android:name="android.intent.action.SHOW_BRIGHTNESS_DIALOG" /> + <action android:name="com.android.intent.action.SHOW_BRIGHTNESS_DIALOG" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </activity> @@ -564,8 +564,8 @@ <receiver android:name=".statusbar.KeyboardShortcutsReceiver"> <intent-filter> - <action android:name="android.intent.action.DISMISS_KEYBOARD_SHORTCUTS" /> - <action android:name="android.intent.action.SHOW_KEYBOARD_SHORTCUTS" /> + <action android:name="com.android.intent.action.DISMISS_KEYBOARD_SHORTCUTS" /> + <action android:name="com.android.intent.action.SHOW_KEYBOARD_SHORTCUTS" /> </intent-filter> </receiver> </application> |