Manifest merger failed, error on compiling

后端 未结 2 1964
野趣味
野趣味 2020-12-19 06:26

Since downloading the latest SDK and installing Android Studio, my project fails to build. I get the following message:

Manifest merger failed with

2条回答
  •  余生分开走
    2020-12-19 07:15

    "tools:replace="android:appComponentFactory" <- this line you're saying to Manifest merger that you're going to provide new value for android:appComponentFactory attribute but you're not doing so. So as I see it you have two options:

    1. Remove tools:replace="android:appComponentFactory"

    2. Provide new value for android:appComponentFactory" attribute

    Hope it helps.

提交回复
热议问题