Skip to content

Commit

Permalink
Handle android build error
Browse files Browse the repository at this point in the history
  • Loading branch information
violet-dev committed Sep 10, 2024
1 parent 9790ec2 commit 6b502df
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions violet/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ allprojects {
}

rootProject.buildDir = '../build'
subprojects {
// Build error handling https://github.com/flutter/flutter/issues/153281#issuecomment-2287902896
afterEvaluate {
android {
compileSdkVersion 34
}
}
}
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
Expand Down

0 comments on commit 6b502df

Please sign in to comment.