I have the same question. Will the app store brea...
# kotlin-native
s
I have the same question. Will the app store break out the parts of the fat binary and only push the relevant arch binary to each user? This is done with Swift bit-code, but I have not found documentation on the fat-binary side. Even if the binary is only per-architechture, each architechture binary is too large in my project, around 20 MB. The equivalent java .class files for the entire project are around 3 mb. So far the advice seems to be to not expose internal kotlin types since they add bloat. But having refactored the code to not expose any internal types like coroutines or serialization, only exposing my classes, I'm still at 19MB which can't be correct. Any blog posts or deep documentation on this would be helpful, I have not found a lot of material on this so far.