From c6bc25a189392cf6465328afe0302581a49eff37 Mon Sep 17 00:00:00 2001 From: mahdihijazi Date: Sun, 17 Dec 2017 16:52:19 +0100 Subject: [PATCH] Enable Java 8 features in Dolphin --- Source/Android/app/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Source/Android/app/build.gradle b/Source/Android/app/build.gradle index 3dc43ee8b0..857eef27f6 100644 --- a/Source/Android/app/build.gradle +++ b/Source/Android/app/build.gradle @@ -4,6 +4,11 @@ android { compileSdkVersion 26 buildToolsVersion '26.0.2' + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + lintOptions { // This is important as it will run lint but not abort on error // Lint has some overly obnoxious "errors" that should really be warnings