gpt4 book ai didi

android - DaggerAppComponent - Unresolved reference

转载 作者:行者123 更新时间:2023-12-02 12:42:40 37 4
gpt4 key购买 nike

请帮我将 Dagger 2 连接到 Kotlin。
我的应用程序构建 gradle:

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'io.fabric'
apply plugin: 'kotlin-kapt'

android {
compileSdkVersion 28
defaultConfig {
applicationId "mobile.socialboards.com"
minSdkVersion 21
targetSdkVersion 28
versionCode 19
versionName '1.0'
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
minifyEnabled false
}
}
configurations {
cleanedAnnotations
compile.exclude group: 'org.jetbrains' , module:'annotations'
}
productFlavors {}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
freeCompilerArgs = ['-Xjvm-default=enable']
}
lintOptions {
abortOnError false
}
}

kapt {
generateStubs = true
}

dependencies {
...

implementation 'com.google.dagger:dagger-android:2.14.1'
implementation 'com.google.dagger:dagger-android-support:2.14.1' // if you use the support libraries
implementation "com.google.dagger:dagger:2.14.1"
kapt 'com.google.dagger:dagger-android-processor:2.12'
kapt "com.google.dagger:dagger-compiler:2.14.1"
compileOnly "org.glassfish:javax.annotation:3.1.1"
}

apply plugin: 'com.google.gms.google-services'

我正在制作 sуnc,然后重建,但是

DaggerAppComponent



Android Studio 在我的应用程序 kotlin 类中找不到。我研究了很多文章-仍然不明白出了什么问题。请帮忙!

最佳答案

我已经实现了完整的 MVVM(Rx、Dagger、Kotlin),只需要这两个用于 dagger:

 implementation 'com.google.dagger:dagger:2.12'
kapt 'com.google.dagger:dagger-compiler:2.12'

如果有什么让我知道!!

关于android - DaggerAppComponent - Unresolved reference ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52077011/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com