Hi, I just trying to compile my K/N module to `.fr...
# kotlin-native
k
Hi, I just trying to compile my K/N module to
.framework
. but when i ran it on xcode, i got a lot error mostly complain the
-
character in the class name
Copy code
@protocol MppProjectRepository
@required
- (id<MppKotlinx-coroutines-core-nativeDeferred>)searchProjectParams:(MppSearchProjectInteractorParams *)params __attribute__((swift_name("searchProject(params:)")));
@end;
Is there something to configure to avoid this issue?
s
To workaround this issue you can find all functions having kotlinx.coroutines types in their signatures in your source code and make them
internal
.
k
Ok. Will try that. Thank you so much.
t
k
Yep. exactly like the last comment on that issue.