summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2014-09-05 04:40:13 -0700
committerSunny Goyal <sunnygoyal@google.com>2014-09-05 04:42:18 -0700
commit9b8da88ebaf0521d380fd1dcc0a473c71edc7ca0 (patch)
tree74bb7b76298e1b319fa3afd8bff4bf33cf5345fa /AndroidManifest.xml
parent1c13ff569170bec075ab9961fbc0eb1ca395696b (diff)
downloadandroid_packages_apps_Trebuchet-9b8da88ebaf0521d380fd1dcc0a473c71edc7ca0.tar.gz
android_packages_apps_Trebuchet-9b8da88ebaf0521d380fd1dcc0a473c71edc7ca0.tar.bz2
android_packages_apps_Trebuchet-9b8da88ebaf0521d380fd1dcc0a473c71edc7ca0.zip
Fixing install shortcut receiver in launcher3
Change-Id: If22da17630be71fb22277b7a911aae57322b2ecc
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 3633c8c96..90b33c567 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -167,18 +167,18 @@
<!-- Intent received used to install shortcuts from other applications -->
<receiver
android:name="com.android.launcher3.InstallShortcutReceiver"
- android:permission="com.android.launcher3.permission.INSTALL_SHORTCUT">
+ android:permission="com.android.launcher.permission.INSTALL_SHORTCUT">
<intent-filter>
- <action android:name="com.android.launcher3.action.INSTALL_SHORTCUT" />
+ <action android:name="com.android.launcher.action.INSTALL_SHORTCUT" />
</intent-filter>
</receiver>
<!-- Intent received used to uninstall shortcuts from other applications -->
<receiver
android:name="com.android.launcher3.UninstallShortcutReceiver"
- android:permission="com.android.launcher3.permission.UNINSTALL_SHORTCUT">
+ android:permission="com.android.launcher.permission.UNINSTALL_SHORTCUT">
<intent-filter>
- <action android:name="com.android.launcher3.action.UNINSTALL_SHORTCUT" />
+ <action android:name="com.android.launcher.action.UNINSTALL_SHORTCUT" />
</intent-filter>
</receiver>