Cannot Launch Activity in Android Library Module Cannot Launch Activity in Android Library Module android android

Cannot Launch Activity in Android Library Module


I found the mistake, and perhaps I should remove the question. But as it was upvoted, somone else might be interested in this answer:

The manifest should state:

<activity    android:name="com.sample.sampledata.SampleDataMenuActivity" >    <intent-filter>        <action android:name="com.sample.sampledata.SampleDataMenuActivity" />        <category android:name="android.intent.category.DEFAULT" />    </intent-filter></activity>