Skip to content

Commit 8adfcfd

Browse files
committed
Update build.gradle.kts
1 parent 03c9b1e commit 8adfcfd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

plugin/build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,11 @@ tasks.register("sign-dex") {
231231
inputs.file(dexOutput)
232232
outputs.file(dexOutputSigned)
233233

234+
dependsOn("build-dex")
235+
234236
doLast {
235237
if (!hasReleaseKeyStore) {
236-
println("No release keystore found. Skipping signing.")
238+
println("No release keystore found. Skipping signing.")
237239
return@doLast
238240
}
239241

@@ -258,7 +260,7 @@ tasks.register("sign-dex") {
258260

259261
Files.write(dexOutputSigned.toPath(), output)
260262

261-
println("Signed DEX written to: ${dexOutputSigned.absolutePath}")
263+
println("Signed DEX written to: ${dexOutputSigned.absolutePath}")
262264
}
263265
}
264266

0 commit comments

Comments
 (0)