[android-developers] [Q] Why does Lint complain that my Activity is not registered in the Manifest properly?
This is the what I have in my AndroidManifest.xml file:
<activity
android:name=".DisplayPageActivity"
android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="com.tetractysproductions.AWOL.DISPLAY_WIKI_PAGE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
This is the complain I receive from Lint:
"The <activity> com.tetractysproductions.AWOL.DisplayPageActivity is not registered in the manifest" (Id: Registered)
*****
As you can guess, I do not understand why. Any takers? Thanks.
-- You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home