Cannot add extension with name 'android'......

来源:互联网 发布:怎样应聘淘宝客服 编辑:程序博客网 时间:2024/05/29 23:46

在添加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冲突了。




阅读全文
0 0