-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxxl.gradle
41 lines (32 loc) · 1.16 KB
/
xxl.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
// Groovy 语法
ext {
username = "xxl"
//是否正式环境
isRelease = false
url = [
"debug" : "https://www.test.com",
"release": "https://www.baidu.com"
]
//map 存储
androidId = [
compileSdkVersion : 29,
minSdkVersion : 21,
targetSdkVersion : 29,
versionCode : 1,
versionName : "1.0",
testInstrumentationRunner: "androidx.test.runner.AndroidJUnitRunner"
]
appId = [
applicationId: "com.xxl.myapplication",
loginId : "com.xxl.login",
businessId : "com.xxl.business",
]
dependenciesId = [
implementation: 'androidx.appcompat:appcompat:1.0.2',
implementation: 'com.google.android.material:material:1.0.0',
implementation: 'androidx.constraintlayout:constraintlayout:1.1.3',
implementation: 'androidx.navigation:navigation-fragment:2.0.0',
implementation: 'androidx.navigation:navigation-ui:2.0.0',
implementation: 'androidx.lifecycle:lifecycle-extensions:2.0.0'
]
}