iOS: Xcode host app and TestFlight refresh pipeline - #77
Merged
Conversation
The iOS app now builds and runs: a SwiftUI host generated with xcodegen wraps the shared ComposeApp framework, with the CMP-required Info.plist keys (CADisableMinimumFrameDurationOnPhone, all four orientations, ITSAppUsesNonExemptEncryption=false) and the Summit Pin icon rendered for the App Store asset catalog. Release signing is manual: Apple Distribution certificate plus an App Store profile created through the App Store Connect API. A scheduled workflow re-archives and re-uploads to TestFlight when the newest build has less than 35 days of life left. Also fixes the iOS compile: kotlinx-coroutines pinned to 1.10.2 because 1.11.0 klibs carry a Kotlin 2.2.20 ABI that Kotlin 2.1.21 cannot consume, and the PlatformMap iOS actual gains the focus and layers parameters the common expect grew. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Ljo18m9Wka5Shs5b1AtPYA
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.
Summary
iosApp/project.ymlwith xcodegen (the.xcodeprojstays gitignored)CADisableMinimumFrameDurationOnPhone, all four interface orientations,ITSAppUsesNonExemptEncryption=false, and the location usage string.github/workflows/testflight.yml+scripts/testflight.py: scheduled twice-monthly refresh that re-archives and re-uploads only when the newest TestFlight build has under 35 days left, then confirms compliance, attaches the public beta group, and submits for beta reviewPlatformMapiOS actual updated with thefocus/layersparameters the common expect gainedTest plan
:composeApp:compileKotlinIosSimulatorArm64compiles:composeApp:testDebugUnitTestpasses with coroutines 1.10.2🤖 Generated with Claude Code
https://claude.ai/code/session_01Ljo18m9Wka5Shs5b1AtPYA