0
点赞
收藏
分享

微信扫一扫

Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple

在开发中遇到导入module是遇到错误:

Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple 

这个错误的意思是由于你导入的module中manifest文件与你项目App的manifest文件merge的问题,就是说有重复的地方。

解决办法:

 

找到各自的manifest文件,查看<application></application>name, allowBackup,icon, label, roundIcon.

等等属性看看是够又重复,属性如下所示:

 

<application
    android:name="com.bestgo.callshow.CallShowApplication"
    android:allowBackup="true"
    android:icon="@mipmap/icon_callshow"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/icon_callshow"
    android:supportsRtl="true"
    android:theme="@android:style/Theme.NoTitleBar.Fullscreen">

 

只要保留主application的参数就可以,其他的manifest删除就OK

 

有不明白的私信,评论就好,有不对的地方批评指教。

 

举报

相关推荐

0 条评论