BMI_Calculator/gradle/libs.versions.toml
2025-01-09 18:18:58 +07:00

40 lines
2.1 KiB
TOML

[versions]
agp = "8.0.0" # Change to a stable version that matches your Android Studio version
kotlin = "1.7.10" # Use a stable version compatible with Compose
coreKtx = "1.8.0"
junit = "4.13.2"
junitExt = "1.1.5" # Update version reference name for JUnit Ext
espressoCore = "3.5.1" # Use a compatible version for Espresso Core
lifecycleRuntimeKtx = "2.5.1"
activityCompose = "1.6.0"
composeBom = "2023.01.00" # Update this to match latest BOM for Compose
ui = "1.3.0"
uiGraphics = "1.3.0"
uiToolingPreview = "1.3.0"
material3 = "1.0.0"
[libraries]
junit = { group = "junit", name = "junit", version.ref = "junit" }
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitExt" }
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
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-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" }
# Compose libraries using BOM for better compatibility
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
androidx-ui = { group = "androidx.compose.ui", name = "ui", version.ref = "ui" }
androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics", version.ref = "uiGraphics" }
androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview", version.ref = "uiToolingPreview" }
androidx-material3 = { group = "androidx.compose.material3", name = "material3", version.ref = "material3" }
androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4", version.ref = "ui" }
androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
[plugins]
android-application = { id = "com.android.application", version.ref = "agp" }
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }