Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.