How can I make kotlin-native include classes and f...
# kotlin-native
h
How can I make kotlin-native include classes and functions declared in module dependencies? I have a Gradle module A which which is my iOS framework. Module A has an
api
dependency on module B. Module B contains some utilities. Only classes/functions from module B that are used in module A end up in my iOS framework, the rest seem to be excluded. How can I make sure they're included in the framework? Should I declare module B to be a framework on its own?
a
Hello, do you mean something like described here?
h
Yes, awesome! Thanks a lot 🙌