Error: Attribute application@label value=(@string/appname) from AndroidManifest

这是因为Library项目中也定义了与主项目相同的属性,就会导致合并失败,比如都默认生成的android:label="@string/app_name" 或者 android:icon="@drawable/icon_logo"

 红框中加入冲突的标签就可以解决问题

tools:replace="android:icon, android:theme , android:label"
原文地址:https://www.cnblogs.com/liuys635/p/14748637.html