Download Center

Implementing launcher functionality in an Android app

1. Add launcher functionality to the app

This requires just two configuration entries:

<action android:name=”android.intent.action.MAIN” />

<category android:name=”android.intent.category.HOME” />

<category android:name=”android.intent.category.DEFAULT” />

<category android:name=”android.intent.category.LAUNCHER” />

Add the configuration entries above to your app.