Hey! There is a problem in the code generation of ...
# announcements
v
Hey! There is a problem in the code generation of interfaces from Common for use in the Swift implementation. Different interfaces have the same method name and signature. The KMM generates names and adds "_" to each subsequent method that has the same signature. Who has already had this problem? Do you have a solution?  interface abcde { fun initialize(reference: ObjectReference) }  interface gfjk { fun initialize(reference: ObjectReference) } code generation interfaces for Swift (app.h) : (swift_name("initialize(reference:)") (swift_name("initialize(reference_:)”)
y
I usually just use different method signatures where possible.