App clips size issue after upgrading to Xcode 14

We recently moved out build pipeline to Xcode 14 and we are seeing issue where our app clips size increased nearly 6mb without us adding any new code/libraries. We think the issue has to relate with bitcode removal in Xcode 14, How are we suppose to tackle this since the size is beyond the app clips maximum size for < iOS 16 version.

Any update on this? Our app size almost doubled after building via Xcode 14.

We have the same problem too! Any update on this?

Hi, disabling Bitcode shouldn't affect the size of the generated machine code. A potential difference might be symbols and debug information. Symbols are per default stripped from the binary and controlled by a project's build settings. Please check the following build settings and their recommended default values:

STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES

Hello,

Thanks for the reply, that solved the problem.

Version build with Xcode 13 = 5.91 MB

Version build with Xcode 14 = 6.18 MB

App clips size issue after upgrading to Xcode 14
 
 
Q