i have 2 activities. the first is the login and the second is the one, who does something :-) I will get in the second activity a picture from some other apps installed on the device. To start my app, it is necessary to log in over the first activity. How must my manifest look like ? The Manifest below does not work.
<application
android:icon="@drawable/owndms"
android:label="@string/app_name" >
<activity
android:label="ownDMS"
android:name="LoginActivity">
<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" />
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
</activity>
<activity
android:label="@string/app_name"
android:name="DashboardActivity" >
</activity>
</application>
If i put the 2 intent-filter together, then the launcher tells me, that it cant start the App:
No Launcher activity found!
The launch will only sync the application package on the device!
Jan