Skip to content

Troubleshooting Guide

This guide describes how to troubleshoot issues that occur when applying authentication to Hive SDK.

Cannot install Android builds for each market at the same time when using Facebook IdP

If you declare the FacebookContentProvider permission to Enable Facebook Sharing you will not be able to install market-specific Android builds (e.g. Google Play Store, One Store) at the same time.
If you are not using Enable Facebook Sharing, please refer to the Troubleshooting Guide to remove the FacebookContentProvider permission declaration follows.

Android

Delete the code below from the {YOUR_PROEJCT}/src/main/AndroidManifest.xml file in your project.

<provider android:authorities="com.facebook.app.FacebookContentProvider{APP_ID}"
   android:name="com.facebook.FacebookContentProvider"
   android:exported="true"/>

Unity

Delete the code below from the {YOUR_PROEJCT}/Assets/Plugins/Android/AndroidManifest.xml file in your project.

<provider android:authorities="com.facebook.app.FacebookContentProvider{APP_ID}"
   android:name="com.facebook.FacebookContentProvider"
   android:exported="true"/>
Warning

If you regenerated the AndroidManifest.xml file from Hive Config > Save & Regenerate settings file menu, repeat the above steps.

Unreal

Delete the code below from the Plugins/HIVESDK/Source/HIVESDK/HIVESDK_APL.xml file.

<provider
   android:authorities="@string/appFBContentProvider"
   android:name="com.facebook.FacebookContentProvider"
   android:exported="true"/>