...and rework the original "helper.gradle" into proper plugins. This also allows the signing configuration code to be shared, and now keystore.properties is no longer mandatory.
12 lines
No EOL
558 B
Kotlin
12 lines
No EOL
558 B
Kotlin
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
// The following Android-related plugins are already depended upon by buildSrc, hence unnecessary.
|
|
// id("com.android.application") version "8.1.2" apply false
|
|
// id("com.android.library") version "8.1.2" apply false
|
|
id("org.jetbrains.kotlin.android") version "1.9.20" apply false
|
|
id("org.jetbrains.kotlin.multiplatform") version "1.9.20" apply false
|
|
}
|
|
|
|
tasks.create<Delete>("clean") {
|
|
delete = setOf(rootProject.buildDir)
|
|
} |