Failed to find provider info for android.server.provider.checkin error
I keep getting this exception in LogCat
Failed to find provider info for android.server.provider.checkin
The android dev reference seems to have no info on this at all, I have however seen some vague reference's to a provider开发者_StackOverflow tag and an authorities attribute relating to a getType method???
I have a getBytes() method but that is all. Anyway, I added one to the manifest like so:
android:enabled="true">
Eclipse complains about this, says its looking for missing required attribute name, what required attribute name, Android's dev reference does not say. Does anyone have an example of how thing is supposed to be setup. I ma not sure if I am even on the right track here...
Thanks Rick
make sure your <provider> tag is inside of your <application> tag. that's been biting me just now.
精彩评论