forked from mycelium-com/wallet-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_settings.gradle
39 lines (37 loc) · 1.5 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
// keep that file in sync with ext_settings.gradle in the internal big repository
ext {
guavaVersion = '23.0-android'
gradleVersion = '3.6.1'
androidCompileSdkVersion = 29
androidSdkBuildVersion = '29.0.3'
androidMinSdkVersion = 19
androidTargetSdkVersion = 29
junitVersion = '4.12'
kotlin_version = '1.3.61'
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.1.0-beta04'
workManagerVersion = '2.2.0'
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.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 : ''
}