19 lines
445 B
Groovy
19 lines
445 B
Groovy
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||
|
plugins {
|
||
|
id 'com.android.application' version '8.1.0' apply false
|
||
|
id 'org.jetbrains.kotlin.jvm' version '1.8.0'
|
||
|
}
|
||
|
dependencies {
|
||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
||
|
}
|
||
|
compileKotlin {
|
||
|
kotlinOptions {
|
||
|
jvmTarget = "1.8"
|
||
|
}
|
||
|
}
|
||
|
compileTestKotlin {
|
||
|
kotlinOptions {
|
||
|
jvmTarget = "1.8"
|
||
|
}
|
||
|
}
|