MAIN will determine the first action that will be used when the application starts. Launcher will add the application to the application panel.
If you already have them, and you still get an error message, but maybe because you can use more or more categories or actions in the intent filter. There can only be one such tag in the target filter. To add another category, put it in a different intent filter, for example, the following
<intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> <intent-filter> <action android:name="android.intent.action.VIEW" /> <data android:scheme="http" /> <category android:name="android.intent.category.BROWSABLE" /> </intent-filter>
yousafsajjad Feb 01 '15 at 15:59 2015-02-01 15:59
source share