I am creating multiple white-label apps on Android.
Each of these apps use the same Facebook login.
According to the docs: https://developers.facebook.com/docs/sharing/android
I need to add:
<provider android:authorities="com.facebook.app.FacebookContentProvider{APP_ID}"
android:name="com.facebook.FacebookContentProvider"
android:exported="true"/>
The issue is that we get a conflict error when attempting to use the same app multiple times: INSTALL_FAILED_CONFLICTING_PROVIDER
as described here: Android Facebook content provider authority
How can I solve this issue?
Note that I tried to set android:exported
to false
but it did not seem to work.