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 60cc6ee commit aef83e6Copy full SHA for aef83e6
buildSrc/src/main/java/Publication.kt
@@ -185,7 +185,8 @@ fun DistributionContainer.configureForMultiplatform(project: Project) {
185
186
private fun CopySpec.fromKlib(projectName: String, target: String, version: String) {
187
val pos = projectName.length
188
- from("build${sep}libs${sep}${target}${sep}main") {
+ from("build${sep}classes${sep}kotlin${sep}${target}${sep}main${sep}cinterop") {
189
+ include("*.klib")
190
rename {
191
it.replaceRange(pos, pos, "-${target.toLowerCase()}-$version")
192
}
0 commit comments