Bradleycorn
04/19/2023, 7:54 PMThe names of Kotlin classes and interfaces are prefixed when imported to Objective-C. The prefix is derived from the framework name.Is there a way to customize/override the prefix?
xxfast
04/19/2023, 8:03 PMbinaries {
framework {
baseName = "Demo"
}
}
Bradleycorn
04/19/2023, 8:03 PMlistOf(
iosX64(),
iosArm64(),
iosSimulatorArm64()
).forEach {
it.binaries.framework {
baseName = "TheProgram"
}
}
but in my swift code, classes still use a prefix of Adw_program
leandro
04/20/2023, 10:05 AMframework(name) {}
Kevin S
04/20/2023, 7:59 PM