-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
56 lines (48 loc) · 1.14 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
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.0'
}
}
allprojects {
repositories {
jcenter()
google()
}
}
// This block encapsulates custom properties and makes them available to all
// modules in the project.
ext {
//sdk and versions
compileSdkVersion = 26
buildToolsVersion = '26.0.2'
minSdkVersion = 19
targetSdkVersion = 25
versionCode = 1
versionName = '1.0'
//dependencies
supportLib = '27.0.2'
fabricGradlePlugin = '1.22.2'
espresso = '2.2.2'
dagger = '2.7'
junit = '4.12'
butterknife = '8.5.1'
universalpickerdialog = '0.1.0'
lovelydialog = '1.0.7'
smileyrating = '1.6.5'
circleindicator = '1.2.2'
firebase = '11.6.2'
timber = '4.5.1'
crashlytics = '2.6.8'
gson = '2.8.0'
}
task clean(type: Delete) {
delete rootProject.buildDir
}