iOS build handoff: guide, CLAUDE.md, iOS ignore rules - #76
Merged
Conversation
Prepares the repo for the macOS/iOS build session: - iosApp/README.md: full build + handoff guide (state table, Xcode project setup with the framework-embed build phase and Swift entry files, the three native integrations to implement (MapKit map, FCM/APNs push, App Check), and the secrets/accounts the Mac provides). - CLAUDE.md: project orientation and conventions (PR workflow, docs voice, never-commit-secrets, gcloud project pinning, and the noreply-email push requirement that would otherwise bite on a new machine). - .gitignore: ignore iOS/Xcode secrets and state (GoogleService-Info.plist, DerivedData, xcuserdata, Pods, Config.xcconfig). No code or build changes; shared Kotlin already compiles for iOS with all expect/actual actuals present. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_014xbfpFLSceHGbpCVz2qBGG
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.
Prepares the repo to hand off to a macOS session for the iOS build.
Findings from the readiness check: the shared Kotlin module is already iOS-ready. iOS targets are declared, and every
expecthas an iOSactualincomposeApp/src/iosMain/(MainViewController, Darwin HTTP client, open-URL, launch-navigation, back-handling are real; Map/push/App-Check are intentional stubs). The only missing pieces are inherently macOS: the Xcode project and three native integrations.This PR (docs/config only, no code or build change):
iosApp/README.md: complete build + handoff guide, incl. the state table, Xcode project setup with the framework-embed build phase, the Swift entry files, and step-by-step for the MapKit map, FCM/APNs push, and App Check.CLAUDE.md: orients a fresh Claude session on the new machine (PR workflow, docs voice, secret hygiene, gcloud project pinning, and the noreply-email push requirement)..gitignore: iOS/Xcode secrets and state (GoogleService-Info.plist,DerivedData,xcuserdata,Pods,Config.xcconfig).