-
Notifications
You must be signed in to change notification settings - Fork 17
/
build.gradle
47 lines (39 loc) · 1.06 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
47
apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
minSdkVersion 21
targetSdkVersion 25
versionCode 1
versionName "1.0"
testFunctionalTest false
testHandleProfiling false
testInstrumentationRunner "android.app.Instrumentation"
jackOptions {
enabled false
jackInProcess false
}
}
compileOptions {
incremental true
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
dataBinding {
enabled true
version '2.2.3'
addDefaultAdapters true
}
}
dependencies {
compile('com.android.support:appcompat-v7:25.2.0') {
transitive true
exclude(group: 'com.android.support', module: 'animated-vector-drawable')
}
compile(group: 'com.android.support', name: 'recyclerview-v7', version: '25.2.0') {
transitive false
}
compile project(':domain')
compile project(path: ':domain')
}