Major version bumps: - AGP 8.7.3 → 9.1.0 (remove kotlin-android plugin, now built-in) - Kotlin 2.0.21 → 2.3.20 - Gradle 8.9 → 9.4.0 - Compose BOM 2024.12.01 → 2026.03.00 - compileSdk/targetSdk 35 → 36 Library updates: - core-ktx 1.15.0 → 1.18.0 - lifecycle 2.8.7 → 2.10.0 - activity-compose 1.9.3 → 1.13.0 - CameraX 1.4.1 → 1.5.1 - exifinterface 1.3.7 → 1.4.2 AGP 9 migration: removed org.jetbrains.kotlin.android plugin (Kotlin support is now built into AGP), removed kotlinOptions block (JVM target handled by compileOptions). Bump version to 1.1.4. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
44 lines
2.4 KiB
TOML
44 lines
2.4 KiB
TOML
[versions]
|
|
agp = "9.1.0"
|
|
kotlin = "2.3.20"
|
|
coreKtx = "1.18.0"
|
|
lifecycleRuntimeKtx = "2.10.0"
|
|
activityCompose = "1.13.0"
|
|
composeBom = "2026.03.00"
|
|
camerax = "1.5.1"
|
|
exifinterface = "1.4.2"
|
|
playServicesLocation = "21.3.0"
|
|
junit = "4.13.2"
|
|
|
|
[libraries]
|
|
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
|
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" }
|
|
androidx-lifecycle-runtime-compose = { group = "androidx.lifecycle", name = "lifecycle-runtime-compose", version.ref = "lifecycleRuntimeKtx" }
|
|
androidx-lifecycle-viewmodel-compose = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-compose", version.ref = "lifecycleRuntimeKtx" }
|
|
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" }
|
|
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
|
|
androidx-ui = { group = "androidx.compose.ui", name = "ui" }
|
|
androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
|
|
androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
|
|
androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
|
|
androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
|
|
androidx-material-icons-extended = { group = "androidx.compose.material", name = "material-icons-extended" }
|
|
|
|
# CameraX
|
|
androidx-camera-core = { group = "androidx.camera", name = "camera-core", version.ref = "camerax" }
|
|
androidx-camera-camera2 = { group = "androidx.camera", name = "camera-camera2", version.ref = "camerax" }
|
|
androidx-camera-lifecycle = { group = "androidx.camera", name = "camera-lifecycle", version.ref = "camerax" }
|
|
androidx-camera-view = { group = "androidx.camera", name = "camera-view", version.ref = "camerax" }
|
|
|
|
# EXIF
|
|
androidx-exifinterface = { group = "androidx.exifinterface", name = "exifinterface", version.ref = "exifinterface" }
|
|
|
|
# Location
|
|
play-services-location = { group = "com.google.android.gms", name = "play-services-location", version.ref = "playServicesLocation" }
|
|
|
|
# Test
|
|
junit = { group = "junit", name = "junit", version.ref = "junit" }
|
|
|
|
[plugins]
|
|
android-application = { id = "com.android.application", version.ref = "agp" }
|
|
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
|