Пожалуйста, помогите мне подключить 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'
Я делаю sync, потом перестраиваюсь, но
DaggerAppComponent
Android-студия не может найти
в моем классе приложений kotlin. Я исследую много статей - и до сих пор не понимаю, в чем дело. Пожалуйста, помогите!