-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
89 lines (64 loc) · 1.6 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.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.0.0'
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
//build Tool version
buildToolsVersion = "25.0.3"
//compiled sdk Version
compileSdkVersion = 25
//target sdk Version
targetSdkVersion = 25
//support version
supportVersion = '25.3.1'
//guava Version
guavaVersion = '20.0'
//retrofit
retrofitVersion = '2.2.0'
//gsonVersion
gsonVersion = "2.6.1"
//interceptor version
inteceptorVersion = "3.6.0"
//glide version
glideVersion = "3.7.0"
//Firebase UI Version
firebaseUIVersion = '1.2.0'
//Firebase Version
firebaseVersion = '10.2.4'
//Toasty
toastyVersion = '1.1.2'
//guava
guavaVersion = '20.0'
//timber
timberVersion = '4.5.1'
//rxJava
rxJavaVersion = '2.0.9'
//rxAndroid
rxAndroidVersion = '2.0.1'
//rxBinding
rxBindingVersion = '2.0.0'
//geoFire
geoFireVersion = '2.1.1'
//Material Dialog Version
materialDialogVersion = '0.9.4.4'
//CircleImageView
circleImageVersion = "2.1.0"
//playServices Version
playServicesVersion = '10.2.4'
}