要在我们的 android-library 模块中启用脱糖,我们必须将其放入build.gradle
:
android {
compileOptions {
coreLibraryDesugaringEnabled true
}
}
但是我们已经将所有脚本迁移到 gradle kotlin dsl,所以问题出现build.gradle.kts
在所有三个方面:
android {
compileOptions {
isCoreLibraryDesugaringEnabled = true
}
}
configure<BaseExtension> {
compileOptions {
isCoreLibraryDesugaringEnabled = true
}
}
android {
if (this is com.android.build.api.dsl.LibraryExtension<*, *, *, *, *, *, *, *, *, *, *>) {
buildFeatures.viewBinding = true
}
}
每次它抛出Unresolved reference: isCoreLibraryDesugaringEnabled
。
有人知道如何解决这个问题吗?