Disable Bitcode when using xcodeproj.mk#626
Merged
Merged
Conversation
When distributing apps anywhere other than the App Store the bitcode section of an app goes unused. This means it won't be stripped during processing on Apple's Servers. Disabling bitcode can make apps significantly smaller. [Here](https://cdn.discordapp.com/attachments/688124600269144162/906961066133684234/unknown.png) is Zebra with Bitcode disabled (left) and enabled (right).
Member
|
Good suggestion; can we make this configurable? The default being |
Contributor
Author
|
That makes sense. On that same note it may also be worth making ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES a configurable option |
Make Disabling Bitcode optional with the default being NO
Contributor
Author
|
Finally got round to updating this, now by default Bitcode will be disabled however it can be enabled by doing |
PoomSmart
approved these changes
Jan 9, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When distributing apps anywhere other than the App Store the bitcode section of an app goes unused. This means it won't be stripped during processing on Apple's Servers. Disabling bitcode can make apps significantly smaller. Here is Zebra with Bitcode disabled (left) and enabled (right).

For further reference on Bitcode you can read this help article from Apple.