-
Notifications
You must be signed in to change notification settings - Fork 94
/
build.gradle
61 lines (51 loc) · 1.38 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'me.tatarka:gradle-retrolambda:3.2.5'
}
}
apply plugin: 'com.android.application'
apply plugin: 'me.tatarka.retrolambda'
android {
compileSdkVersion 'android-25'
buildToolsVersion '25.0.0'
defaultConfig {
minSdkVersion 15
targetSdkVersion 25
versionCode 19
versionName '3.9'
}
signingConfigs {
release
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard.pro'
signingConfig signingConfigs.release
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
abortOnError false
}
}
repositories {
jcenter()
maven { url 'https://jitpack.io/' }
}
dependencies {
compile 'com.github.trikita:jedux:-SNAPSHOT'
compile 'com.github.trikita:promote:-SNAPSHOT'
compile 'co.trikita:anvil-sdk15:0.3.1'
compile 'org.immutables:gson:2.1.14'
annotationProcessor 'org.immutables:value:2.1.14'
provided 'org.immutables:value:2.1.14'
}
apply from: 'https://raw.github.com/trikita/gradle-android-signing/master/gradle-android-signing.gradle'