Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does "Failed to find provider info for android.server.checkin" mean?

I get that error message quite often when debugging my android app. What does it mean?

like image 263
jgauffin Avatar asked Apr 23 '10 12:04

jgauffin


1 Answers

You really need to improve your problem description if you want a good answer.

The authorities attribute on the provider element in the Manifest.xml is apparently not providing the proper information. Could you post what the provider definition in your Manifest.xml so we have something to work with? I believe what is needed is an authority on the provider element in the Manifest.xml. The authority names a uri which is used to interrogate content providers. The content provider interrogation calls the content providers getType method. I may be something like this:

 <provider android:name=".provider.XyzProvider"
            android:authorities="android.server.checkin"/>

It may also be the path to the provider specified on the name attribute.

like image 117
phreed Avatar answered Oct 06 '22 20:10

phreed