forked from xujiaji/HaiNaBaiChuan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
62 lines (56 loc) · 1.58 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
// 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.2'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url "https://raw.github.com/bmob/bmob-android-sdk/master" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
//固定一个地方定义版本
ext{
minSdkVersion = 21
targetSdkVersion = 24
compileSdkVersion = 24
buildToolsVersion = '25'
//依赖库版本
supportLibraryVersion = '25.0.0'
junitVersion='4.12'
rxandroidVersion='1.2.1'
rxjavaVersion='1.1.6'
gsonVersion='2.8.1'
reboundVersion='0.3.5'
bannerVersion='1.4.2'
kenburnsviewVersion='1.0.7'
overscrollVersion='1.0.3'
butterknifeVersion='8.4.0'
bmobVersion='3.5.5'
rippleVersion='1.0.2'
legacyVersion='1.0'
glideVersion='3.7.0'
BaseRecyclerViewAdapterHelperVersion='2.4.5'
eventBusVersion='3.0.0'
galleryfinalVersion='1.4.8.7'
googleprogressbarVersion='1.1.0'
bottomsheetVersion='1.5.2'
facebookVersion='4.17.0'
materialdatetimepicker='2.5.0'
editVersion='0.0.3'
leakcanaryVersion='1.5'
crashwoodpeckerVersion='2.1.1'
retrofit2Version='2.1.0'
}