ai/at
1
0
This commit is contained in:
2025-12-07 11:12:08 +09:00
parent 3e7c56465f
commit aef9db4a89
3 changed files with 11 additions and 3 deletions

View File

@@ -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