-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathbuild.gradle
41 lines (36 loc) · 907 Bytes
/
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
apply plugin: 'com.android.application'
apply plugin: 'me.tatarka.retrolambda'
buildscript {
repositories {
mavenCentral()
}
}
repositories {
mavenCentral()
}
android {
compileSdkVersion 24
buildToolsVersion "24.0.3"
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
defaultConfig {
applicationId "com.annimon.java8streamexample"
minSdkVersion 9
targetSdkVersion 24
versionCode 3
versionName "1.1.4"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.annimon:stream:1.1.4'
compile 'com.android.support:appcompat-v7:24.2.1'
}