:wave: I have a core KMP library that contains a c...
# kotlin-native
j
👋 I have a core KMP library that contains a couple of swift files (handy extensions and classes that cannot be written in kotlin), I found a way to expose them in the compiled framework by adding a 
spec.subspec
 section in my podspec file. Is there a way to export those swift files through another KMP (app shared lib) module that depends on that core library? right now i use 
export(project(":core_lib")
 to transitively export my core kotlin classes into the final ‘core + app lib’ framework, but can’t find a clean way to also include my swift files from the core module. Curious if anyone has any solutions for that.