diff --git a/app/build.gradle b/app/build.gradle index 9ae2752a0..902af3cd7 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -97,13 +97,13 @@ android { compileOptions { // Flag to enable support for the new language APIs coreLibraryDesugaringEnabled true - // Sets Java compatibility to Java 8 - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 + // Sets Java compatibility to Java 11 + sourceCompatibility JavaVersion.VERSION_11 + targetCompatibility JavaVersion.VERSION_11 } kotlinOptions { - jvmTarget = "1.8" + jvmTarget = "11" } buildToolsVersion '30.0.3' tasks.withType(JavaCompile) {