-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
76 lines (63 loc) · 1.92 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.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.3'
defaultConfig {
versionCode 1
versionName '1.0'
minSdkVersion 19
targetSdkVersion 23
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildTypes {
release {
minifyEnabled false
}
}
lintOptions {
abortOnError false
checkReleaseBuilds false
}
}
repositories {
mavenLocal()
jcenter()
maven { url 'https://jitpack.io/' }
maven { url 'https://repo.eclipse.org/content/repositories/paho-releases' }
}
dependencies {
compile 'com.android.support:support-v4:23.3.0'
compile 'com.android.support:recyclerview-v7:23.3.0'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:cardview-v7:23.3.0'
compile 'com.android.support:design:23.3.0'
compile 'com.github.trikita:jedux:-SNAPSHOT'
compile 'co.trikita:anvil-sdk15:0.3.6'
compile 'co.trikita:anvil-support-v4:0.3.6'
compile 'co.trikita:anvil-recyclerview-v7:0.3.6'
compile 'co.trikita:anvil-cardview-v7:0.3.6'
compile 'co.trikita:anvil-appcompat-v7:0.3.6'
compile 'co.trikita:anvil-design:0.3.6'
compile 'com.github.andrewoma.dexx:collection:0.6'
compile 'org.immutables:gson:2.1.14'
apt 'org.immutables:value:2.1.14'
provided 'org.immutables:value:2.1.14'
compile ('org.eclipse.paho:org.eclipse.paho.android.service:1.0.2') {
exclude module: 'support-v4'
}
}