-
Notifications
You must be signed in to change notification settings - Fork 323
/
ext_settings.gradle
41 lines (39 loc) · 1.59 KB
/
ext_settings.gradle
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
// keep that file in sync with ext_settings.gradle in the internal big repository
ext {
guavaVersion = '23.0-android'
gradleVersion = '4.1.1'
androidCompileSdkVersion = 33
androidSdkBuildVersion = '30.0.3'
androidMinSdkVersion = 19
androidTargetSdkVersion = 33
junitVersion = '4.12'
kotlin_version = '1.3.72'
coroutines_version = "1.3.0-M2"
lifecycle_version = "2.1.0"
gsonVersion = '2.8.5'
findBugsVersion = '3.0.1'
okhttpVersion = '2.7.5'
ottoVersion = '1.3.4'
recyclerViewVersion = '1.2.1'
workManagerVersion = '2.7.1'
appCompatVersion = '1.1.0'
xLegacyVersion = '1.0.0'
materialVersion = '1.1.0-alpha10'
wireVersion = '1.6.1'
protoBufVersion = '3.6.1'
constraintLayoutVersion = '1.1.3'
kotlinCoroutinesVersion = '1.3.2'
httpClientJacksonVersion = '1.19.0'
jacksonAnnotationsVersion = '2.9.5'
// 2.9.9. was downgraded to 2.9.6 due to runtime crash "NoSuchMethodError" on android api 23
// the solution got from https://github.com/FasterXML/jackson-module-kotlin/issues/218#issuecomment-470900330
jacksonDatabindVersion = '2.9.6'
nav_version = "2.3.5"
// latest version is 1.4.3 but that changes the api somehow
sqldelight_version = '1.2.1'
projectRootDir = project.rootDir.getPath()
commonDebugKeystore = project.file('debug.keystore')
// this is needed for the /public folder. It needs different paths depending if it gets compiled
// on its own or is included as a submodule in the whole repository
includePrefix = project.hasProperty("includePrefix") ? includePrefix : ''
}