66 lines
2.8 KiB
TOML
66 lines
2.8 KiB
TOML
[versions]
|
|
# Tooling
|
|
agp = "8.7.3" # Latest stable for 2025
|
|
kotlin = "2.0.21"
|
|
ksp = "2.0.21-1.0.28" # Strictly matched to Kotlin version
|
|
|
|
# AndroidX / Compose
|
|
androidx-core = "1.15.0"
|
|
androidx-lifecycle = "2.10.0"
|
|
androidx-activity = "1.12.2"
|
|
compose-bom = "2025.12.00"
|
|
navigation = "2.8.5"
|
|
|
|
# Camera & ML
|
|
camerax = "1.5.2"
|
|
mlkit-face = "16.1.7"
|
|
tflite = "2.16.1"
|
|
|
|
# Database & DI
|
|
room = "2.7.0-alpha01"
|
|
hilt = "2.54" # Supports KSP2 and fixes JavaPoet conflicts
|
|
|
|
# Images
|
|
coil = "2.6.0"
|
|
|
|
[libraries]
|
|
# Core & Lifecycle
|
|
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "androidx-core" }
|
|
androidx-lifecycle-runtime = { group = "androidx.lifecycle", name = "lifecycle-runtime-compose", version.ref = "androidx-lifecycle" }
|
|
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "androidx-activity" }
|
|
|
|
# Compose
|
|
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "compose-bom" }
|
|
compose-ui = { group = "androidx.compose.ui", name = "ui" }
|
|
compose-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
|
|
compose-material3 = { group = "androidx.compose.material3", name = "material3" }
|
|
compose-icons = { group = "androidx.compose.material", name = "material-icons-extended" }
|
|
compose-navigation = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigation" }
|
|
|
|
# CameraX
|
|
camera-core = { group = "androidx.camera", name = "camera-camera2", version.ref = "camerax" }
|
|
camera-lifecycle = { group = "androidx.camera", name = "camera-lifecycle", version.ref = "camerax" }
|
|
camera-view = { group = "androidx.camera", name = "camera-view", version.ref = "camerax" }
|
|
|
|
# ML
|
|
mlkit-face = { group = "com.google.mlkit", name = "face-detection", version.ref = "mlkit-face" }
|
|
tflite = { group = "org.tensorflow", name = "tensorflow-lite", version.ref = "tflite" }
|
|
tflite-support = { group = "org.tensorflow", name = "tensorflow-lite-support", version = "0.4.4" }
|
|
|
|
# Room
|
|
room-runtime = { group = "androidx.room", name = "room-runtime", version.ref = "room" }
|
|
room-compiler = { group = "androidx.room", name = "room-compiler", version.ref = "room" }
|
|
|
|
# Images
|
|
coil-compose = { group = "io.coil-kt", name = "coil-compose", version.ref = "coil" }
|
|
|
|
# Hilt
|
|
hilt-android = { group = "com.google.dagger", name = "hilt-android", version.ref = "hilt" }
|
|
hilt-compiler = { group = "com.google.dagger", name = "hilt-compiler", version.ref = "hilt" }
|
|
|
|
[plugins]
|
|
android-application = { id = "com.android.application", version.ref = "agp" }
|
|
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
|
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
|
|
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
|
|
hilt-android = { id = "com.google.dagger.hilt.android", version.ref = "hilt" } |