-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathconfig.gradle
24 lines (23 loc) · 1 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
ext {
android = [
compileSdkVersion : 23,
buildToolsVersion : "23.0.3",
minSdkVersion : 15,
targetSdkVersion : 23,
androidSupportSdkVersion: "23.4.0",
]
dependencies = [
arouterapi : 'com.alibaba:arouter-api:1.2.1',
aroutercompiler: 'com.alibaba:arouter-compiler:1.1.2',
supportdesign : 'com.android.support:design:23.4.0',
recyclerviewv7 : 'com.android.support:recyclerview-v7:23.4.0',
supportv4 : 'com.android.support:support-v4:23.4.0',
appcompatv7 : 'com.android.support:appcompat-v7:23.4.0',
//分包
multidex : 'com.android.support:multidex:1.0.1',
]
//home是否是作为模块,true的时候是,false的时候可以独立运行,不想改了ORZ
isMouleDebugHome = true;
//module1是否是作为模块,true的时候是,false的时候可以独立运行
isModule1Debug = true;
}