OSDN Git Service

Fixing install shortcut receiver in launcher3
authorSunny Goyal <sunnygoyal@google.com>
Fri, 5 Sep 2014 11:40:13 +0000 (04:40 -0700)
committerSunny Goyal <sunnygoyal@google.com>
Fri, 5 Sep 2014 11:42:18 +0000 (04:42 -0700)
Change-Id: If22da17630be71fb22277b7a911aae57322b2ecc

AndroidManifest.xml

index 3633c8c..90b33c5 100644 (file)
         <!-- 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>