Sebastian Owodzin
10/30/2018, 2:13 PMkotlin {
targets {
fromPreset(presets.jvm, 'jvm')
// This preset is for iPhone emulator
// Switch here to presets.iosArm64 to build library for iPhone device
fromPreset(presets.iosX64, 'ios') {
compilations.main {
outputKinds('FRAMEWORK')
}
//customFrameworkName??
}
}
...
hultgren
10/30/2018, 4:14 PM-module_name
option. When I tried it out I couldn’t get it to do more than just change the prefix of the obj-c exports, not the framework itselfSebastian Owodzin
07/23/2019, 3:54 PMkotlin {
targets {
fromPreset(iosTarget, 'ios') {
binaries {
framework("customName") {
...
}
}
}
}
}
hultgren
07/23/2019, 4:24 PM