Для повторного использования кода в файлах Gradle у меня обычно есть «базовый» файл Gradle для определенных модулей, и я просто применяю их и добавляю любые новые зависимости, которые могут понадобиться.Я нахожусь в процессе преобразования всех моих файлов Gradle в новый DSL Kotlin, но я получаю ошибки "Unresolved reference" для ключевых слов, используя следующий "базовый" файл.
plugins {
id("com.android.library")
kotlin("kotlin.android")
kotlin("kapt")
}
android {
compileSdkVersion(App.compileSdk)
defaultConfig {
minSdkVersion(App.minSdk)
targetSdkVersion(App.targetSdk)
versionCode = App.versionCode
versionName = App.versionName
testInstrumentationRunner = "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
getByName("release") {
isMinifyEnabled = false
proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}
dependencies {
val implementation by configurations
val testImplementation by configurations
val androidTestImplementation by configurations
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
implementation(Libs.kotlin_stdlib_jdk8)
implementation(Libs.appcompat_v7)
testImplementation(Libs.junit)
androidTestImplementation(Libs.com_android_support_test_runner)
androidTestImplementation(Libs.espresso_core)
}
Файл выше находится в моемкорневой проект, и я просто использую следующее в функциональных модулях
apply(rootProject.file("base-android.gradle.kts"))
Это отлично работает в Groovy, но полностью ломается при переходе на Kotlin, любые идеи о том, что я делаю неправильно или как правильно иметь "базовый »файл Gradle в Kotlin DSL?
РЕДАКТИРОВАТЬ: Добавление полного сообщения об ошибке
Script compilation errors:
Line 10: android {
^ Unresolved reference: android
Line 11: compileSdkVersion(28)
^ Unresolved reference: compileSdkVersion
Line 12: defaultConfig {
^ Unresolved reference: defaultConfig
Line 13: minSdkVersion(21)
^ Unresolved reference: minSdkVersion
Line 14: targetSdkVersion(28)
^ Unresolved reference: targetSdkVersion
Line 15: versionCode = 1
^ Unresolved reference: versionCode
Line 16: versionName = "1.0"
^ Unresolved reference: versionName
Line 17: testInstrumentationRunner = "android.support.test.runner.AndroidJUnitRunner"
^ Unresolved reference: testInstrumentationRunner
Line 20: buildTypes {
^ Unresolved reference: buildTypes
Line 21: getByName("release") {
^ Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public inline fun <reified T : Any> NamedDomainObjectCollection<out Any>.getByName(name: String): TypeVariable(T) defined in org.gradle.kotlin.dsl
public inline fun <reified T : Any> NamedDomainObjectCollection<out Any>.getByName(name: String, configure: TypeVariable(T).() -> Unit): TypeVariable(T) defined in org.gradle.kotlin.dsl
public fun <T : Any> NamedDomainObjectCollection<out Any>.getByName(name: String, type: KClass<TypeVariable(T)>): TypeVariable(T) defined in org.gradle.kotlin.dsl
public fun <T : Any> NamedDomainObjectCollection<out Any>.getByName(name: String, type: KClass<TypeVariable(T)>, configure: TypeVariable(T).() -> Unit): TypeVariable(T) defined in org.gradle.kotlin.dsl
public inline fun <reified T : Any> ExtensionContainer.getByName(name: String): TypeVariable(T) defined in org.gradle.kotlin.dsl
Line 22: isMinifyEnabled = false
^ Unresolved reference: isMinifyEnabled
Line 23: proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
^ Unresolved reference: proguardFiles
Line 23: proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
^ Unresolved reference: getDefaultProguardFile
Line 27: compileOptions {
^ Unresolved reference: compileOptions
Line 28: sourceCompatibility = JavaVersion.VERSION_1_8
^ Unresolved reference: sourceCompatibility
Line 29: targetCompatibility = JavaVersion.VERSION_1_8
^ Unresolved reference: targetCompatibility
16 errors