-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
51 lines (42 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
48
49
50
51
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'me.tatarka:gradle-retrolambda:3.2.5'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.6'
}
}
apply plugin: 'com.android.application'
apply plugin: 'me.tatarka.retrolambda'
apply plugin: 'android-apt'
android {
compileSdkVersion 'android-23'
buildToolsVersion '23.0.2'
defaultConfig {
applicationId 'com.example.anvil.countdone'
minSdkVersion 15
targetSdkVersion 23
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
abortOnError false
}
}
repositories {
mavenLocal()
jcenter()
maven{url='https://jitpack.io'}
}
dependencies {
compile 'com.android.support:support-annotations:+'
compile 'co.trikita:anvil-sdk15:0.3.1'
compile 'com.github.trikita:jedux:-SNAPSHOT'
apt 'org.immutables:value:2.1.14' // <-- for annotation processor
provided 'org.immutables:value:2.1.14' // <-- for annotation API
compile 'org.immutables:gson:2.1.14'
}