Fixing install shortcut receiver in launcher3

Change-Id: If22da17630be71fb22277b7a911aae57322b2ecc
This commit is contained in:
Sunny Goyal
2014-09-05 04:40:13 -07:00
parent 1c13ff5691
commit 9b8da88eba
+4 -4
View File
@@ -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>