Skip to content

Commit

Permalink
Revert "Remove unnecessary code in android/build.gradle"
Browse files Browse the repository at this point in the history
This reverts commit 38bad96.
  • Loading branch information
Dr-Blank committed Sep 18, 2024
1 parent cac6a96 commit 9733951
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,18 @@ 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')
}
Expand Down

0 comments on commit 9733951

Please sign in to comment.