Hi guys, have a question here. I have few kn modul...
# kotlin-native
i
Hi guys, have a question here. I have few kn modules 1. knmoduleOne 2. knModuleTwo 3. knMain and main have first two as libs inside like this sourceSets { commonMain { dependencies { api project(":knmoduleOne") api project(":knModuleTwo") }}} when Im building it into ios lib, the classes from modules 1 and 2 have prefix in their names like KNMODULEONESomeClassName. Its kinda triggering, how to avoid that? just rename module during build or there is another way?
y
you can export dependency to avoid prefix
i
@yshrsmz thats great man, thanks.