-
Notifications
You must be signed in to change notification settings - Fork 8
/
config.gradle
48 lines (40 loc) · 1.72 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
ext {
appConfig = [
versionCode : 100,
versionName : "1.0.0",
applicationId: "com.ckr.bugly",
]
androidConfig = [
compileSdkVersion: 27,
minSdkVersion : 16,
targetSdkVersion : 27,
]
upgradeConfig = [
versionCode : 107,
versionName : "1.0.7",
publishVersion: "1.0.7"
]
supportVersion = "27.1.1"
constraintLayout = "1.1.3"
tinker = "1.9.9"
tinkerSupport = "1.1.5"
walle = "1.1.6"
okhttp = "3.11.0"
enableTinkerSupport = true
applyConfig = [
appcompat_v7 : "com.android.support:appcompat-v7:${supportVersion}",
support_v4 : "com.android.support:support-v4:${supportVersion}",
constraint_layout : "com.android.support.constraint:constraint-layout:${constraintLayout}",
walle : "com.meituan.android.walle:library:${walle}",
//tinker
tinker_support : "com.tencent.bugly:tinker-support:${tinkerSupport}",
tinker_lib : "com.tencent.tinker:tinker-android-lib:${tinker}",
tinker_anno_processor : "com.tencent.tinker:tinker-android-anno:${tinker}",
tinker_anno : "com.tencent.tinker:tinker-android-anno:${tinker}",
// bugly
bugly_crashreport : "com.tencent.bugly:crashreport_upgrade:latest.release",
bugly_nativecrashreport: "com.tencent.bugly:nativecrashreport:latest.release",
okhttp : "com.squareup.okhttp3:okhttp:${okhttp}",
app_upgrade : "ckrjfrog.Upgrade:AppUpgrade:${upgradeConfig.publishVersion}",
]
}