blob: 466dd03ba3d7cb7ee03926f67f9c1df894303ab8 [file] [log] [blame]
import static androidx.build.dependencies.DependenciesKt.*
plugins {
id("AndroidXPlugin")
id("AndroidXUiPlugin")
id("com.android.application")
id("org.jetbrains.kotlin.android")
}
android {
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt')
}
}
}
dependencies {
kotlinPlugin project(":compose:compiler:compiler")
implementation(KOTLIN_STDLIB)
implementation project(":compose:foundation:foundation-layout")
implementation project(":compose:material:material")
implementation project(":compose:runtime:runtime")
implementation project(":compose:ui:ui")
implementation project(":compose:ui:ui-tooling")
implementation project(":activity:activity-compose")
}
android.defaultConfig.minSdkVersion 21