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 fa5ec7e commit d20e78fCopy full SHA for d20e78f
1 file changed
build.gradle.kts
@@ -412,8 +412,8 @@ tasks.withType<AbstractPublishToMaven>().configureEach {
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 {
+// Fix implicit dependency issue for androidNative*MetadataElements
+// "Declare an explicit dependency on ':commonizeCInterop' from ':androidNative*MetadataElements' using Task#dependsOn"
+tasks.matching { it.name.startsWith("androidNative") && it.name.endsWith("MetadataElements") }.configureEach {
418
dependsOn("commonizeCInterop")
419
0 commit comments