-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
66 lines (59 loc) · 2.09 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply plugin: "com.github.ben-manes.versions"
buildscript {
ext.versions = [
'buildTools' : '28.0.3',
'compileSdk' : 28,
'minSdk' : 21,
'targetSdk' : 28,
'kotlin' : '1.3.50',
'material' : '1.1.0-alpha10',
'activity' : '1.1.0-alpha03',
'appCompat' : '1.1.0',
'constraintLayout': '2.0.0-beta2',
'core' : '1.2.0-alpha04',
'fragment' : '1.2.0-alpha04',
'recyclerView' : '1.1.0-beta04',
'firebaseCore' : '17.2.0',
'progressButton' : '1.0.3',
'htmlTextView' : '3.6',
'dagger' : '2.24',
'rxJava' : '2.2.12',
'rxKotlin' : '2.4.0',
'rxAndroid' : '2.1.1',
'retrofit' : '2.6.2',
'okhttp' : '4.2.0',
'moshi' : '1.8.0',
'cicerone' : '5.0.0',
'glide' : '4.10.0',
'threeTenAbp' : '1.2.1',
'anko' : '0.10.8',
'ktlint' : '0.34.2',
'timber' : '4.7.1',
'crashlytics' : '2.10.1',
'stetho' : '1.5.1',
'leakCanary' : '2.0-beta-3'
]
repositories {
google()
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.25.0'
classpath 'com.google.gms:google-services:4.3.2'
classpath 'io.fabric.tools:gradle:1.31.1'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}