Select the types of activity you want to include in your feed.
fix(build): separate derivedDataPath for simulator and device builds
Simulator builds use /tmp/peek-xcodebuild-sim, device builds use /tmp/peek-xcodebuild-device. This allows both to run in parallel without xcodebuild conflicts.
···503503504504**Gotchas:**
505505- Xcode scheme is `peek-save_iOS` — all xcodebuild commands use this
506506-- All xcodebuild outputs go to `/tmp/peek-xcodebuild` (derivedDataPath)
506506+- Simulator builds go to `/tmp/peek-xcodebuild-sim`, device builds to `/tmp/peek-xcodebuild-device` (separate derivedDataPaths so they can run in parallel)
507507- `tauri.conf.json` should NOT have `devUrl` or `beforeDevCommand` checked in — `dev-ios-sim.sh` patches these temporarily and restores on exit
508508- If Rust code changes during HMR, stop vite (Ctrl+C), restart `yarn mobile:ios:dev`
509509- `cargo tauri ios dev` is broken on Apple Silicon (passes `ARCHS=x86_64`) — use `yarn mobile:ios:dev` instead which bypasses it