Manifest merger failed with multiple errors, see logs when updating Firebase and gsm dependencies

ⅰ亾dé卋堺 提交于 2019-11-30 08:17:23

Finding Merging Errors in AndroidManifest.xml

Click on Merged Manifest in AndroidManifest.xml

You can view manifest merging error in right column. It may help to solve this problem.

I config FacebookAutentication with FacebookSDK and later I change and config FirebaseAuth that already have config "com.facebook.sdk.ApplicationId".

therefore you don't need these lines

<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id"/> 

<activity android:name="com.facebook.FacebookActivity"
        android:configChanges= "keyboard|keyboardHidden|screenLayout|screenSize|orientation"
        android:label="@string/app_name" />
    <activity android:name="com.facebook.CustomTabActivity" android:exported="true">
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
            <data android:scheme="@string/fb_login_protocol_scheme" />
        </intent-filter>
    </activity>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!