From c349fb0e375fc01705e8e2c632f3e4bbc693cdd2 Mon Sep 17 00:00:00 2001 From: Eugene Date: Thu, 26 Dec 2019 16:47:33 -0500 Subject: [PATCH] Enable Java 8 language feature support --- app/build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index ea615929ed..c3becab094 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -91,6 +91,14 @@ android { checkReleaseBuilds false } + compileOptions { + sourceCompatibility = 1.8 + targetCompatibility = 1.8 + } + + kotlinOptions { + jvmTarget = "1.8" + } } dependencies {