Remove unnecessary code in android/build.gradle

fixed in flutter 3.24.2
This commit is contained in:
Dr-Blank 2024-09-12 00:22:46 -04:00
parent 8c817acd61
commit 38bad9671d
No known key found for this signature in database
GPG key ID: 7452CC63F210A266

View file

@ -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')
}