在添加ButterKnife
的时候,根据它的Readme
配置以后报错:
Error:(2, 0) Cannot add extension with name 'android', as there is an extension already registered with that name.
解决方法如下:
默认我们在自己的module
下添加后是这样的:
apply plugin: 'com.android.application'
apply plugin: 'com.android.library'
apply plugin: 'com.jakewharton.butterknife'
此时,我们只需要删掉
apply plugin: 'com.android.library'
这一行就行了,因为它跟com.android.application
冲突了。
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对软件开发网的支持。如果你想了解更多相关内容请查看下面相关链接
您可能感兴趣的文章:解决Android Studio 3.0 butterknife:7.0.1配置的问题androidstudio3.0使用butterknife报错解决的解决方法Android注解ButterKnife的基本使用Android Kotlin环境使用ButterKnife的方法Android注解使用之ButterKnife 8.0详解详解Android Studio安装ButterKnife插件(手动安装)Android Studio中ButterKnife插件的安装与使用详解Android Studio使用ButterKnife和Zelezny的方法Android中butterknife的使用与自动化查找组件插件详解