We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1a22e0 commit a10243cCopy full SHA for a10243c
build.gradle.kts
@@ -82,7 +82,11 @@ kotlin {
82
val linuxTargets = listOf(
83
linuxArm64(),
84
linuxX64(),
85
- mingwX64()
+ mingwX64(),
86
+ androidNativeX64(),
87
+ androidNativeX86(),
88
+ androidNativeArm64(),
89
+ androidNativeArm32(),
90
)
91
val darwinTargets = listOf(
92
macosArm64(),
@@ -335,3 +339,11 @@ tasks {
335
339
distributionType = Wrapper.DistributionType.ALL
336
340
}
337
341
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