-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathversions.gradle
More file actions
32 lines (27 loc) · 901 Bytes
/
Copy pathversions.gradle
File metadata and controls
32 lines (27 loc) · 901 Bytes
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
ext {
majorVersion = 0
minVersion = 0
patchVersion = 2
// libraryVersionName = "${majorVersion}.${minVersion}.${patchVersion}"
libraryVersionName = "1.0.0-alpha${patchVersion}"
libraryVersionCode = majorVersion * 1000 + minVersion * 100 + patchVersion
javaVersion = JavaVersion.VERSION_11
androidCompileSdkVersion = 31
androidMinSdkVersion = 1
composeVersion = '1.1.1'
activityComposeVersion = '1.4.0'
lifecycleViewModelComposeVersion = "2.5.0-alpha03"
coreVersion = '1.7.0'
gradlePluginVersion = '7.1.1'
kotlinVersion = '1.6.10'
coroutinesVersion = '1.6.0'
hiltVersion = '2.40.5'
junitVersion = '4.13.2'
testRunnerVersion = '1.4.0'
testRulesVersion = '1.4.0'
testCoreVersion = '1.4.0'
gradleNexusVersion = '1.1.0'
assertjVersion = '3.21.0'
robolectricVersion = '4.5.1'
rxJavaVersion = '3.1.3'
}