AndroidStudio使用butterknife的问题

一、按照butterknife的官网(ButterKnife)说明配置后,执行sync now,出现了编译错误:

Manifest merger failed : Attribute application@appComponentFactory value=(android.support.v4.app.CoreComponentFactory) from [com.android.support:support-compat:28.0.0] AndroidManifest.xml:22:18-91
    is also present at [androidx.core:core:1.0.0] AndroidManifest.xml:22:18-86 value=(androidx.core.app.CoreComponentFactory).
    Suggestion: add 'tools:replace="android:appComponentFactory"' to <application> element at AndroidManifest.xml:36:5-364:19 to override.

网上搜索,依照这篇博客(博客)的方式一解决了编译的错误。

二、但是,紧接着就出现了下面的错误:

Static interface methods are only supported starting with Android N (--min-api 24): void butterknife

是根据这篇博客(博客)的方法解决的。

项目可正常运行了。

猜你喜欢

转载自blog.csdn.net/aianzxy/article/details/89337654