19 lines
442 B
Groovy
19 lines
442 B
Groovy
android {
|
|
buildFeatures { compose true }
|
|
|
|
// Set both the Java and Kotlin compilers to target Java 8.
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
|
|
composeOptions {
|
|
kotlinCompilerVersion Versions.composeCompilerVersion
|
|
kotlinCompilerExtensionVersion Versions.compose
|
|
}
|
|
} |