脸书分享照片不起作用元数据问题



这个错误是什么意思

<meta-data android:name="com.facebook.sdk.ApplicationId"
android:value="@string/facebook_app_id"
Manifest merger failed : Attribute meta-data#com.facebook.sdk.ApplicationId@value value=(@string/facebook_app_id) from AndroidManifest.xml:56:13-52
is also present at [com.firebaseui:firebase-ui-auth:4.3.1] AndroidManifest.xml:21:13-60 value=(@string/facebook_application_id).
Suggestion: add 'tools:replace="android:value"' to <meta-data> element at AndroidManifest.xml:55:9-57:15 to override.

我检查了这个问题,这可能会对您有所帮助: 在AndroidManifest.xml中移除:

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

希望这有帮助。 参考: https://github.com/firebase/FirebaseUI-Android/issues/1026#issuecomment-412992715

最新更新