36 lines
1.9 KiB
TOML
36 lines
1.9 KiB
TOML
[versions]
|
|
agp = "9.1.0"
|
|
kotlin = "2.2.21"
|
|
coreKtx = "1.17.0"
|
|
appcompat = "1.7.1"
|
|
material = "1.13.0"
|
|
constraintlayout = "2.2.1"
|
|
lifecycleRuntimeKtx = "2.10.0"
|
|
kotlinxCoroutines = "1.10.2"
|
|
junit5 = "6.0.3"
|
|
mockk = "1.14.9"
|
|
kotlinxCoroutinesTest = "1.10.2"
|
|
detekt = "1.23.8"
|
|
ktlintGradle = "14.1.0"
|
|
|
|
[libraries]
|
|
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
|
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
|
|
material = { group = "com.google.android.material", name = "material", version.ref = "material" }
|
|
androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
|
|
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" }
|
|
kotlinx-coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version.ref = "kotlinxCoroutines" }
|
|
gson = { module = "com.google.code.gson:gson", version = "2.12.1" }
|
|
junit5 = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit5" }
|
|
junit5-platform-launcher = { module = "org.junit.platform:junit-platform-launcher", version = "6.0.3" }
|
|
mockk = { module = "io.mockk:mockk", version.ref = "mockk" }
|
|
mockk-android = { module = "io.mockk:mockk-android", version.ref = "mockk" }
|
|
kotlinx-coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "kotlinxCoroutinesTest" }
|
|
|
|
[plugins]
|
|
androidApplication = { id = "com.android.application", version.ref = "agp" }
|
|
kotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
|
androidLibrary = { id = "com.android.library", version.ref = "agp" }
|
|
detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" }
|
|
ktlint = { id = "org.jlleitschuh.gradle.ktlint", version.ref = "ktlintGradle" }
|