score:0

every major android component must be declared appropriately on your applications manifest file. it seems like you are using a content provider. is it a provider you implement? or is it one of the android's build-in? in any case you have to declare your "intentions" at the manifest. take a look here:

http://developer.android.com/guide/topics/providers/content-provider-creating.html#providerelement

score:1

i think the reason is you lack of permissions. try add this code to your androidmanifest.xml:

<uses-permission android:name="android.permission.install_location_provider"/>

Related Query

More Query from same tag