ai/at
1
0

add ios patch

This commit is contained in:
2025-12-07 10:17:15 +09:00
parent b15994e5c0
commit 7b81217fb7
27 changed files with 3410 additions and 768 deletions

View File

@@ -3,7 +3,7 @@ set -e
d=${0:a:h}
cd $d
source $d/config.zsh
source $d/.env
echo "Running iOS preview workflow..."
cd "$REPO_DIR"
@@ -59,5 +59,12 @@ read
# 5. Run
echo "5. Building and Running..."
# If user wants specific device ID, uncomment below, otherwise let Expo ask/pick boot simulator
# npx expo run:ios --device "$DEVICE_ID" --configuration Release
npx expo run:ios
case $1 in
d|devicei)
npx expo run:ios --device "$DEVICE_ID" --configuration Release
;;
*)
npx expo run:ios
;;
esac