Question

There are lots of icon pack avails on Google play store, which are compatible with launchers, I just wonder that how launcher access & identify such icon pack so it get reflect to launchers.

I succeed to code inside Icon pack which linked to launcher but ow launcher accessing such icon pack, so it will handle appropriate icon pack and get reflect to launcher?

code within icon pack, define necessary launcher package name@

            <!-- Go / Nova -->
            <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>

            <!-- LauncherPro / Holo -->
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="com.fede.launcher.THEME_ICONPACK" />
            </intent-filter>

I follwed XDA developers Guide but not get any solution, can anyone shed the light?

Was it helpful?

Solution

This application has all the intent filters for different launchers and there will an action according to that intent. these are defined by the launchers <action android:name="com.gau.go.launcherex.theme" /> and <category android:name="com.fede.launcher.THEME_ICONPACK" /> and your application take actions according to these and provide icons when specific launcher fires an intent.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top