ButterKnife导入AndroidStudio

project的build.gradl文件

buildscript {
    repositories {
        google()
        jcenter()
        mavenCentral()//添加mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.3'
        classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.3'//添加这个classpath
    }
}

allprojects {
    repositories {
        google()
        jcenter()
        mavenCentral()//添加mavenCentral()
    }
}

app的build.gradle

apply plugin: 'com.android.application'
apply plugin: 'com.jakewharton.butterknife'// 添加此plugin

android {
    // Butterknife requires Java 8.
    compileOptions {// 添加此规则
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

dependencies {
    implementation 'com.jakewharton:butterknife:10.2.3'// 添加此依赖
    annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.3'// 添加此规则
}

其他module的build.gradle

apply plugin: 'com.jakewharton.butterknife'// 添加此plugin

android {
    compileOptions {// 添加此规则
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

dependencies {
    implementation 'com.jakewharton:butterknife:10.2.3'// 添加此依赖
    annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.3'// 添加此规则
}

其他module使用ButterKnife注意事项

在app module中使用@BindView(R.id.xxx)即可,
而在其他module中使用时,应该当使用R2.id.xxx,例如:
@BindView(R2.id.common_btn)
Button button;
此时AndroidStudio还认为有语法错误,clean project重新编译即可。

©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

友情链接更多精彩内容