From 38bad9671df90dfcf40f80410bf6177fb3593501 Mon Sep 17 00:00:00 2001 From: Dr-Blank <64108942+Dr-Blank@users.noreply.github.com> Date: Thu, 12 Sep 2024 00:22:46 -0400 Subject: [PATCH] Remove unnecessary code in android/build.gradle fixed in flutter 3.24.2 --- android/build.gradle | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 1b0d901..50d92aa 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -9,18 +9,7 @@ rootProject.buildDir = '../build' subprojects { project.buildDir = "${rootProject.buildDir}/${project.name}" } -// TODO: remove when https://github.com/livekit/client-sdk-flutter/issues/569#issuecomment-2275686786 is fixed -subprojects { - afterEvaluate { project -> - if (project.plugins.hasPlugin("com.android.application") || - project.plugins.hasPlugin("com.android.library")) { - project.android { - compileSdkVersion 34 - buildToolsVersion "34.0.0" - } - } - } -} + subprojects { project.evaluationDependsOn(':app') }