-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
64 lines (52 loc) · 1.46 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
// SDK and tools
minSdkVersion = 15
targetSdkVersion = 24
compileSdkVersion = 24
buildToolsVersion = "24.0.2"
leakCanaryVersion = "1.4"
// App dependencies
supportLibraryVersion = "24.2.1"
rxJavaVersion = "1.1.9"
rxJavaProguardRulesVersion = "$rxJavaVersion.0"
rxAndroidVersion = "1.2.0"
rxKotlinVersion = "0.55.0"
rxPreferencesVersion = "1.0.2"
daggerVersion = "2.6"
javaAnnotationsVersion = "1.0"
timberVersion = "4.1.2"
dexterVersion = "2.3.1"
crashlyticsVersion = "2.6.2@aar"
answersVersion = "1.3.9@aar"
showcaseViewVersion = "5.4.3"
aboutLibsVersion = "5.7.3@aar"
issueReporterVersion = "1aa5796b76"
circularSeekbarVersion = "1.1.3"
numberMorphingVersion = "v1.0.0"
// Testing
jUnitVersion = "4.12"
mockitoVersion = "2.0.87-beta"
hamcrestVersion = "1.3"
androidTestRunnerVersion = "0.5"
espressoVersion = "2.2.2"
}