| plugins { |
| id("AndroidXPlugin") |
| id("AndroidXComposePlugin") |
| id("com.android.application") |
| id("org.jetbrains.kotlin.android") |
| } |
| |
| dependencies { |
| kotlinPlugin(project(":compose:compiler:compiler")) |
| |
| 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(":navigation:navigation-compose:integration-tests:navigation-demos")) |
| implementation(project(":compose:ui:ui:integration-tests:ui-demos")) |
| |
| implementation(libs.kotlinReflect) |
| implementation(libs.kotlinStdlib) |
| |
| 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(libs.testCore) |
| androidTestImplementation(libs.testRules) |
| androidTestImplementation(libs.testRunner) |
| androidTestImplementation(libs.espressoCore) |
| androidTestImplementation(libs.junit) |
| androidTestImplementation(libs.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" |
| } |
| } |