summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author TreeHugger Robot <treehugger-gerrit@google.com> 2017-03-24 16:39:56 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2017-03-24 16:40:00 +0000
commitcef238ed70a56400c62b81c0667c6b5792a5a6e3 (patch)
tree82115dbab1b5a8ad0040667727d3fb2904059897
parentdbf544f27193ecb5ad70aad24cd704b7daef3a70 (diff)
parentd8d1e199cce2eaaac0601125a57588a3055b3745 (diff)
Merge "Fix SystemUI intents"
-rw-r--r--packages/SystemUI/AndroidManifest.xml6
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>