[go: nahoru, domu]

blob: a28804a3a36b92bbd51d679cd67d21971a98d881 [file] [log] [blame]
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import static androidx.build.dependencies.DependenciesKt.*
plugins {
id("AndroidXPlugin")
id("com.android.library")
id("AndroidXUiPlugin")
id("org.jetbrains.kotlin.android")
}
dependencies {
kotlinPlugin project(path: ":compose:compose-compiler")
implementation(KOTLIN_STDLIB)
implementation project(":compose:runtime:runtime")
implementation project(":ui:integration-tests:demos:common")
implementation project(":compose:core:core")
implementation project(":compose:foundation:foundation-layout")
implementation project(":compose:core:core-text")
implementation project(":compose:animation:animation")
implementation project(":compose:foundation:foundation")
implementation project(":compose:material:material")
implementation project(":compose:runtime:runtime-livedata")
}
android {
tasks.withType(KotlinCompile).configureEach {
kotlinOptions {
useIR = true
}
}
}