gpt4 book ai didi

android - Kotlin 和 Dagger2

转载 作者:IT老高 更新时间:2023-10-28 13:40:43 24 4
gpt4 key购买 nike

我正在尝试将 Kotlin 添加到我的项目中,但在启用 Kotlin 后,我无法构建,因为不再生成 Dagger2 类。我尝试了第二个项目,但我遇到了同样的问题(实际上更糟,它同时提示 Dagger2 和 DataBinding)。

这些是我为启用 Kotlin 所做的更改:

项目 build.gradle:

diff --git a/build.gradle b/build.gradle
index 486700c..91e4cda 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,13 +1,15 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
+ ext.kotlin_version = '1.0.5-3'
repositories {
jcenter()
}
dependencies {
- classpath 'com.android.tools.build:gradle:2.3.0-alpha2'
+ classpath 'com.android.tools.build:gradle:2.3.0-beta1'
classpath 'com.google.gms:google-services:3.0.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
+ 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

应用构建.gradle:

diff --git a/app/build.gradle b/app/build.gradle
index 345dab0..e59f91c 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,5 +1,6 @@
apply plugin: 'com.android.application'
-apply plugin: 'com.neenbedankt.android-apt'
+apply plugin: 'kotlin-android'
+apply plugin: 'kotlin-kapt'

android {
compileSdkVersion 25
@@ -39,6 +40,13 @@ android {
incremental true
javaMaxHeapSize "5g"
}
+ sourceSets {
+ main.java.srcDirs += 'src/main/kotlin'
+ }
+}
+
+kapt {
+ generateStubs = true
}

dependencies {
@@ -71,11 +79,15 @@ dependencies {
compile 'com.artemzin.rxjava:proguard-rules:1.2.1.0'

// Dagger 2
- apt 'com.google.dagger:dagger-compiler:2.7'
- testApt 'com.google.dagger:dagger-compiler:2.7'
+ kapt 'com.google.dagger:dagger-compiler:2.7'
+ //testApt 'com.google.dagger:dagger-compiler:2.7'
compile 'com.google.dagger:dagger:2.7'
provided 'javax.annotation:jsr250-api:1.0'
+ compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}

apply plugin: 'com.google.gms.google-services'
+repositories {
+ mavenCentral()
+}

错误发生在这里:

sObjectGraph = DaggerObjectGraph
.builder()
.appModule(new AppModule(context.getApplicationContext()))
.build();

不再定义 DaggerObjectGraph。

任何帮助将不胜感激。

最佳答案

删除

kapt {
generateStubs = true
}

关于android - Kotlin 和 Dagger2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41310592/

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