https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
е

Егор Аникеев

08/14/2022, 2:33 PM
Hi there! Сan anyone tell me if it is possible to turn off the kotlin runtime during the build ios framework, so that it can be included later in another kmm-project?
k

kpgalligan

08/14/2022, 11:08 PM
Frameworks made by the compiler are their “own world”, and include everything they need as one unit. It doesn’t include the complete Kotlin runtime, just the parts your code needs. As such, you can’t modularize with frameworks in that way. It’s kind of hard to explain in text, but the short version is no, you can’t do what you’re asking.