| plugins { |
| id("AndroidXPlugin") |
| id("com.android.library") |
| id("AndroidXComposePlugin") |
| id("org.jetbrains.kotlin.android") |
| } |
| |
| android { |
| namespace = "androidx.wear.compose.material3.macrobenchmark.common" |
| compileSdk = 35 |
| |
| defaultConfig { |
| minSdk = 30 |
| } |
| |
| buildTypes.configureEach { |
| consumerProguardFiles("proguard-rules.pro") |
| } |
| } |
| |
| dependencies { |
| implementation("androidx.fragment:fragment:1.8.5") |
| implementation(project(":benchmark:benchmark-macro-junit4")) |
| implementation(project(":compose:foundation:foundation")) |
| implementation(project(":compose:foundation:foundation-layout")) |
| implementation(project(":compose:runtime:runtime")) |
| implementation(project(":compose:runtime:runtime-tracing")) |
| implementation(project(":compose:ui:ui")) |
| implementation(project(":compose:ui:ui-tooling")) |
| implementation(project(":wear:compose:compose-foundation")) |
| implementation(project(":wear:compose:compose-material3")) |
| implementation(project(":wear:compose:compose-material3-samples")) |
| implementation("androidx.compose.material:material-icons-core:1.6.0") |
| } |