我谷歌了这个问题,但结果对我不起作用。
详情如下。
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"]
}
谁有想法?谢谢!
我今天早上刚刚遇到这个问题。您的 build.gradle 中是否有任何内容向注释进程选项添加了参数?例如:
android {
...
defaultConfig {
...
javaCompileOptions {
annotationProcessorOptions {
arguments = ["room.schemaLocation":
"$projectDir/schemas".toString()]
}
}
}
}
如果是这样,请尝试从“arguments =”更改为“arguments + =”,因为仅使用 equals 会覆盖之前设置的任何内容。
编辑:看起来 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
如果您正在使用
kotlin-gradle-plugin:1.5.20
(在您的项目级别 build.gradle
),将其降级为 1.5.10
应该可以解决问题。
该问题可能会在下一个版本中得到解决,然后您将升级到新版本。
将此行添加到您的
gradle.properties
文件中:
kapt.use.worker.api=false
它将禁用 gradle worker API。 它对我有用,但正如文档中所述:
使用辅助 API,Gradle 可以并行运行单个项目中的独立注释处理任务,这在某些情况下会显着减少执行时间。
因此,禁用它可能会减慢您的构建速度。
只是不要忘记将 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'
}
添加到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
备份@SteveC 答案,使用 Kotlin Gradle DSL 时有点不同
我们不能使用
+=
或 arguments = mapOf()
。正如官方 Dagger-Hilt 文档(此处)和 github 问题(此处)中所述,也有关文档
请参阅下图了解说明:
arguments = mapOf()
将使用 setArguments
调用 this.arguments.clear()
,从而覆盖之前的参数(在本例中为 Hilt
)解决方法:
javaCompileOptions {
annotationProcessorOptions {
arguments(
mapOf(
"dagger.gradle.incremental" to "true",
"room.incremental" to "true"
)
)
}
}
将
arguments()
包装为函数而不是调用 setter,它也会保留之前的 arguments
。
就我而言,
multi module
在presentaion
层,我刚刚删除了:
javaCompileOptions {
annotationProcessorOptions {
arguments = ["room.schemaLocation":
"$projectDir/schemas".toString()]
}
}
}
在
defaultConfig
块
在您的应用程序 build.gradle 文件中,在
plugins
下替换
id 'com.google.dagger.hilt.android'
与
id 'dagger.hilt.android.plugin'