| import static androidx.build.dependencies.DependenciesKt.* |
| |
| plugins { |
| id("AndroidXPlugin") |
| id("AndroidXUiPlugin") |
| id("com.android.application") |
| id("org.jetbrains.kotlin.android") |
| } |
| |
| dependencies { |
| kotlinPlugin project(":compose:compiler:compiler") |
| |
| implementation project(":compose:androidview:androidview:integration-tests:androidview-demos") |
| implementation project(":compose:animation:animation:integration-tests:animation-demos") |
| implementation project(":compose:foundation:foundation-layout:integration-tests:foundation-layout-demos") |
| implementation project(":compose:foundation:foundation:integration-tests:foundation-demos") |
| implementation project(":compose:material:material:integration-tests:material-demos") |
| implementation project(":compose:material:material:integration-tests:material-studies") |
| implementation project(":navigation:navigation-compose:integration-tests:navigation-demos") |
| implementation project(":compose:ui:ui:integration-tests:ui-demos") |
| |
| implementation(KOTLIN_REFLECT) |
| implementation(KOTLIN_STDLIB) |
| |
| implementation project(":compose:androidview:androidview") |
| implementation project(":compose:foundation:foundation") |
| implementation project(":compose:foundation:foundation-layout") |
| implementation project(":compose:integration-tests:demos:common") |
| implementation project(":compose:material:material") |
| implementation project(":compose:runtime:runtime") |
| implementation project(":compose:ui:ui") |
| |
| implementation "androidx.preference:preference-ktx:1.1.1" |
| |
| androidTestImplementation project(":compose:ui:ui-test-junit4") |
| |
| androidTestImplementation(ANDROIDX_TEST_RULES) |
| androidTestImplementation(ANDROIDX_TEST_RUNNER) |
| androidTestImplementation(ESPRESSO_CORE) |
| androidTestImplementation(JUNIT) |
| androidTestImplementation(TRUTH) |
| } |
| |
| android { |
| defaultConfig { |
| minSdkVersion 21 |
| // Change the APK name to match the *testapp regex we use to pick up APKs for testing as |
| // part of CI. |
| archivesBaseName = "compose-demos-testapp" |
| } |
| } |