Merge "Fix intent filter to get launcher's meta-data" into sc-dev
diff --git a/src/com/android/customization/model/themedicon/ThemedIconUtils.java b/src/com/android/customization/model/themedicon/ThemedIconUtils.java
index 8f1bdee..c339c5a 100644
--- a/src/com/android/customization/model/themedicon/ThemedIconUtils.java
+++ b/src/com/android/customization/model/themedicon/ThemedIconUtils.java
@@ -36,7 +36,7 @@
 
     public ThemedIconUtils(Context context, String authorityMetaKey) {
         mContext = context;
-        Intent homeIntent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_LAUNCHER);
+        Intent homeIntent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_HOME);
         ResolveInfo resolveInfo = mContext.getPackageManager().resolveActivity(homeIntent,
                 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA);