-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
90 lines (68 loc) · 2.04 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
83
84
85
86
87
88
89
90
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
// Android Support
androidPluginVersion = '3.0.1'
androidSupportVersion = '27.0.2'
androidSupportTestVersion = '1.0.1'
multidexVersion = '1.0.3'
// Lombok
lombokVersion = '1.16.16'
// Dagger
daggerVersion = '2.8'
// ButterKnife
butterKnifeVersion = '8.4.0'
// APT
neenbedanktVersion = '1.8'
// ReactiveX
rxAndroidVersion = '1.2.1'
rxJavaVersion = '1.2.4'
rxKotlinVersion = '0.60.0'
rxProguardRulesVersion = '1.2.4.0'
// Retrofit
retrofitVersion = '2.1.0'
okHttpVersion = '3.5.0'
// Parceler
parcelerVersion = '1.1.6'
// Unit Test
jUnitVersion = '4.12'
mockitoVersion = '2.5.4'
// Instrumentation Test
espressoVersion = '3.0.1'
// JodaTime
jodaTimeVersion = '2.9.7'
// One Signal
oneSignalVersion = '3.8.1'
googleGcmVersion = '11.8.0'
// App Intro
appIntroVersion = 'v4.2.3'
// BNV
bottomNavigationViewVersion = '1.2.4'
// Glide
glideVersion = '3.7.0'
}
repositories {
maven { url 'https://maven.fabric.io/public' }
google()
jcenter()
}
dependencies {
classpath("com.android.tools.build:gradle:${androidPluginVersion}")
classpath 'com.google.gms:google-services:3.0.0'
// APT
classpath("com.neenbedankt.gradle.plugins:android-apt:${neenbedanktVersion}")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
maven { url 'https://maven.fabric.io/public' }
maven { url "https://jitpack.io" }
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}