Refactor the app updates so that it doesn't rely on the package name.
This will be needed for the upcoming change to update the icons with the
grayed out when the SD card goes away.
diff --git a/src/com/android/launcher2/AllAppsView.java b/src/com/android/launcher2/AllAppsView.java
index 04f4040..a936f8b 100644
--- a/src/com/android/launcher2/AllAppsView.java
+++ b/src/com/android/launcher2/AllAppsView.java
@@ -39,7 +39,7 @@
public void removeApps(ArrayList<ApplicationInfo> list);
- public void updateApps(String packageName, ArrayList<ApplicationInfo> list);
+ public void updateApps(ArrayList<ApplicationInfo> list);
public void dumpState();
}