Skip to content

Commit a10243c

Browse files
committed
trying to apply a fix
1 parent e1a22e0 commit a10243c

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

build.gradle.kts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,11 @@ kotlin {
8282
val linuxTargets = listOf(
8383
linuxArm64(),
8484
linuxX64(),
85-
mingwX64()
85+
mingwX64(),
86+
androidNativeX64(),
87+
androidNativeX86(),
88+
androidNativeArm64(),
89+
androidNativeArm32(),
8690
)
8791
val darwinTargets = listOf(
8892
macosArm64(),
@@ -335,3 +339,11 @@ tasks {
335339
distributionType = Wrapper.DistributionType.ALL
336340
}
337341
}
342+
343+
//region Fix Gradle warning about signing tasks using publishing task outputs without explicit dependencies
344+
// https://github.com/gradle/gradle/issues/26091
345+
tasks.withType<AbstractPublishToMaven>().configureEach {
346+
val signingTasks = tasks.withType<Sign>()
347+
mustRunAfter(signingTasks)
348+
}
349+
//endregion

0 commit comments

Comments
 (0)