From 948b95a9dc5ecacb99ddf61915d76d6257b1fa93 Mon Sep 17 00:00:00 2001 From: Yair Morgenstern Date: Fri, 5 Aug 2022 10:49:32 +0300 Subject: [PATCH] Android gradle update - explicitly state build tools version, remove desugaring --- android/build.gradle.kts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/android/build.gradle.kts b/android/build.gradle.kts index 604ce18e34..4f39e87fdf 100644 --- a/android/build.gradle.kts +++ b/android/build.gradle.kts @@ -65,13 +65,12 @@ android { compileOptions { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 - - isCoreLibraryDesugaringEnabled = true } androidResources { // Don't add local save files and fonts to release, obviously ignoreAssetsPattern = "!SaveFiles:!fonts:!maps:!music:!mods" } + buildToolsVersion = "30.0.3" } @@ -130,5 +129,4 @@ dependencies { // Known Android Lint warning: "GradleDependency" implementation("androidx.core:core-ktx:1.6.0") implementation("androidx.work:work-runtime-ktx:2.6.0") - coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:1.1.5") }