Skip to content

Commit 5ff8903

Browse files
BAProductionsSirRGB
authored andcommitted
icon: Expanding eligiblePacks even more
Add support for even more icon pack com.novalauncher.THEME org.adw.launcher.icons.ACTION_PICK_ICON com.dlto.atom.launcher.THEME android.intent.action.MAIN/com.anddoes.launcher.THEME com.fede.launcher.THEME_ICONPACK com.anddoes.launcher.THEME com.teslacoilsw.launcher.THEME com.gau.go.launcherex.theme org.adw.launcher.THEMES com.launcher.smart.theme com.gtp.nextlauncher.theme com.gridappsinc.launcher.theme.apk_action ch.deletescape.lawnchair.ICONPACK com.lge.launcher2.THEME net.oneplus.launcher.icons.ACTION_PICK_ICON ginlemon.smartlauncher.THEMES home.solo.launcher.free.THEMES home.solo.launcher.free.ACTION_ICON com.sonymobile.home.ICON_PACK com.tsf.shell.themes com.tsf.shell.themes com.phonemetra.turbo.launcher.THEMES com.phonemetra.turbo.launcher.icons.ACTION_PICK_ICON mobi.bbase.ahome.THEME com.rogro.GDE.THEME.1 com.android.dxtop.launcher.THEME
1 parent 9d033ef commit 5ff8903

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

src/com/android/launcher3/lineage/icon/IconPackSettingsFragment.java

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,40 @@ private Set<IconPackInfo> getAvailableIconPacks(Context context) {
124124
new Intent("com.gau.go.launcherex.theme"), 0));
125125
eligiblePacks.addAll(pm.queryIntentActivities(
126126
new Intent("org.adw.launcher.THEMES"), 0));
127+
eligiblePacks.addAll(pm.queryIntentActivities(
128+
new Intent("com.launcher.smart.theme"), 0));
129+
eligiblePacks.addAll(pm.queryIntentActivities(
130+
new Intent("com.gtp.nextlauncher.theme"), 0));
131+
eligiblePacks.addAll(pm.queryIntentActivities(
132+
new Intent("com.gridappsinc.launcher.theme.apk_action"), 0));
133+
eligiblePacks.addAll(pm.queryIntentActivities(
134+
new Intent("ch.deletescape.lawnchair.ICONPACK"), 0));
135+
eligiblePacks.addAll(pm.queryIntentActivities(
136+
new Intent("com.lge.launcher2.THEME"), 0));
137+
eligiblePacks.addAll(pm.queryIntentActivities(
138+
new Intent("net.oneplus.launcher.icons.ACTION_PICK_ICON"), 0));
139+
eligiblePacks.addAll(pm.queryIntentActivities(
140+
new Intent("ginlemon.smartlauncher.THEMES"), 0));
141+
eligiblePacks.addAll(pm.queryIntentActivities(
142+
new Intent("home.solo.launcher.free.THEMES"), 0));
143+
eligiblePacks.addAll(pm.queryIntentActivities(
144+
new Intent("home.solo.launcher.free.ACTION_ICON"), 0));
145+
eligiblePacks.addAll(pm.queryIntentActivities(
146+
new Intent("com.sonymobile.home.ICON_PACK"), 0));
147+
eligiblePacks.addAll(pm.queryIntentActivities(
148+
new Intent("com.tsf.shell.themes"), 0));
149+
eligiblePacks.addAll(pm.queryIntentActivities(
150+
new Intent("com.tsf.shell.themes"), 0));
151+
eligiblePacks.addAll(pm.queryIntentActivities(
152+
new Intent("com.phonemetra.turbo.launcher.THEMES"), 0));
153+
eligiblePacks.addAll(pm.queryIntentActivities(
154+
new Intent("com.phonemetra.turbo.launcher.icons.ACTION_PICK_ICON"), 0));
155+
eligiblePacks.addAll(pm.queryIntentActivities(
156+
new Intent("mobi.bbase.ahome.THEME"), 0));
157+
eligiblePacks.addAll(pm.queryIntentActivities(
158+
new Intent("com.rogro.GDE.THEME.1"), 0));
159+
eligiblePacks.addAll(pm.queryIntentActivities(
160+
new Intent("com.android.dxtop.launcher.THEME"), 0));
127161

128162
// Add default
129163
final String defaultLabel = context.getString(R.string.icon_pack_default_label);

0 commit comments

Comments
 (0)