release: iPad orientations fix + auto-submit deploy + export compliance + EAS workflow - #30
Merged
Merged
Conversation
.eas/workflows/create-production-builds.yml runs on EAS servers (on push to main, or manually via `eas workflow:run`): publishes an OTA update, builds iOS production, and submits to App Store Connect — no local CLI. iOS-only for now (Android keystore not configured). Includes a commented tag-based trigger since submitting to the App Store on every push isn't usually desirable. Requires the one-time GitHub↔EAS repo connection. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Making the app universal requires iPad apps (not full-screen-only) to support all four orientations. Add UISupportedInterfaceOrientations~ipad with Portrait, PortraitUpsideDown, LandscapeLeft, LandscapeRight to all three schemes. iPhone keeps its existing 3-orientation set. Fixes the App Store processing rejection of build 45 (error 90474). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
…chore/eas-workflow-and-ipad-orientations
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.
One PR bundling the build fix and release-workflow improvements.
1. iPad orientations fix (unblocks build) 🔴
Build 45 failed App Store processing — error 90474: a universal app must declare all 4 orientations. Adds
UISupportedInterfaceOrientations~ipad(Portrait, PortraitUpsideDown, LandscapeLeft, LandscapeRight) to dev/staging/prod. iPhone unchanged.2. One-command build + auto-submit (no waiting) ⚡
New
yarn eas:deploy:*scripts useeas build --auto-submit— fire once, it builds and submits when done:(also
:ios:staging,:android:production)3. Export compliance — no more "Missing Compliance" ✅
Adds
ITSAppUsesNonExemptEncryption=falseto all three Info.plists. App uses only standard HTTPS (exempt), so App Store Connect stops prompting per build/flavor. Ref: https://stackoverflow.com/questions/756656964. EAS Workflow (CI/CD)
.eas/workflows/create-production-builds.yml— push-triggered OTA update → iOS build → submit on EAS servers. iOS-only for now; requires one-time GitHub↔EAS connection.After merge — the whole release in one command
🤖 Generated with Claude Code