Android Studio编译错误:Manifest merger failed with multiple errors, see logs

版权声明:本文为Zhang Phil原创文章,请不要转载! https://blog.csdn.net/zhangphil/article/details/84111818

Android Studio编译错误:Manifest merger failed with multiple errors, see logs

需要在AndroidManifest.xml中增加配置:
tools:replace="label"

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="zhangphil.test">

    ……

    <application
        ……
        tools:replace="label">
        ……
    </application>
</manifest>

猜你喜欢

转载自blog.csdn.net/zhangphil/article/details/84111818