AndroidStudio常见问题--AndroidManifest.xml覆盖问题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
AndroidStudio常见问题--AndroidManifest.xml覆盖问题问题如下
D:\source-code\AndroidStudio\MyApplication\app\src\main\AndroidManifest.xml
Error:(14, 9) Attribute application@icon value=(@drawable/ic_launcher) from AndroidManifest.xml:14:9
Error:(14, 9) Execution failed for task ':app:processDebugManifest'.
> Manifest merger failed : Attribute application@icon value=(@drawable/ic_launcher) from AndroidManifest.xml:14:9
is also present at MyApplication:library:unspecified:18:9 value=(@drawable/icon)
Suggestion: add 'tools:replace="android:icon"' to <application> element at AndroidManifest.xml:12:5 to override
解决⽅法
在app的AndroidManifest.xml中做如下修改:
<manifest xmlns:android="/apk/res/android"
xmlns:tools="/tools"
package="com.leo.kang.demo"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
tools:replace="android:icon, android:theme">
注意两个地⽅:
1. 在manifest节点加上:xmlns:tools="/tools"
2. 在application 节点加上:tools:replace="android:icon, android:theme"
Reference。