diff options
Diffstat (limited to 'android/app/build.gradle.kts')
| -rw-r--r-- | android/app/build.gradle.kts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 76f5b50..fb31aa8 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -68,7 +68,11 @@ dependencies { implementation(composeBom) implementation("androidx.glance:glance-appwidget:1.1.0") - implementation("androidx.glance:glance-material3:1.1.0") + // glance-material3 removed 2026-08-06: zero usages anywhere in this codebase (no + // androidx.glance.material3 import, no GlanceTheme call) -- it only pulled in + // material-icons-core + material-ripple transitively, which are themselves unused + // too (no Compose Material Icons anywhere -- this app uses its own R.drawable + // vectors). Verified via `./gradlew :app:dependencies` before removing, not assumed. implementation("androidx.work:work-runtime-ktx:2.9.0") implementation("androidx.datastore:datastore-preferences:1.1.1") implementation("com.squareup.okhttp3:okhttp:4.12.0") |
