File tree Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://downloads .gradle.org/distributions/gradle-2.10 -all.zip
6
+ distributionUrl =https\://services .gradle.org/distributions/gradle-2.12 -all.zip
Original file line number Diff line number Diff line change 1
- apply plugin : ' com.android.application'
1
+ buildscript {
2
+ repositories {
3
+ mavenCentral()
4
+ }
5
+
6
+ dependencies {
7
+ classpath ' me.tatarka:gradle-retrolambda:3.2.5'
8
+ }
9
+ }
2
10
3
11
repositories {
4
12
jcenter()
@@ -10,6 +18,9 @@ repositories {
10
18
}
11
19
}
12
20
21
+ apply plugin : ' com.android.application'
22
+ apply plugin : ' me.tatarka.retrolambda'
23
+
13
24
configurations {
14
25
compile. exclude group : ' stax'
15
26
compile. exclude group : ' xpp3'
@@ -25,6 +36,13 @@ android {
25
36
targetSdkVersion 19
26
37
multiDexEnabled false
27
38
}
39
+ compileOptions {
40
+ sourceCompatibility JavaVersion . VERSION_1_8
41
+ targetCompatibility JavaVersion . VERSION_1_8
42
+ }
43
+ retrolambda {
44
+ jdk " /Library/Java/JavaVirtualMachines/jdk1.8.0_77.jdk/Contents/Home"
45
+ }
28
46
dexOptions {
29
47
preDexLibraries = false
30
48
incremental false
@@ -129,4 +147,5 @@ dependencies {
129
147
compile (' com.github.worker8:tourguide:1.0.17-SNAPSHOT@aar' ){
130
148
transitive= true
131
149
}
150
+ compile ' io.reactivex:rxjava:1.1.2'
132
151
}
You can’t perform that action at this time.
0 commit comments