Merge "Add Debug Logs to AllAppsStore's dump for Bitmap flags" into main
diff --git a/src/com/android/launcher3/allapps/AllAppsStore.java b/src/com/android/launcher3/allapps/AllAppsStore.java
index 29b9e77..9afe06c 100644
--- a/src/com/android/launcher3/allapps/AllAppsStore.java
+++ b/src/com/android/launcher3/allapps/AllAppsStore.java
@@ -261,12 +261,14 @@
writer.println(prefix + "\tAllAppsStore Apps[] size: " + mApps.length);
for (int i = 0; i < mApps.length; i++) {
writer.println(String.format(Locale.getDefault(),
- "%s\tPackage index, name, class, and description: %d/%s:%s, %s",
+ "%s\tPackage index, name, class, description, bitmap flag: %d/%s:%s, %s, %s+%s",
prefix,
i,
mApps[i].componentName.getPackageName(),
mApps[i].componentName.getClassName(),
- mApps[i].contentDescription));
+ mApps[i].contentDescription,
+ Integer.toBinaryString(mApps[i].bitmap.flags),
+ Integer.toBinaryString(mApps[i].bitmap.creationFlags)));
}
}
}