We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1943009 + 694eb0c commit 5c478a1Copy full SHA for 5c478a1
app/build.gradle.kts
@@ -354,6 +354,7 @@ tasks.register<Download>("includeJdk") {
354
into(composeResources(""))
355
}
356
357
+ finalizedBy("prepareAppResources")
358
359
tasks.register<Copy>("includeSharedAssets"){
360
from("../build/shared/")
@@ -511,7 +512,6 @@ afterEvaluate {
511
512
dependsOn(
513
"includeCore",
514
"includeJavaMode",
- "includeJdk",
515
"includeSharedAssets",
516
"includeProcessingExamples",
517
"includeProcessingWebsiteExamples",
@@ -539,7 +539,7 @@ afterEvaluate {
539
540
541
tasks.named("createDistributable").configure {
542
- dependsOn("signResources")
+ dependsOn("signResources", "includeJdk")
543
finalizedBy("setExecutablePermissions")
544
545
-}
+}
0 commit comments