update gradle versions and publication scripts

This commit is contained in:
2023-11-02 17:59:22 +06:00
parent ef72365505
commit aa7bd6179a
4 changed files with 10 additions and 4 deletions

View File

@@ -103,4 +103,10 @@ if (project.hasProperty("signing.gnupg.keyName")) {
dependsOn(it)
}
}
// Workaround to make android sign operations depend on signing tasks
project.getTasks().withType(AbstractPublishToMaven.class).configureEach {
def signingTasks = project.getTasks().withType(Sign.class)
mustRunAfter(signingTasks)
}
}