From f72d09a487e7e856ccf80663be33d8d3d9a4e257 Mon Sep 17 00:00:00 2001 From: Abel Putnoki <29568469+putnokiabel@users.noreply.github.com> Date: Mon, 9 Sep 2024 23:18:35 +0200 Subject: [PATCH] fix: support kotlin 1.8 (#202) --- android/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/android/build.gradle b/android/build.gradle index 16ef01f..f1beec3 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -41,6 +41,9 @@ android { lintOptions { disable 'InvalidPackage' } + kotlinOptions { + jvmTarget = '1.8' + } } dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"