docs: add Xcode requirements and build troubleshooting

- Add "Requires: macOS 13.0+, Xcode 15.0+" to README
- Add "Build Won't Complete" troubleshooting section to MACOS_APP_MANUAL
- Document xcodebuild not found and Command Line Tools issues
This commit is contained in:
oho 2026-01-13 08:45:07 +01:00
parent db76d64db9
commit 78f9ed7c0c
2 changed files with 18 additions and 0 deletions

View file

@ -42,6 +42,8 @@ Control Alpha Arena from your menu bar:
- Quick access to dashboard and logs
- Network mode toggle (localhost/LAN)
**Requires:** macOS 13.0+, Xcode 15.0+ (from App Store)
```bash
# Build and install
cd macos-app && ./build.sh install

View file

@ -267,6 +267,22 @@ Trading: Active (simulation)
## Troubleshooting
### Build Won't Complete
**"xcodebuild not found"**
- Install Xcode from the App Store (not just Command Line Tools)
- Xcode download: https://apps.apple.com/app/xcode/id497799835
**"Xcode Command Line Tools selected instead of Xcode"**
```bash
# Switch to full Xcode
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
```
**Build errors about missing types**
- Ensure you have the latest code: `git pull`
- The Xcode project must include all Swift files in the build
### App Won't Launch
**"App is damaged and can't be opened"**