Reviving this question from a slightly different a...
# kotlin-native
j
Reviving this question from a slightly different angle. Is it possible to get the following scenario to work: • Core KMP lib - common stuff, generic base classes • AppLib KMP lib - specific app logic, with classes that inherit from Core lib classes (depends on Core) is it possible using
export
and maybe
transitiveExport = true
to package a single Framework that includes all classes from AppLib and all public classes from Core to make them consumable from an iOS app ? Been playing around with this but haven’t been able to make it work, not sure if i’m doing something wrong or if it’s not possible currently.