Android异常篇 Manifest merger failed : Attribute application@label value=() from AndroidM
Posted 彭老希
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android异常篇 Manifest merger failed : Attribute application@label value=() from AndroidM相关的知识,希望对你有一定的参考价值。
一、问题复现
导入某个第三方依赖后,出现label冲突
一般是项目中使用的第三方依赖库中的androidManifest.xml中跟当前App的AndroidManifest.xml中有重复的某些属性时AS会提示这个,按照提示添加就可以解决
二、解决方案
以上蓝色框就是error错误给出的解决方案(很多时候,Android开发工具在异常处就已经提示的解决方案,仔细看就行)
(1)打开AndroidManifest.xml
(2)在Application内添加label冲突替换
tools:replace="android:label"
三、结果
<application
android:name=".app.AppApplication"
android:allowBackup="true"
android:icon="@drawable/app_icon"
android:label="@string/app_name"
android:theme="@style/AppTheme"
tools:replace="android:theme, android:label">
需要导入tools命名 : xmlns:tools=“http://schemas.android.com/tools”
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.xxxx.app">
还可以对Activity标签的属性进行替换:
<activity
android:name=".XXXXXActivity"
android:screenOrientation="portrait"
tools:replace="screenOrientation" />
以上是关于Android异常篇 Manifest merger failed : Attribute application@label value=() from AndroidM的主要内容,如果未能解决你的问题,请参考以下文章
Android异常篇 Fail to connect to camera service
Android编译异常` Cause: duplicate entry: META-INF/MANIFEST.MF`
尝试签署 ANDROID 应用程序时出现异常 - “java.lang.SecurityException:Manifest 主要属性的签名文件摘要无效”
Android异常篇 More than one file was found with OS independent path ‘xxx/xxx‘
AndroidX 和 places:places-compat 给出 ERROR: Manifest merge failed with multiple errors,查看日志