-
Notifications
You must be signed in to change notification settings - Fork 95
/
config.gradle
49 lines (40 loc) · 1.52 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
41
42
43
44
45
46
47
48
49
/**
* 全局统一配置
*/
ext {
/**
* 版本统一管理
*/
versions = [
versionCode : 137, //版本号
versionName : "1.3.7", //版本名称
compileSdkVersion: 29,
minSdkVersion : 14,
targetSdkVersion : 28,
]
appId = [
"app": "com.maning.mnimagebrowser",
]
dependenciesGoogle = [
annotation : 'androidx.annotation:annotation:1.1.0',
supportv4 : 'androidx.legacy:legacy-support-v4:1.0.0',
appcompat : 'androidx.appcompat:appcompat:1.2.0',
design : 'com.google.android.material:material:1.0.0',
recyclerView : 'androidx.recyclerview:recyclerview:1.0.0',
constraintlayout: 'androidx.constraintlayout:constraintlayout:1.1.3',
multidex : 'androidx.multidex:multidex:2.0.0',
]
dependenciesOther = [
"picasso" : "com.squareup.picasso:picasso:2.71828",
"glide" : "com.github.bumptech.glide:glide:4.11.0",
"fresco" : "com.facebook.fresco:fresco:2.2.0",
"mnprogresshud": "com.github.maning0303:MNProgressHUD:V1.1.8X",
"permission" : "com.yanzhenjie.permission:x:2.0.1",
]
dependenciesCompiler = [
"glide_compiler": "com.github.bumptech.glide:compiler:4.11.0",
]
dependenciesDebug = [
"leakcanary": "com.squareup.leakcanary:leakcanary-android:2.5",
]
}