| import org.jetbrains.kotlin.gradle.tasks.KotlinCompile |
| |
| import static androidx.build.dependencies.DependenciesKt.* |
| |
| plugins { |
| id("AndroidXPlugin") |
| id("com.android.application") |
| id("org.jetbrains.kotlin.android") |
| } |
| |
| dependencies { |
| implementation(project(":ui-android-view")) |
| implementation(project(":ui-animation:integration-tests:ui-animation-demos")) |
| implementation(project(":ui-framework:integration-tests:ui-framework-demos")) |
| implementation(project(":ui-layout:integration-tests:ui-layout-demos")) |
| implementation(project(":ui-material:integration-tests:ui-material-demos")) |
| implementation(project(":ui-text:integration-tests:ui-text-demos")) |
| implementation(KOTLIN_COMPOSE_STDLIB) |
| |
| androidTestImplementation project(':ui-test') |
| androidTestImplementation(JUNIT) |
| androidTestImplementation('androidx.test.ext:junit:1.1.0') |
| androidTestImplementation(ANDROIDX_TEST_RULES) |
| androidTestImplementation(ESPRESSO_CORE) |
| } |
| |
| android { |
| defaultConfig { |
| minSdkVersion 21 |
| } |
| } |