Is the conflict resolution of KN deterministic whe...
# kotlin-native
m
Is the conflict resolution of KN deterministic when exporting to ObjC and there are collisions in class names? Initially: Kotlin
mypackage.Url
-> Swift
Url
Kotlin
io.ktor.url.Url
-> Swift
Url_
But now it has flipped and thus my Swift code doesn't compile anymore.
s
Is the conflict resolution of KN deterministic when exporting to ObjC and there are collisions in class names?
I don’t think so. The best option here is to avoid name clashes, i.e. to rename
mypackage.Url
.