Merge "Fixing issue where package updates were not getting propagated properly" into ub-now-master
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 {