feat(release): export compliance + one-command build-and-submit - #31
Merged
Conversation
Two "no-wait" release improvements:
- Add `ITSAppUsesNonExemptEncryption=false` to all three Info.plists so
App Store Connect stops asking "Missing Compliance" on every build /
flavor. The app uses only standard HTTPS (exempt encryption).
- Add `yarn eas:deploy:*` scripts that run `eas build --auto-submit`, so
one command builds AND submits when the build finishes — the developer
doesn't wait around:
eas:deploy:ios:production / :staging
eas:deploy:android:production
eas:deploy:production (all platforms)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
These two changes were in PR #30 but got left out (the PR was merged just before this commit landed), so bringing them in.
1. Export compliance — no more "Missing Compliance" prompt ✅
Adds
ITSAppUsesNonExemptEncryption=falseto dev/staging/prod Info.plists. The app uses only standard HTTPS (exempt encryption), so App Store Connect auto-answers the encryption question on every build/flavor instead of asking. Ref: https://stackoverflow.com/questions/756656962. One-command build + auto-submit (no waiting) ⚡
New
yarn eas:deploy:*scripts runeas build --auto-submit— fire once, it builds and submits when the build finishes:After merge — full release in one command
🤖 Generated with Claude Code