質問

this is my manifest :

<provider
    android:name="DataProvider"
    android:authorities="com.LiveResults.zizo_apps.widget.provider" />

but i get this error :

Unable to get provider com.LiveResults.zizo_apps.DataProvider: java.lang.ClassNotFoundException: Didn't find class
 "com.LiveResults.zizo_apps.DataProvider" 

why is he looking for the class in

com.LiveResults.zizo_apps instead of com.LiveResults.zizo_apps.widget

as i wrote in the manifest ?

役に立ちましたか?

解決

Try changing

android:name="DataProvider"

to

android:name=".widget.DataProvider"
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top