i have a simple question. Do i need for the use of a content provider an entry in the manifest file?
The content provider is only for my own application. I don't want to share informations with other apps (at the moment). I have an example open source project, where content providers are used a lot, but there is no "provider" entry in the manifest file... how does this works?
When i'm starting my app i get these error
"Failed to find provider info for...."
Yes. It should point to your custom ContentProvider class. Inside your <application></application> block.
<provider
android:name=".MyAppContentProvider"
android:authorities="com.myapp.provider"
android:enabled="true"
android:exported="false" />
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With