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 8b42ae3 commit fa5ec7eCopy full SHA for fa5ec7e
1 file changed
build.gradle.kts
@@ -411,3 +411,9 @@ tasks.withType<AbstractPublishToMaven>().configureEach {
411
mustRunAfter(signingTasks)
412
}
413
//endregion
414
+
415
+// Fix implicit dependency issue for androidNativeArm32MetadataElements
416
+// "Declare an explicit dependency on ':commonizeCInterop' from ':androidNativeArm32MetadataElements' using Task#dependsOn"
417
+tasks.matching { it.name == "androidNativeArm32MetadataElements" }.configureEach {
418
+ dependsOn("commonizeCInterop")
419
+}
0 commit comments