AS报:Manifest merger failed with multiple errors, see logs

* What went wrong:
Execution failed for task ':app:processDebugManifest'.
 Manifest merger failed with multiple errors, see logs

 

解决办法:在AndroidManifest.xml的application增加tools:replace="android:name"

    <application
        android:name=".BaseApplication"
        android:allowClearUserData="true"
        android:icon="@drawable/icon"
        android:label="@string/app_name"
        tools:replace="android:name"
        android:largeHeap="true">

 

posted @ 2019-03-13 15:57  杨斌_济南  阅读(411)  评论(0编辑  收藏  举报