在我的android项目中安装新库后,我收到以下错误:
/android/app/src/debug/AndroidManifest.xml Error:
Attribute application@label value=(Compassion) from (unknown)
is also present at [com.github.master] AndroidManifest.xml:15:9-41 value=(@string/app_name).
Suggestion: add 'tools:replace="android:label"' to <application> element at AndroidManifest.xml:6:4-36:19 to override.
FAILURE: Build failed with an exception.
2条答案
按热度按时间zfciruhq1#
经过一番研究,我发现新安装的库也有一个
application@label
属性,因此您所要做的就是通过添加以下两行代码来修改您的AndroidManifest.xml
文件:1.将
xmlns:tools="http://schemas.android.com/tools"
添加到清单标记1.将
tools:replace="android:label"
添加到应用程序标记31moq8wy2#
转到主AndroidManifest.xml并将以下两行粘贴到下面
在清单标记中
在Application标签中
这对我的工作