build.gradle
1.32 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
def isApp = !isPlayerModule.toBoolean()
if (isApp){
apply plugin: 'com.android.application'
}else {
apply plugin:'com.android.library'
}
apply plugin: 'com.kezong.fat-aar'
android {
compileSdkVersion var.compileSdkVersion
buildToolsVersion var.buildToolsVersion
defaultConfig {
minSdkVersion var.minSdkVersion
targetSdkVersion var.targetSdkVersion
versionCode var.versionCode
versionName var.versionName
if (isApp) {
applicationId "cn.com.wd.dss.player"
}
consumerProguardFiles "consumer-rules.pro"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
//application or library 引用不同的AndroidManifest.xml
sourceSets {
main {
if (isApp) {
manifest.srcFile 'src/main/AndroidManifest.xml'
} else {
manifest.srcFile 'src/main/manifest/AndroidManifest.xml'
}
}
}
}
dependencies {
api project(path: ':wdkit')
api project(path: ':wdnetwork')
api project(path: ':wdinterface')
}