-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
63 lines (57 loc) · 2.02 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.versions = [
'kotlin' : '1.3.10',
'rx_kotlin' : '2.1.0',
'rx_android' : '2.1.0',
'rx_java' : '2.1.10',
'mockito_kotlin' : '1.5.0',
'retrofit' : '2.4.0',
'okhttp' : '3.10.0',
'androidx' : '1.0.0',
'material' : '1.0.0',
'constraintlayout' :'1.1.3',
'dagger' : '2.18',
'junit' : '4.12',
'robolectric' : '3.8',
'test_core' : '1.0.0',
'test_runner' : '1.1.0',
'test_rules' : '1.1.0',
'test_ext_junit' : '1.0.0',
'test_ext_truth' : '1.0.0',
'truth' : '0.42',
'espresso' : '3.1.0',
'hamcrest' : '1.3',
'jacoco' : '0.8.1',
'coveralls': '2.8.2',
'google_services': '4.2.0',
'firebase_core': '16.0.9',
'firebase_auth': '17.0.0',
'firebase_crashlytics_gradle' : '2.1.1',
'firebase_crashlytics' : '17.0.1',
'play_services_auth': '16.0.1'
]
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "org.kt3k.gradle.plugin:coveralls-gradle-plugin:${versions.coveralls}"
classpath "com.google.gms:google-services:${versions.google_services}"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:${versions.kotlin}"
classpath "com.google.firebase:firebase-crashlytics-gradle:${versions.firebase_crashlytics_gradle}"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}