mirror of
https://github.com/saymrwulf/alpha-arena.git
synced 2026-05-14 20:37:51 +00:00
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:
parent
db76d64db9
commit
78f9ed7c0c
2 changed files with 18 additions and 0 deletions
|
|
@ -42,6 +42,8 @@ Control Alpha Arena from your menu bar:
|
||||||
- Quick access to dashboard and logs
|
- Quick access to dashboard and logs
|
||||||
- Network mode toggle (localhost/LAN)
|
- Network mode toggle (localhost/LAN)
|
||||||
|
|
||||||
|
**Requires:** macOS 13.0+, Xcode 15.0+ (from App Store)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Build and install
|
# Build and install
|
||||||
cd macos-app && ./build.sh install
|
cd macos-app && ./build.sh install
|
||||||
|
|
|
||||||
|
|
@ -267,6 +267,22 @@ Trading: Active (simulation)
|
||||||
|
|
||||||
## Troubleshooting
|
## 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 Won't Launch
|
||||||
|
|
||||||
**"App is damaged and can't be opened"**
|
**"App is damaged and can't be opened"**
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue