Hey there! For iOS, Kotlin Multiplatform will rena...
# multiplatform
m
Hey there! For iOS, Kotlin Multiplatform will rename functions if there are multiple with the same name for ObjectiveC: https://kotlinlang.org/docs/native-objc-interop.html#name-translation Is there a way to prevent this name translation, and rather fail the build instead? This would be preferable to us, because it provides a faster feedback loop than just letting consuming developers find out later that the method they wanted to use has been renamed to
method_
instead of
method!