fix(android): make task dependencies explicit (#8138)

Fixes a new issue gradle seems to complain about:

https://github.com/firezone/firezone/actions/runs/13339271704
This commit is contained in:
Jamil
2025-02-14 18:19:05 -08:00
committed by GitHub
parent bacb4596b7
commit b64a919ac0

View File

@@ -250,3 +250,7 @@ tasks.matching { it.name.matches(Regex("merge.*JniLibFolders")) }.configureEach
inputs.dir(layout.buildDirectory.file("rustJniLibs/android"))
dependsOn("cargoBuild")
}
tasks.matching { it.name == "appDistributionUploadRelease" }.configureEach {
dependsOn("processReleaseGoogleServices")
}