Manifest merger failed, error on compiling

后端 未结 2 1955
野趣味
野趣味 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:08

    I faced the same situation while implementing the maps api in my application. I solved it by adding the following code in AndroidManifest.xml and Gradle.properties file.

    In AndroidMainfest.xml added this code

        android:appComponentFactory="androidx.core.app.CoreComponentFactory"
        tools:replace="android:appComponentFactory"
    

    In gradle.properties added this code

       android.useAndroidX=true
       android.enableJetifier=true
    

提交回复
热议问题