From 58af57fbdc345f799b4c93fc02aae69c8bbfbd56 Mon Sep 17 00:00:00 2001 From: Niko Strijbol Date: Thu, 26 Oct 2023 23:33:52 +0200 Subject: [PATCH] Enable Java 11 language features --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 6651dcd2e..dd8ab289d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -104,8 +104,8 @@ android { compileOptions { coreLibraryDesugaringEnabled true - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 + sourceCompatibility JavaVersion.VERSION_11 + targetCompatibility JavaVersion.VERSION_11 } buildTypes {