-
Notifications
You must be signed in to change notification settings - Fork 14
/
config-aar.gradle
60 lines (52 loc) · 1.66 KB
/
config-aar.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
* ************************************************************
* 文件:config-aar.gradle 模块:component 项目:component
* 当前修改时间:2019年04月23日 18:23:20
* 上次修改时间:2019年04月13日 08:44:03
* 作者:Cody.yi https://github.com/codyer
*
* 描述:component
* Copyright (c) 2019
* ************************************************************
*/
apply plugin: 'com.android.library'
if (isLocalMaven) {
apply from: "${project.rootDir}/config-local-maven.gradle"
} else {
apply plugin: 'com.github.dcendents.android-maven'
group = 'com.github.codyer'
}
repositories {
google()
mavenCentral()
jcenter()
}
android {
compileSdkVersion rootProject.ext.compileSdkVersion
dataBinding {
enabled true
}
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode rootProject.ext.versionCode
versionName rootProject.ext.versionName
// dex突破65535的限制
multiDexEnabled true
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
if (!isLocalMaven) {//本地仓库不需要注释
// 改变版本的时候先关闭文档输出编译成功,然后再打开编译文档输出,不然会依赖出错
apply from: "${project.rootDir}/config-doc.gradle"
}
}