-
Notifications
You must be signed in to change notification settings - Fork 328
Expand file tree
/
Copy pathext_settings.gradle
More file actions
29 lines (27 loc) · 1.2 KB
/
ext_settings.gradle
File metadata and controls
29 lines (27 loc) · 1.2 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
// keep that file in sync with ext_settings.gradle in the internal big repository
ext {
gradleVersion = '8.8.1'
junitVersion = '4.12'
kotlin_version = '2.0.21'
gsonVersion = '2.8.5'
findBugsVersion = '3.0.1'
okhttpVersion = '2.7.5'
ottoVersion = '1.3.4'
workManagerVersion = '2.7.1'
appCompatVersion = '1.7.0'
materialVersion = '1.12.0'
wireVersion = '1.6.1'
constraintLayoutVersion = '2.2.0'
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'
// latest version is 1.4.3 but that changes the api somehow
sqldelight_version = '2.0.0'
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 : ''
}