XCode14 has disabled bitcode and Apple says they won't accept bitcode enabled apps. Disabling bitcode increases the size of our app by 2X. This can only help reduce the app size by a few Mb. Has anyone faced this issue and been able to reduce their app size without bitcode enabled?
App size has increased 2X after disabling bitcode in XCode14
Hi, disabling Bitcode shouldn't affect the size of the generated machine code by 2x. 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