From 350077785a3c95ce8a5e58545479d52bad15a74f Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Fri, 5 Apr 2019 00:38:01 +0200 Subject: [PATCH] Set java source compatibility to 1.8 --- app/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index 9224bc5..13a6d26 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -23,6 +23,11 @@ android { // Warn about invalid packages instead of failing warning 'InvalidPackage' } + + compileOptions { + sourceCompatibility 1.8 + targetCompatibility 1.8 + } } checkstyle {