Skip to content

Commit 5644fc6

Browse files
authored
Update build.gradle
I was facing no lambda support in source 7. To fix it I have added it.
1 parent 2e14e6b commit 5644fc6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

android/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ android {
5959
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
6060
}
6161
}
62+
compileOptions {
63+
sourceCompatibility JavaVersion.VERSION_1_8
64+
targetCompatibility JavaVersion.VERSION_1_8
65+
}
6266
lintOptions {
6367
abortOnError false
6468
}
@@ -157,4 +161,4 @@ afterEvaluate { project ->
157161
}
158162
}
159163
}
160-
}
164+
}

0 commit comments

Comments
 (0)