我有
compile 'com.facebook.android:facebook-android-sdk:4.16.0'
我的清单:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
...
<application
android:name=".MyApplication"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AutoTheme"
tools:replace="android:theme">
如何解决编译错误:
Error:Execution failed for task ':app:processDebugManifest'.
> Manifest merger failed : Attribute activity#com.facebook.FacebookActivity@theme value=(@android:style/Theme.Translucent.NoTitleBar) from AndroidManifest.xml:69:13-72
is also present at [com.facebook.android:facebook-android-sdk:4.16.0] AndroidManifest.xml:32:13-63 value=(@style/com_facebook_activity_theme).
Suggestion: add 'tools:replace="android:theme"' to <activity> element at AndroidManifest.xml:66:9-70:47 to override.
6条答案
按热度按时间x33g5p2x1#
1)将
xmlns:tools="http://schemas.android.com/tools"
添加到AndroidManifest中的<manifest>
元素2)将
tools:replace="android:theme"
添加到(facebook活动)<activity>
这是我的货单文件
4xy9mtcn2#
试试这个
替换为
h7appiyu3#
在你的清单中,删除
在Facebook活动
**编辑:**你也用firebase吗?如果是,请看这里Android manifest merger with facebook and firebase libraries
zf9nrax14#
你只需要在你的清单中使用this就可以了
xxls0lw85#
删除此行
@android:style/Theme.Translucent.NoTitleBar
这会解决你的问题
(This避免明显的属性冲突)
8nuwlpux6#
在我的例子中,我改变了属性
android:theme="${appTheme}"
(其中manifestPlaceholders["appTheme"] = "@style/Theme2"
在build.gradle
中),得到了一个编译错误:任务“:app:processGoogleDebugManifest”执行失败。清单合并失败:AndroidManifest.xml:23:9-42中的属性application@theme value=(@style/Theme)也存在于AndroidManifest.xml:21:9-36 value=(@style/Theme 2)中。
建议:在AndroidManifest.xml:15:5-92:19的元素中添加'tools:replace=“android:theme”'来覆盖。
我有3个
AndroidManifest
文件。然后我在所有3个文件中更改了android:theme
。