-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlibs.versions.toml
More file actions
83 lines (76 loc) · 4.08 KB
/
Copy pathlibs.versions.toml
File metadata and controls
83 lines (76 loc) · 4.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[versions]
androidGradlePlugin = "8.10.0"
androidJunit5Plugin = "1.12.0.0"
androidMaterial = "1.12.0"
androidxAppCompat = "1.7.0"
androidxConstraintLayout = "2.2.1"
androidxCore = "1.16.0"
androidxTestCore = "1.6.1"
androidxTestEspresso = "3.6.1"
androidxTestExtJunit = "1.2.1"
androidxTestRules = "1.6.1"
androidxTestRunner = "1.6.2"
conventionPlugin = "2.0.0-alpha.4"
dependencyAnalysis = "2.17.0"
firebaseBom = "32.8.0"
gradleMavenPublishPlugin = "0.35.0" # any further upgrade requires Gradle 9
gradleVersions = "0.51.0"
javaxInject = "1"
kgpCompileSdk = "35"
kgpDagger = "2.56.1"
kgpAndroidDesugarJdkLibs = "2.1.5"
kgpAndroidxComposeBom = "2025.05.00"
kgpDokka = "2.0.0"
kgpJdk = "17"
kgpJvmTarget = "11"
kgpJunit4 = "4.13.2"
kgpJunitBom = "5.12.2"
kgpMinSdk = "24"
kgpTargetSdk = "35"
kotlin = "2.1.20"
kotlinter = "5.0.2"
kotlinxCoroutines = "1.10.2"
kover = "0.9.1"
ksp = "2.1.20-1.0.32"
mockk = "1.14.2"
[libraries]
# android
android-material = { module = "com.google.android.material:material", version.ref = "androidMaterial" }
androidx-constrainlayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "androidxConstraintLayout" }
androidx-coreKtx = { module = "androidx.core:core-ktx", version.ref = "androidxCore" }
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "androidxAppCompat" }
# firebase
firebase-analytics = { module = "com.google.firebase:firebase-analytics" }
firebase-bom = { module = "com.google.firebase:firebase-bom", version.ref = "firebaseBom" }
# kotlin
kotlinx-coroutinesCore = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinxCoroutines" }
kotlinx-coroutinesAndroid = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version.ref = "kotlinxCoroutines" }
kotlinx-coroutinesTest = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "kotlinxCoroutines" }
kotlinTest = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }
# other
injectJavax = { module = "javax.inject:javax.inject", version.ref = "javaxInject" }
## unit tests
android-test-espressoCore = { module = "androidx.test.espresso:espresso-core", version.ref = "androidxTestEspresso" }
junit4 = { module = "junit:junit", version.ref = "kgpJunit4" }
mockk = { module = "io.mockk:mockk", version.ref = "mockk" }
# instrumented tests
androidx-test-core = { module = "androidx.test:core", version.ref = "androidxTestCore" }
androidx-test-rules = { module = "androidx.test:rules", version.ref = "androidxTestRules" }
androidx-test-runner = { module = "androidx.test:runner", version.ref = "androidxTestRunner" }
androidx-test-ext-junitKtx = { module = "androidx.test.ext:junit-ktx", version.ref = "androidxTestExtJunit" }
[plugins]
android-application = { id = "com.android.application", version.ref = "androidGradlePlugin" }
android-junit5 = { id = "de.mannodermaus.android-junit5", version.ref = "androidJunit5Plugin" }
compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
conventions-androidApplication = { id = "com.kroger.gradle.android-application-conventions", version.ref = "conventionPlugin" }
conventions-publishedAndroidLibrary = { id = "com.kroger.gradle.published-android-library-conventions", version.ref = "conventionPlugin" }
conventions-publishedKotlinLibrary = { id = "com.kroger.gradle.published-kotlin-library-conventions", version.ref = "conventionPlugin" }
conventions-root = { id = "com.kroger.gradle.root", version.ref = "conventionPlugin" }
dagger-hilt = { id = "com.google.dagger.hilt.android", version.ref = "kgpDagger" }
dependencyAnalysis = { id = "com.autonomousapps.dependency-analysis", version.ref = "dependencyAnalysis" }
dokka = { id = "org.jetbrains.dokka", version.ref = "kgpDokka" }
gradleVersions = { id = "com.github.ben-manes.versions", version.ref = "gradleVersions" }
kotlinter = { id = "org.jmailen.kotlinter", version.ref = "kotlinter" }
kotlinx-kover = { id = "org.jetbrains.kotlinx.kover", version.ref = "kover" }
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
mavenPublish = { id = "com.vanniktech.maven.publish", version.ref = "gradleMavenPublishPlugin" }