-
Notifications
You must be signed in to change notification settings - Fork 563
Expand file tree
/
Copy pathbuild.gradle
More file actions
52 lines (44 loc) · 1.37 KB
/
build.gradle
File metadata and controls
52 lines (44 loc) · 1.37 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
apply plugin: 'com.dd.comgradle'
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "com.luojilab.androidcomponent"
minSdkVersion 15
targetSdkVersion 14
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
javaCompileOptions {
annotationProcessorOptions {
arguments = [host: "app"]
}
}
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
signingConfig signingConfigs.debug
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}
}
dependencies {
// compile project(':componentservice')
compile project(':ApiComponentService')
annotationProcessor project(':router-anno-compiler')
}
combuild {
applicationName = 'com.luojilab.componentdemo.application.AppApplication'
isRegisterCompoAuto = true
}