Yattee v2 rewrite

This commit is contained in:
Arkadiusz Fal
2026-02-08 18:31:16 +01:00
parent 20d0cfc0c7
commit 05f921d605
1043 changed files with 163875 additions and 68430 deletions

15
bin/install-debug Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
DEVICE_NAME="${1:-iPhone 17 Pro}"
echo "Building Yattee for $DEVICE_NAME..."
xcodebuild -project Yattee.xcodeproj -scheme "Yattee" -configuration Debug -destination "platform=iOS,name=$DEVICE_NAME" -derivedDataPath ./build build
if [ $? -eq 0 ]; then
echo "Installing to $DEVICE_NAME..."
xcrun devicectl device install app --device "$DEVICE_NAME" ./build/Build/Products/Debug-iphoneos/Yattee.app
else
echo "Build failed"
exit 1
fi