Reputation: 43
i have a weired problem. I want to install a app that i made on a Nexus 5 Phone and getting the LogCat error that i postetd below. The funny think is, if i install this app on my Samsung Galaxy S3 it works fine. Just on my nexus 5 i get those errors and warnings. And maybe i have to mention that the same OS is installed on both phones, CyanogenMod...
LogCat http://pastebin.com/5dqdkKPY android manifest: http://pastebin.com/rtkeyVw5
Thanks for your help!
Upvotes: 3
Views: 4370
Reputation: 876
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"/>
Upvotes: 1
Reputation: 3747
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
Upvotes: 0