Any recommendations for xcframework size optimizat...
# ios
w
Any recommendations for xcframework size optimizations in project setup or the
build.gradle.kts
file? My raw release xcframework is around 60MB.
n
one step would be making public only what’s absolutely necessary. It’s not only about header file size, but also about Obj-C runtime bridge code generated for each public type.
Keep in mind that xcframework also contains simulator binaries, so the real App Store size impact would likely be below 60 megs
w
Thanks, ill look into that