Skip to content

Commit

Permalink
ci: fix android not building
Browse files Browse the repository at this point in the history
  • Loading branch information
resucutie authored Oct 13, 2024
1 parent 8a7120b commit 3878561
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,17 @@ rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
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 3878561

Please sign in to comment.