forked from thunderbird/thunderbird-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
82 lines (74 loc) · 2.45 KB
/
build.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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
buildscript {
ext {
buildConfig = [
'compileSdk': 29,
'targetSdk': 28,
'minSdk': 21,
'buildTools': '29.0.3',
'robolectricSdk': 28
]
versions = [
'kotlin': '1.3.72',
'kotlinCoroutines': '1.3.5',
'androidxAppCompat': '1.2.0-beta01',
'androidxRecyclerView': '1.1.0',
'androidxLifecycle': '2.2.0',
'androidxAnnotation': '1.1.0',
'androidxNavigation': '2.2.2',
'androidxConstraintLayout': '1.1.3',
'androidxWorkManager': '2.3.4',
'androidxFragment': '1.2.4',
'androidxLocalBroadcastManager': '1.0.0',
'androidxCore': '1.2.0',
'androidxCardView': '1.0.0',
'androidxPreference': '1.1.1',
'materialComponents': '1.1.0',
'preferencesFix': '1.1.0',
'okio': '2.5.0',
'moshi': '1.9.2',
'timber': '4.7.1',
'koin': '2.1.5',
'commonsIo': '2.6',
'mime4j': '0.8.1',
'okhttp': '4.5.0',
'minidns': '0.3.4',
'androidxTestRunner': '1.1.1',
'junit': '4.13',
'robolectric': '4.2.1',
'mockito': '3.3.3',
'mockitoKotlin': '2.2.0',
'truth': '1.0.1'
]
javaVersion = JavaVersion.VERSION_1_8
kotlinJvmVersion = "1.8"
}
repositories {
mavenCentral()
google()
maven { url "https://plugins.gradle.org/m2/" }
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:${versions.kotlin}"
classpath "org.jlleitschuh.gradle:ktlint-gradle:9.2.1"
}
}
project.ext {
testCoverage = project.hasProperty('testCoverage')
}
subprojects {
repositories {
mavenCentral()
google()
jcenter()
maven { url 'https://jitpack.io' }
}
configurations.all {
resolutionStrategy {
// com.github.amlcurran.showcaseview:library depends on com.android.support:support-v4
force "androidx.legacy:legacy-support-v4:1.0.0"
}
}
}