移植到andoidX后,Butterknife不会绑定对象

时间:2019-03-20 07:13:36

标签: butterknife

我最近已更新为androidX。现在,我已经更新了butterknife库,但是当我构建项目时,butterknife不能每次都绑定视图并崩溃。

插件

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'io.fabric'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
apply plugin: 'androidx.navigation.safeargs'
//apply plugin: 'com.android.library' //because we are not creating library
apply plugin: 'com.jakewharton.butterknife'

repositories {
    mavenCentral()
    google()
    flatDir { dirs 'libs' }
    maven { url 'https://maven.fabric.io/public' }
    maven { url "https://clojars.org/repo/" }
//    maven {
//        url "http://dl.bintray.com/lukaville/maven"
//    }

}

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

这是我的app.gradle文件

0 个答案:

没有答案