-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.gradle
40 lines (34 loc) · 1.35 KB
/
config.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
ext {
signingConfig = [
storePassword : "xxx",
keyAlias : "xxx",
keyPassword : "xxx"
]
android = [
compileSdkVersion : 25,
buildToolsVersion : "25.0.2",
minSdkVersion : 19,
targetSdkVersion : 25,
versionCode : 1,
versionName : "1.3.6"
]
depsVersion = [
support : "25.1.0"
]
deps = [
// ------------- Android -------------
supportV4 : "com.android.support:support-v4:${depsVersion.support}",
appcompatV7 : "com.android.support:appcompat-v7:${depsVersion.support}",
design : "com.android.support:design:${depsVersion.support}",
// ------------- RxAndroid -------------
rxAndroid : 'io.reactivex:rxandroid:1.2.1',
rxJava : 'io.reactivex:rxjava:1.1.6',
// ------------- LeakCanary -------------
leakcanaryAndroid : 'com.squareup.leakcanary:leakcanary-android:1.5',
leakcanaryAndroidNoOp : 'com.squareup.leakcanary:leakcanary-android-no-op:1.5',
// ------------- Test dependencies -------------
junit : 'junit:junit:4.12',
truth : 'com.google.truth:truth:0.29',
robolectric : 'org.robolectric:robolectric:3.1.2'
]
}