-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
69 lines (57 loc) · 2.02 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
// 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.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
//添加公共配置
ext {
signingConfig = [
storePassword: "",
keyAlias : "",
keyPassword : ""
]
android = [
compileSdkVersion: 25,
buildToolsVersion: "25.0.0",
minSdkVersion : 14,
targetSdkVersion : 22,
//版本格式0.0.0.000
versionCode : 1,
versionName : "1.1",
]
depsVersion = [
support: "25.3.1"
]
dependencies = [
// ------------- Android -------------
supportV4 : "com.android.support:support-v4:${depsVersion.support}",
appcompatV7 : "com.android.support:appcompat-v7:${depsVersion.support}",
design : "com.android.support:design:${depsVersion.support}",
cardview : "com.android.support:cardview-v7:${depsVersion.support}",
recyclerview : "com.android.support:recyclerview-v7:${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'
]
}