-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.gradle
More file actions
38 lines (35 loc) · 1.28 KB
/
config.gradle
File metadata and controls
38 lines (35 loc) · 1.28 KB
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 {
androidVersion = [
compileSdkVersion: 30,
buildToolsVersion: "30.0.0",
applicationId : "com.himi.app",
minSdkVersion : 16,
targetSdkVersion : 30,
versionCode : 1,
versionName : "1.0",
]
dependenciesVersion = [
"appcompat" : 'androidx.appcompat:appcompat:1.2.0',
"constraintlayout" : 'androidx.constraintlayout:constraintlayout:2.0.4',
"junit" : 'junit:junit:4.12',
"androidxtest" : 'androidx.test.ext:junit:1.1.1',
"androidxtestespresso": 'androidx.test.espresso:espresso-core:3.3.0',
]
appId = [
module_main : "com.himi.module_main",
module_login: "com.himi.module_login"
]
//正式环境测试环境服务器地址
url = [
"debug" : "https://www.baidu.com",
"release": "https://www.google.com"
]
deps = [
arouter_api : "com.alibaba:arouter-api:1.5.1",
arouter_compiler: "com.alibaba:arouter-compiler:1.5.1",
multidex : "androidx.multidex:multidex:2.0.1",
gson:"com.google.code.gson:gson:2.8.6"
]
//isRelease = true 为正式环境地址
isRelease = true
}