-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.gradle
38 lines (33 loc) · 1.28 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
//全局参数
ext {
appConfig = [
versionCode : 100,
versionName : "1.0.0",
applicationId: "com.ckr.treeselector",
]
androidConfig = [
compileSdkVersion: 29,
minSdkVersion : 19,
targetSdkVersion : 29,
debuggable : true,
]
libConfig = [
versionCode: 100,
versionName: "1.0.0",
publishVersion: "1.0.0"
]
supportVersion = "28.0.0"
constraintLayout = "1.1.3"
butterknife = "8.8.1"
commonDepend = [
appcompat_v7 : "com.android.support:appcompat-v7:${supportVersion}",
recyclerview_v7 : "com.android.support:recyclerview-v7:${supportVersion}",
constraint_layout: "com.android.support.constraint:constraint-layout:${constraintLayout}",
design : "com.android.support:design:${supportVersion}",
annotations : "com.android.support:support-annotations:${supportVersion}",
// butterknife
butterknife : "com.jakewharton:butterknife:$butterknife",
butterknife_compiler : "com.jakewharton:butterknife-compiler:$butterknife",
pageView : 'ckrjfrog.Page:PageView:1.2.13',
]
}