From 11f7d5a7c5a0d6c3620aecca6b276b02b612233b Mon Sep 17 00:00:00 2001 From: lukstbit <52494258+lukstbit@users.noreply.github.com> Date: Thu, 20 Jun 2024 10:42:45 +0300 Subject: [PATCH] Change source/kotlin compatibility in common module to Java 11 --- common/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/build.gradle.kts b/common/build.gradle.kts index 90d195acdf..e67fbefa98 100644 --- a/common/build.gradle.kts +++ b/common/build.gradle.kts @@ -27,11 +27,11 @@ android { } } compileOptions { - sourceCompatibility = JavaVersion.VERSION_1_8 - targetCompatibility = JavaVersion.VERSION_1_8 + sourceCompatibility = JavaVersion.VERSION_11 + targetCompatibility = JavaVersion.VERSION_11 } kotlinOptions { - jvmTarget = "1.8" + jvmTarget = "11" } }