There are many icon packs in the Google Play store that are compatible with launchers, I'm just wondering how you can access the launcher and identify such a icon pack so that it reflects on the launchers.
I managed to code inside the Icon pack , which is associated with the launcher, but ow launcher accessing such icon pack, so it will handle appropriate icon pack and get reflect to launcher?
code in the icon pack, determine the required name of the launch package @
<intent-filter> <action android:name="android.intent.action.MAIN" /> <action android:name="com.gau.go.launcherex.theme" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="com.fede.launcher.THEME_ICONPACK" /> </intent-filter>
I described the XDA Developer's Guide , but have not received any solution, can anyone shed some light?
source share