错误:未解析的引用:DaggerAppComponent

时间:2018-03-14 17:20:03

标签: android kotlin dagger-2

我已经面临这个问题3个小时了。我找不到任何合理的理由来发生什么。问题是,只有当我使用生成的Dagger类时,Gradle之后,Build对这些类的每次引用都变为红色,我收到错误:

  

错误:未解析的引用:DaggerAppComponent

但是,如果我注释掉App类中的每一行,则引用任何这些生成的Dagger类。构建过程成功完成。我尝试过clean / rebuild / make项目。但它不起作用。 有关我的环境的一些信息:
Build.gradle

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "xxxxx"
        minSdkVersion 19
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    dataBinding {
        enabled = true
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])

    implementation "android.arch.lifecycle:extensions:1.1.0"
    implementation "android.arch.lifecycle:viewmodel:1.1.0"
    implementation "android.arch.lifecycle:livedata:1.1.0"
    implementation "android.arch.persistence.room:runtime:1.0.0"
    implementation "android.arch.lifecycle:runtime:1.1.0"

    implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"

    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support:design:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation 'com.android.support:support-v4:26.1.0'


    kapt "android.arch.lifecycle:compiler:1.1.0"
    kapt "android.arch.persistence.room:compiler:1.0.0"

    kapt "com.google.dagger:dagger-compiler:2.8"
    compile "com.google.dagger:dagger:2.8"
    compile "com.google.dagger:dagger-android:2.8"

    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}

Kotlin版本:ext.kotlin_version = '1.1.51'
Android Studio版本:3.0.1

项目的Build.Gradle文件中的

dependencies部分(不是app模块):

dependencies {
    classpath 'com.android.tools.build:gradle:3.0.1'
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}

App上课:

class App:Application() {
    private val component:AppComponent by lazy {
        DaggerAppComponent.builder()
                .build()
    }
    override fun onCreate() {
        super.onCreate()
        component.inject(this)
    }
}

如果有人能够找出问题所在,我们将不胜感激 附:我还在学习Dagger2,而且我对KotlinNative一般都是新手。我来自C#Xamarin背景。

1 个答案:

答案 0 :(得分:2)

你似乎错过了kapt Gradle插件的应用程序,如kapt documentation中所述。基本上,在现有插件之后添加:

apply plugin: 'kotlin-kapt'

(如果这有帮助,此问题应标记为this one)的副本