期望@HiltAndroidApp 有一个值。您是否忘记应用 Gradle 插件?

问题描述 投票:0回答:8

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

详情如下。

    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"]
}

谁有想法?谢谢!

android dagger-2 dagger-hilt
8个回答
122
投票

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

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

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


65
投票

编辑:看起来 kotlin gradle 插件 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


32
投票

解决方案 1:降级 kotlin

如果您正在使用

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

解决方案 2:禁用 Gradle Worker API

将此行添加到您的

gradle.properties
文件中:

kapt.use.worker.api=false

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

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

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


13
投票

只是不要忘记将 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'
}

4
投票

添加到sitatech的答案,我也使用

kotlin-grade-plugin-1.5.20
遇到了这个问题。新的
1.5.21
补丁为我解决了这个问题。

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

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


3
投票

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

我们不能使用

+=
arguments = mapOf()
。正如官方 Dagger-Hilt 文档(此处)和 github 问题(此处)中所述,也有关文档

请参阅下图了解说明:

  1. arguments = mapOf()
    将使用
    setArguments
    调用
    this.arguments.clear()
    ,从而覆盖之前的参数(在本例中为
    Hilt

解决方法:

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

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


0
投票

就我而言,

multi module
presentaion
层,我刚刚删除了:

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

defaultConfig


0
投票

在您的应用程序 build.gradle 文件中,在

plugins
下替换

id 'com.google.dagger.hilt.android'

id 'dagger.hilt.android.plugin'
© www.soinside.com 2019 - 2024. All rights reserved.