* 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">

 

相关文章:

  • 2021-04-03
  • 2021-09-15
猜你喜欢
  • 2021-08-19
相关资源
相似解决方案