-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle
46 lines (38 loc) · 1.01 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.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.jedux.todo'
minSdkVersion 19
targetSdkVersion 23
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
repositories {
mavenLocal()
jcenter()
maven { url = 'https://jitpack.io/' }
}
dependencies {
compile 'co.trikita:anvil-sdk19:0.3.6'
compile 'com.github.trikita:jedux:-SNAPSHOT'
compile 'org.immutables:gson:2.1.14'
apt 'org.immutables:value:2.1.14'
provided 'org.immutables:value:2.1.14'
}