Skip to content

Commit

Permalink
Fix project build order
Browse files Browse the repository at this point in the history
  • Loading branch information
Tornaco committed Dec 16, 2024
1 parent 3b0dd9d commit 29bc759
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ fun Project.addAidlTask() {
tasks.named("compileJava") {
dependsOn("idlGen")
}
tasks.named("compileKotlin") {
dependsOn("idlGen")
if (tasks.findByName("generateProto") != null) {
dependsOn("generateProto")
}
}
tasks.named("build") {
dependsOn("idlGen")
}
Expand Down
2 changes: 1 addition & 1 deletion android/internal/Thanox-Internal

0 comments on commit 29bc759

Please sign in to comment.