Fixing issue where package updates were not getting propagated properly
issue 16097189
Change-Id: I26f2d03930d9d2227017c0cd5a986a230fbe8e58
(cherry picked from commit 52a2841f6b364d6a002d33bcea5816b1bce2e30d)
diff --git a/src/com/android/launcher3/AllAppsList.java b/src/com/android/launcher3/AllAppsList.java
index c25aa40..38d2fa5 100644
--- a/src/com/android/launcher3/AllAppsList.java
+++ b/src/com/android/launcher3/AllAppsList.java
@@ -154,7 +154,7 @@
final LauncherActivityInfoCompat info = matches.get(i);
AppInfo applicationInfo = findApplicationInfoLocked(
info.getComponentName().getPackageName(), user,
- info.getComponentName().getShortClassName());
+ info.getComponentName().getClassName());
if (applicationInfo == null) {
add(new AppInfo(context, info, user, mIconCache, null));
} else {