fix: Dynamic Island, Live Activity errors, background audio stop, CFBundleVersion #9

Merged
millianlmx merged 11 commits from fix/live-activity-and-audio into main 2026-07-11 23:28:23 +02:00
Showing only changes of commit b956e5189b - Show all commits

View File

@@ -106,8 +106,10 @@ jobs:
# 1. Try WiFi first (Xcode 15+ devicectl network discovery)
echo "📱 Trying WiFi install via devicectl..."
xcrun devicectl device install app --device "$UDID" "$APP" 2>&1 | tail -3
if [ ${PIPESTATUS[0]} -eq 0 ]; then
xcrun devicectl device install app --device "$UDID" "$APP" > /tmp/devicectl.log 2>&1
DEVICECTL_EXIT=$?
tail -10 /tmp/devicectl.log
if [ $DEVICECTL_EXIT -eq 0 ]; then
echo "✅ Installed via WiFi"
exit 0
fi