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

Matouš Skála

03/18/2019, 2:30 PM
Is there a way to specify the framework name generated by iOS target? The example project generates
main.framework
and I haven't found a way to change this. https://github.com/JetBrains/kotlin-examples/blob/master/tutorials/mpp-iOS-Android/SharedCode/build.gradle
m

Matouš Skála

03/18/2019, 3:18 PM
@olonho
-module-name
option changes the prefix of framework classes, but does not rename the framework itself, it is still called
main
@Jonas Bark binaries dsl with baseName works great, thanks!
🤝 1
s

Sebastian Keller

03/18/2019, 3:43 PM
That information needs to be in the FAQ. Thanks @Jonas Bark
o

olonho

03/19/2019, 5:02 AM
@Sebastian Keller we always welcome contributions, especially in docs area
s

Sebastian Keller

03/22/2019, 3:00 PM