51

我有谷歌这个问题,但结果对我不起作用。

详情如下。

    public final class App extends com.zhixin.wedeep.common.BaseApplication implements androidx.lifecycle.LifecycleOwner {
                 ^
     // Expected @HiltAndroidApp to have a value. Did you forget to apply the Gradle Plugin?

应用程序代码。

@HiltAndroidApp
class App : BaseApplication(), LifecycleOwner {

    @Inject
    lateinit var service: EventService


    private val mLifecycleRegistry = LifecycleRegistry(this)

}


此模块 gradle 文件。

apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-allopen'
apply plugin: 'androidx.navigation.safeargs.kotlin'
apply plugin: 'dagger.hilt.android.plugin'

dependencies {
    implementation rootProject.ext.dependencies["hilt-android"]
    implementation rootProject.ext.dependencies["hilt-lifecycle-viewmodel"]
    kapt rootProject.ext.kapt["hilt-compiler"]
    kapt rootProject.ext.kapt["hilt-android-compiler"]
}

谁有想法?谢谢!

4

6 回答 6

95

我今天早上刚遇到这个问题。您的 build.gradle 中是否有任何向 annotationProcessOptions 添加参数的内容?例如:

  android {
        ...
        defaultConfig {
            ...
            javaCompileOptions {
                annotationProcessorOptions {
                    arguments = ["room.schemaLocation":
                                 "$projectDir/schemas".toString()]
                }
            }
        }
    }

如果是这样,请尝试从“arguments =”更改为“arguments +=”,因为仅使用 equals 会覆盖之前设置的任何内容。

于 2020-07-14T08:38:02.100 回答
59

编辑:看起来像 kotlin gradle plugin 1.5.21 解决了这个问题,而不使用下面的 javacOptions。更新 Kotlin 并重试!

classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21"

如果您没有使用 Room 并且仍然收到错误,请将其放入 build.gradle 的 android 块中:

kapt {
    javacOptions {
        // These options are normally set automatically via the Hilt Gradle plugin, but we
        // set them manually to workaround a bug in the Kotlin 1.5.20
        option("-Adagger.fastInit=ENABLED")
        option("-Adagger.hilt.android.internal.disableAndroidSuperclassValidation=true")
    }
}

这是 kotlin 1.5.20 上的一个 kapt 错误:https ://github.com/google/dagger/issues/2684

于 2021-06-26T10:33:55.363 回答
32

解决方案 1:降级 kotlin

如果您正在使用kotlin-gradle-plugin:1.5.20(在您的项目级别build.gradle),将其降级为1.5.10应该可以解决问题。该问题可能会在下一个版本中修复,然后您将升级到新版本。

解决方案 2:禁用 Gradle 工作者 API

将此行添加到您的gradle.properties文件中:

kapt.use.worker.api=false

它将禁用gradle worker API。它对我有用,但如文档中所述:

使用 worker API 可以让 Gradle 从单个项目并行运行独立的注释处理任务,这在某些情况下会显着减少执行时间。

因此,通过禁用它,您的构建可能会减慢。

于 2021-06-30T15:10:44.970 回答
8

只是不要忘记将Hilt 类路径依赖项添加到您的项目级 gradle 文件中:

classpath "com.google.dagger:hilt-android-gradle-plugin:$versions.daggerHiltCoreVersion"

定义具体的版本号而不是上面的$versions.daggerHiltCoreVersion

并将插件添加到您的应用级别 gradle:

apply plugin : 'dagger.hilt.android.plugin'

对于以后的 Gradle 版本,添加插件如下

plugins {
    id 'dagger.hilt.android.plugin'
}
于 2020-11-12T11:02:29.957 回答
4

添加到 sitatech 的答案中,我也遇到过这个问题,使用kotlin-grade-plugin-1.5.20. 新1.5.21补丁为我解决了这个问题。

Kotlin Grade Plugin v1.5.21 发行说明:https ://github.com/JetBrains/kotlin/releases/tag/v1.5.21

Jetbrains 问题跟踪器中的问题:https ://youtrack.jetbrains.com/issue/KT-47416

于 2021-07-14T03:29:57.073 回答
3

要备份@SteveC 的答案,使用 Kotlin Gradle DSL 时有点不同

我们不能使用+=arguments = mapOf()。如官方 Dagger-Hilt文档中所述,以及有关文档的github 问题

见下图解释:

参数 = mapOf()

  1. arguments = mapOf()将调用setArgumentswith this.arguments.clear(),因此将覆盖先前的参数(在这种情况下Hilt

解决方法:

        javaCompileOptions {
            annotationProcessorOptions {
                arguments(
                    mapOf(
                        "dagger.gradle.incremental" to "true",
                        "room.incremental" to "true"
                    )
                )
            }
        }

将 包装arguments()为函数而不是调用 setter,它也会保留以前arguments的。

于 2020-07-18T11:01:05.213 回答