-
Notifications
You must be signed in to change notification settings - Fork 384
/
Copy pathVersions.kt
66 lines (61 loc) · 2.13 KB
/
Versions.kt
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
object Versions {
const val commonsValidator = "1.8.0"
const val jodaTime = "2.12.5"
const val junit = "5.10.0"
const val jvmTarget = "17"
const val konsist = "0.13.0"
const val kotlin = "1.9.22"
const val kotlinCompilerExtensionVersion = "1.5.10"
const val kotlinx = "1.7.3"
const val leakCanary = "2.12"
const val mockk = "1.13.8"
const val mockWebserver = "4.12.0"
const val turbine = "1.0.0"
const val billingClient = "6.0.1"
object Android {
const val compileSdkVersion = 34
const val junit = "1.4.0"
const val minSdkVersion = 26
const val targetSdkVersion = 34
const val volley = "1.2.1"
}
object AndroidX {
const val appcompat = "1.6.1"
const val coreKtx = "1.12.0"
const val espresso = "3.5.1"
const val lifecycle = "2.7.0"
const val fragment = "1.6.1"
const val test = "1.5.0"
const val testMonitor = "1.6.1"
const val testOrchestrator = "1.4.2"
const val testRunner = "1.5.2"
const val uiautomator = "2.2.0"
}
object Compose {
const val destinations = "1.10.1"
const val base = "1.6.2"
const val constrainLayout = "1.0.1"
const val foundation = base
const val material3 = "1.2.0"
}
object Plugin {
// The androidAapt plugin version must be in sync with the android plugin version.
// Required for Gradle metadata verification to work properly, see:
// https://github.com/gradle/gradle/issues/19228
const val android = "8.2.1"
const val androidAapt = "$android-10154469"
const val playPublisher = "3.8.4"
const val dependencyCheck = "8.3.1"
const val detekt = "1.23.4"
const val gradleVersions = "0.47.0"
const val junit5 = "1.10.0.0"
const val ktfmt = "0.16.0"
// Ksp version is linked with kotlin version, find matching release here:
// https://github.com/google/ksp/releases
const val ksp = "${kotlin}-1.0.17"
}
object Koin {
const val base = "3.5.3"
const val compose = "3.5.3"
}
}