From 8ccb75fc8d3198ba43abdeac0a067843577db8aa Mon Sep 17 00:00:00 2001 From: kitadai31 <90122968+kitadai31@users.noreply.github.com> Date: Wed, 17 May 2023 15:38:03 +0900 Subject: [PATCH] chore: remove coreLibraryDesugaring --- android/app/build.gradle | 9 --------- 1 file changed, 9 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 40653d79..f64c7eb7 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -30,7 +30,6 @@ android { ndkVersion flutter.ndkVersion compileOptions { - coreLibraryDesugaringEnabled true sourceCompatibility JavaVersion.VERSION_11 targetCompatibility JavaVersion.VERSION_11 } @@ -49,7 +48,6 @@ android { targetSdkVersion 33 versionCode flutterVersionCode.toInteger() versionName flutterVersionName - multiDexEnabled true } buildTypes { @@ -79,11 +77,4 @@ dependencies { implementation("org.bouncycastle:bcpkix-jdk15on:1.70") implementation("com.android.tools.build:apksig:7.2.2") - // Core libraries - coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5' - - // Window - implementation 'androidx.window:window:1.0.0' - implementation 'androidx.window:window-java:1.0.0' - }