Skip to content Skip to sidebar Skip to footer

Android: Manifest Merger Failed Corecomponentfactory

Manifest merger failed : Attribute application@appComponentFactory value=(android.support.v4.app.CoreComponentFactory) from [com.android.support:support-compat:28.0.0] AndroidMani

Solution 1:

I also ran into the same problem and after a bit of search i found this issue here: https://github.com/JakeWharton/butterknife/issues/1429

Here the creator of library has suggested that either you migrate to androidX or downgrade the library version to the compatible one.For now i am using following:

    implementation 'com.jakewharton:butterknife:8.8.0'
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.0'

Post a Comment for "Android: Manifest Merger Failed Corecomponentfactory"