Manifest merger failed with multiple errors, see ?
Error:Execution failed for task ':app:processDebugManifest'.
> Manifest merger failed with multiple errors, see logs
引入第三方的aar爆的错误,我的解决办法是
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"//使用这个
....
<application
android:name=".base.BaseApplication"
android:allowBackup="false"
tools:replace="label,allowBackup" //使用这个
网友评论