Hello, after update from gradle 4.7 to gradle 4.1...
# multiplatform
p
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
I noticed same issue in project, thanks for updating w/ solution!
j
Any idea what the groovy equivalent would be?
maybe this helps