| 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 |