Failed to find provider info for com.facebook.katana.provider.AttributionIdProvider

前端 未结 8 1271
别那么骄傲
别那么骄傲 2020-12-24 05:11

Anyone knows what does this error mean? I get it in LogCat shell every time I connect with my android application to Facebook (via emulator).

The code which in charg

8条回答
  •  粉色の甜心
    2020-12-24 05:26

    If anyone's problem wasn't remedied by the four solutions, this may help. I was getting this same error when I began to use Fragments to implement the Facebook login. I was using the standard Fragment and not the support library v4 Fragments and after switching to the support library Fragment my problem went away. This may be unique to my situation but thought I'd share it just in case. Also don't forget to set the Fragment if you're using the login button method.

    myFacebookLoginButton.setFragment(this); //Assuming you're in a Fragment class
    

提交回复
热议问题