Quote:
Originally Posted by ironmantis7x
I found the error -- it was in my Manifest file...
Thanks!
ironmantis7x
|
Lost almost an hour to find that I typed
Code:
<intent-filter>
<action android:name="net.learn2develop.SecondActivity" />
<action android:name="android.intent.category.DEFAULT" />
</intent-filter>
instead of:
Code:
<intent-filter>
<action android:name="net.learn2develop.SecondActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
Before I found your post I even wasn't looking at all at AndroidManifest.xml