Skip to content Skip to sidebar Skip to footer

Manifest Merger Failed : Attribute Application@appcomponentfactory...android Studio 3.2

I'm following this tutorial: https://www.youtube.com/watch?v=xtElLuzjA0U I'm using Android Studio 3.2.1 - Whenever I implement 'implementation 'me.zhanghai.android.materialprogres

Solution 1:

Its because your project has different versions of the same library - androidx and pre-androidx. In android studio tool bar go to: Refactor-> Migrate to androidX... -> Migrate

Solution 2:

These two lines automatically resolved my dependency conflicts

Add android.useAndroidX=true android.enableJetifier=true in your application gradle.properties file.

Post a Comment for "Manifest Merger Failed : Attribute Application@appcomponentfactory...android Studio 3.2"