Execution failed for task ':app:processDebugManifest'

使用Android Studio导入工程,Android-Xlistview-library第三方包遇到的问题

Error:Execution failed for task ':app:processDebugManifest'.

> Manifest merger failed : Attribute application@icon value=(@mipmap/ic_launcher) from AndroidManifest.xml:7:9-43
is also present at [MyApplication:android-XListView-library:unspecified] AndroidManifest.xml:13:9-45 value=(@drawable/ic_launcher).

Suggestion: add 'tools:replace="android:icon"' to element at AndroidManifest.xml:5:5-18:19 to override.


原因:

AS的Gradle插件默认会启用Manifest Merger Tool,若Library项目中也定义了与主项目相同的属性(例如默认生成的android:icon和android:theme),则此时会合并失败,并报上面的错误。



解决办法

方法1:在在工程的Manifest.xml的application标签下添加tools:replace="android:icon, android:theme"(多个属性用,隔开,并且记住在manifest根标签上加入xmlns:tools="http://schemas.android.com/tools",否则会找不到namespace哦,也可以按到Alt + Enter键快捷添加)

方法2:在build.gradle根标签上加上useOldManifestMerger true (懒人方法)



你可能感兴趣的:(Execution failed for task ':app:processDebugManifest')