[go: nahoru, domu]

blob: d1e40f6e9f74e2faef91eb078df69a563c583633 [file] [log] [blame]
plugins {
id("AndroidXPlugin")
id("AndroidXComposePlugin")
id("com.android.application")
id("org.jetbrains.kotlin.android")
}
dependencies {
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:material3:material3:integration-tests:material3-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:material3:material3"))
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"
}
namespace "androidx.compose.integration.demos"
}