-
Notifications
You must be signed in to change notification settings - Fork 30
/
build.gradle
61 lines (56 loc) · 1.59 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.2.21'
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:3.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
jcenter()
maven { url 'https://maven.fabric.io/public' }
maven { url 'https://maven.google.com' }
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
// Sdk and tools
minSdkVersion = 21
targetSdkVersion = 27
compileSdkVersion = 27
buildToolsVersion = '27.0.2'
// App dependencies
daggerVersion = '2.14.1'
supportLibraryVersion = '27.0.2'
guavaVersion = '23.4'
junitVersion = '4.12'
mockitoVersion = '1.10.19'
powerMockito = '1.6.4'
hamcrestVersion = '1.3'
runnerVersion = '0.5'
rulesVersion = '0.5'
espressoVersion = '2.2.2'
playServicesVersion = '11.8.0'
stethoVersion = '1.5.0'
butterKnifeVersion = '8.8.1'
firebaseJobDispatcherVersion = '0.7.0'
circleImageVersion = '2.2.0'
constraintLayoutVersion = '1.0.2'
okHttpVersion = '3.9.1'
picassoVersion = '2.5.2'
firebaseUiVersion = '3.1.3'
glideVersion = '4.4.0'
archcVersion = '1.0.0'
timberVersion = '4.6.0'
}