Don't allow system apps to be uninstalled by tapping the trash can button.
diff --git a/src/com/android/launcher2/AllAppsPagedView.java b/src/com/android/launcher2/AllAppsPagedView.java
index bdd7066..074a098 100644
--- a/src/com/android/launcher2/AllAppsPagedView.java
+++ b/src/com/android/launcher2/AllAppsPagedView.java
@@ -428,7 +428,7 @@
if (id == MENU_APP_INFO) {
mLauncher.startApplicationDetailsActivity(appInfo.componentName);
} else if (id == MENU_DELETE_APP) {
- mLauncher.startApplicationUninstallActivity(appInfo.componentName);
+ mLauncher.startApplicationUninstallActivity(appInfo);
}
return false;
}