Files
mendian/common.gradle
2025-12-26 15:36:42 +08:00

39 lines
1.2 KiB
Groovy
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//用来存放应用中的所有配置变量统一管理而不再是每个moudle里都自己写一份修改起来更加的方便
ext {
android = [compileSdkVersion : 34,
buildToolsVersion : '30.0.2',
applicationId : 'com.fanghoo.mendian',
minSdkVersion : 19,
targetSdkVersion : 34,
versionCode : 148,
versionName : '1.4.8',
multiDexEnabled : true,//方法超出64K
manifestPlaceholders : [UMENG_CHANNEL_VALUE: "Umeng"]
]
dependence = [
'libOkhttp' : 'com.squareup.okhttp3:okhttp:3.11.0',
'libGson' : 'com.google.code.gson:gson:2.8.5',
'logger' : 'com.orhanobut:logger:2.2.0',
'eventbus' : 'org.greenrobot:eventbus:3.1.1'
]
cfgs = [
//open version control
androidSupportVersion: "27.0.2",
glide : "4.5.0",
rxjava : "2.0.5",
rxandroid : "2.0.1"
]
compileVersion = 34
buildVersion = '30.0.2'
}