-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
build.gradle
47 lines (40 loc) · 1.18 KB
/
build.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
apply plugin: 'com.android.library'
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
// defaultPublishConfig 'release'
// publishNonDefault true
// productFlavors {
// library {
// /* This strange empty flavour is actually needed
// for the below to be successful
// debugCompile project(path: ':common', configuration: "libraryDebug")
// releaseCompile project(path: ':common', configuration: "libraryRelease")
// */
// }
// }
dataBinding {
enabled = true
}
lintOptions {
abortOnError false
}
}
dependencies {
api rootProject.ext.libSupportDesign
//api rootProject.ext.libSupportV7
api rootProject.ext.libGoogleGuava
compile project(path: ':qbaselib')
}