forked from myjoybar/Android-Router
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.gradle
More file actions
executable file
·37 lines (29 loc) · 942 Bytes
/
config.gradle
File metadata and controls
executable file
·37 lines (29 loc) · 942 Bytes
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
ext {
android = [
applicationId:"com.joybar.androidrouter",
compileSdkVersion: 26,
targetSdkVersion : 26,
minSdkVersion : 14,
buildToolsVersion: "26.0.2",
versionCode:6,
versionName:"1.2.1"
]
dependencies = [
supportv4 : "com.android.support:support-v4:26.1.0",
supportv7 : "com.android.support:appcompat-v7:26.1.0",
recyclerviewv7 : 'com.android.support:recyclerview-v7:26.1.0',
constraintlayout : 'com.android.support.constraint:constraint-layout:1.0.2'
]
staging = [
versionCode:348,
versionName:'"3.0.4"',
]
production = [
versionCode:190,
versionName:'"3.0.3"'
]
isDebugType = false //module
isPrintLog= false
}
project.ext.set("is_debug_type", "false") //主APP
project.ext.set("is_print_log", "false")