Facebook Provider Unconfigured. Make Sure To Add A `facebook_application_id` String
I'm using Firebase UI Sign In and trying to implement Facebook sign in into my android app. When launching the firebase ui activity I get: 'java.lang.IllegalStateException: Facebo
Solution 1:
Add Facebook Provider in Manifest as mentioned here.
Append your app id to the end of the authorities value. For example if your Facebook app id is 1234, the declaration looks like:
<providerandroid:authorities="com.facebook.app.FacebookContentProvider1234"android:name="com.facebook.FacebookContentProvider"android:exported="true" />
Post a Comment for "Facebook Provider Unconfigured. Make Sure To Add A `facebook_application_id` String"