summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorJorge Ruesga <jorge@ruesga.com>2014-01-13 00:46:45 +0100
committerDanesh M <daneshm90@gmail.com>2014-01-24 16:25:20 -0800
commitd8f7a7190d5a4dcf8b6b47ab698f01c2768506e9 (patch)
treee332f9190833fe304eba4b4093e7fc536670f977 /AndroidManifest.xml
parent4428b065d9d674a84b066015ab873f8849f2a922 (diff)
downloadandroid_packages_apps_Trebuchet-d8f7a7190d5a4dcf8b6b47ab698f01c2768506e9.tar.gz
android_packages_apps_Trebuchet-d8f7a7190d5a4dcf8b6b47ab698f01c2768506e9.tar.bz2
android_packages_apps_Trebuchet-d8f7a7190d5a4dcf8b6b47ab698f01c2768506e9.zip
trebuchet: Fix shortcut install/uninstall permission name
AOSP 4.4 has a public INSTALL_SHORTCUT/UNINSTALL_SHORTCUT permission. Change-Id: I11cf09b4964838b2366ec37646392ff61be6c529 Signed-off-by: Jorge Ruesga <jorge@ruesga.com>
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml16
1 files changed, 2 insertions, 14 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index ca26d95fd..ae126920c 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -30,18 +30,6 @@
android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
android:protectionLevel="system|signature" />
<permission
- android:name="com.android.launcher.permission.INSTALL_SHORTCUT"
- android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
- android:protectionLevel="dangerous"
- android:label="@string/permlab_install_shortcut"
- android:description="@string/permdesc_install_shortcut" />
- <permission
- android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT"
- android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
- android:protectionLevel="dangerous"
- android:label="@string/permlab_uninstall_shortcut"
- android:description="@string/permdesc_uninstall_shortcut"/>
- <permission
android:name="com.android.launcher3.permission.READ_SETTINGS"
android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
android:protectionLevel="normal"
@@ -178,7 +166,7 @@
android:name="com.android.launcher3.InstallShortcutReceiver"
android:permission="com.android.launcher3.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>
@@ -187,7 +175,7 @@
android:name="com.android.launcher3.UninstallShortcutReceiver"
android:permission="com.android.launcher3.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>