13 lines
No EOL
538 B
Groovy
13 lines
No EOL
538 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
id 'com.android.application' version '7.2.0' apply false
|
|
id 'com.android.library' version '7.2.0' apply false
|
|
id 'org.jetbrains.kotlin.android' version "1.6.10" apply false
|
|
}
|
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
|
|
kotlinOptions.freeCompilerArgs += ["-Xuse-experimental=kotlin.Experimental"]
|
|
}
|
|
|
|
apply from: "gradlescripts/configs.gradle"
|
|
apply from: "gradlescripts/versions.gradle" |