I understand that to resolve implicit intents we need intent-filters with action and category_default.
- But my question is what if an activity declared with intent filter with action, but no category. 1a) What does this intent filter does and what's its purpose?
And what if there are several such activities?
<activity android:name="org.A.C" android:theme="@style/NoTitle" android:launchMode="singleTop" android:screenOrientation="behind"> <intent-filter> <action android:name="android.intent.action.MAIN" /> </intent-filter> </activity> <activity android:name="org.A.B" android:theme="@style/NoTitle" android:launchMode="singleTop" android:screenOrientation="behind"> <intent-filter> <action android:name="android.intent.action.MAIN" /> </intent-filter> </activity>