-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathlibs.versions.toml
More file actions
40 lines (36 loc) · 2.77 KB
/
libs.versions.toml
File metadata and controls
40 lines (36 loc) · 2.77 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
[versions]
androidMinSdk = "21"
androidTargetSdk = "35"
androidCompileSdk = "36"
kotlin = "2.2.0"
androidGradlePlugin = "8.11.1"
[libraries]
appCompat = { module = "androidx.appcompat:appcompat", version = "1.7.1" }
androidGradlePlugin = { module = "com.android.tools.build:gradle", version.ref = "androidGradlePlugin" }
androidGradlePluginApi = { module = "com.android.tools.build:gradle-api", version.ref = "androidGradlePlugin" }
# Test dependencies
junit = { module = "junit:junit", version = "4.13.2" }
testOrchestrator = { module = "androidx.test:orchestrator", version = "1.5.1" }
truth = { module = "com.google.truth:truth", version = "1.4.4" }
supportTestRunner = { module = "androidx.test:runner", version = "1.6.2" }
espressoCore = { module = "androidx.test.espresso:espresso-core", version = "3.6.1" }
androidJUnit = { module = "androidx.test.ext:junit", version = "1.2.1" }
commonsCsv = { module = "org.apache.commons:commons-csv", version = "1.14.0" }
kotlinTest = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }
robolectric = { module = "org.robolectric:robolectric", version = "4.15.1" }
mockk = { module = "io.mockk:mockk", version = "1.14.5" }
jacksonYaml = { module = "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", version = "2.19.2"}
jacksonKotlin = { module = "com.fasterxml.jackson.module:jackson-module-kotlin", version = "2.19.2"}
[bundles]
androidInstrumentedTest = ["supportTestRunner", "espressoCore", "androidJUnit"]
androidTest = ["androidJUnit", "robolectric"]
jvmTest = ["kotlinTest", "junit", "truth", "commonsCsv"]
[plugins]
kotlinJvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
kotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
kotlinDokka = { id = "org.jetbrains.dokka", version = "2.0.0" }
pluginPortalPublish = { id = "com.gradle.plugin-publish", version = "1.3.1" }
mavenPublish = { id = "com.vanniktech.maven.publish", version = "0.34.0" }
versionCheck = { id = "com.github.ben-manes.versions", version = "0.52.0" }
androidApp = { id = "com.android.application", version.ref = "androidGradlePlugin"}
androidLibrary = { id = "com.android.library", version.ref = "androidGradlePlugin"}