2025-12-10 00:07:38 -05:00
|
|
|
[versions]
|
2025-12-24 22:48:34 -05:00
|
|
|
# Tooling
|
2025-12-25 22:18:58 -05:00
|
|
|
agp = "8.13.2"
|
2025-12-10 00:07:38 -05:00
|
|
|
kotlin = "2.0.21"
|
2025-12-24 22:48:34 -05:00
|
|
|
ksp = "2.0.21-1.0.28"
|
|
|
|
|
|
|
|
|
|
# AndroidX / Lifecycle
|
|
|
|
|
coreKtx = "1.15.0"
|
|
|
|
|
lifecycle = "2.8.7"
|
|
|
|
|
activityCompose = "1.9.3"
|
2025-12-25 22:18:58 -05:00
|
|
|
composeBom = "2025.12.01"
|
2025-12-24 22:48:34 -05:00
|
|
|
navigationCompose = "2.8.5"
|
2025-12-25 22:18:58 -05:00
|
|
|
hiltNavigationCompose = "1.3.0"
|
2025-12-24 22:48:34 -05:00
|
|
|
|
2025-12-25 22:18:58 -05:00
|
|
|
# DI & Database
|
|
|
|
|
hilt = "2.57.2"
|
|
|
|
|
room = "2.8.4"
|
2025-12-24 22:48:34 -05:00
|
|
|
|
|
|
|
|
# Images
|
|
|
|
|
coil = "2.7.0"
|
|
|
|
|
|
2026-01-01 01:02:42 -05:00
|
|
|
#Face Detect
|
|
|
|
|
mlkit-face-detection = "16.1.6"
|
|
|
|
|
coroutines-play-services = "1.8.1"
|
|
|
|
|
|
2025-12-10 00:07:38 -05:00
|
|
|
[libraries]
|
|
|
|
|
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
2025-12-24 22:48:34 -05:00
|
|
|
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycle" }
|
|
|
|
|
androidx-lifecycle-viewmodel-compose = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-compose", version.ref = "lifecycle" }
|
2025-12-10 00:07:38 -05:00
|
|
|
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" }
|
2025-12-24 22:48:34 -05:00
|
|
|
|
2025-12-25 22:18:58 -05:00
|
|
|
# Compose
|
2025-12-10 00:07:38 -05:00
|
|
|
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
|
|
|
|
|
androidx-compose-ui = { group = "androidx.compose.ui", name = "ui" }
|
|
|
|
|
androidx-compose-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
|
2025-12-25 22:18:58 -05:00
|
|
|
androidx-compose-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
|
2025-12-10 00:07:38 -05:00
|
|
|
androidx-compose-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
|
|
|
|
|
androidx-compose-material3 = { group = "androidx.compose.material3", name = "material3" }
|
2025-12-24 22:48:34 -05:00
|
|
|
androidx-compose-material-icons = { group = "androidx.compose.material", name = "material-icons-extended" }
|
|
|
|
|
|
|
|
|
|
# Navigation & Hilt
|
|
|
|
|
androidx-navigation-compose = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigationCompose" }
|
|
|
|
|
androidx-hilt-navigation-compose = { group = "androidx.hilt", name = "hilt-navigation-compose", version.ref = "hiltNavigationCompose" }
|
|
|
|
|
hilt-android = { group = "com.google.dagger", name = "hilt-android", version.ref = "hilt" }
|
|
|
|
|
hilt-compiler = { group = "com.google.dagger", name = "hilt-compiler", version.ref = "hilt" }
|
|
|
|
|
|
2025-12-25 22:18:58 -05:00
|
|
|
# Room
|
2025-12-24 22:48:34 -05:00
|
|
|
room-runtime = { group = "androidx.room", name = "room-runtime", version.ref = "room" }
|
|
|
|
|
room-ktx = { group = "androidx.room", name = "room-ktx", version.ref = "room" }
|
|
|
|
|
room-compiler = { group = "androidx.room", name = "room-compiler", version.ref = "room" }
|
|
|
|
|
|
2025-12-25 22:18:58 -05:00
|
|
|
# Misc
|
|
|
|
|
coil-compose = { group = "io.coil-kt", name = "coil-compose", version.ref = "coil" }
|
2025-12-10 00:07:38 -05:00
|
|
|
|
2026-01-01 01:02:42 -05:00
|
|
|
#Face Detect
|
|
|
|
|
mlkit-face-detection = { group = "com.google.mlkit", name = "face-detection", version.ref = "mlkit-face-detection"}
|
|
|
|
|
kotlinx-coroutines-play-services = {group = "org.jetbrains.kotlinx",name = "kotlinx-coroutines-play-services",version.ref = "coroutines-play-services"}
|
|
|
|
|
|
|
|
|
|
|
2025-12-10 00:07:38 -05:00
|
|
|
[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" }
|
2025-12-24 22:48:34 -05:00
|
|
|
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
|
|
|
|
|
hilt-android = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
|