https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
p

Paulius Ruminas

01/28/2019, 4:43 PM
Hello, after update from gradle 4.7 to gradle 4.10 the ios framework module name changes With gradle 4.7:
Copy code
framework module common {
    umbrella header "common.h"

    export *
    module * { export * }
}
With gradle 4.10
Copy code
framework module main {
    umbrella header "main.h"

    export *
    module * { export * }
}
Can I specify an argument that would generate the previous module that was
common
instead of
main
?
Adding this code snippet fixed the issue:
Copy code
compilations.main.extraOpts '-output', "$buildDir/bin/common.framework"
j

Jeremy

01/28/2019, 7:27 PM
I noticed same issue in project, thanks for updating w/ solution!
j

JL

01/28/2019, 7:50 PM
Any idea what the groovy equivalent would be?
maybe this helps