Update eas.json for iOS simulator support and add build script to package.json

This commit is contained in:
2025-08-01 12:59:49 +02:00
parent 917c7e1524
commit c2014b2176
2 changed files with 7 additions and 7 deletions

View File

@@ -4,13 +4,12 @@
"appVersionSource": "remote"
},
"build": {
"ios": {
"simulator": false,
"enterpriseProvisioning": "ad-hoc"
},
"development": {
"developmentClient": true,
"distribution": "internal"
"distribution": "internal",
"ios": {
"simulator": true
}
},
"preview": {
"distribution": "internal"
@@ -22,4 +21,4 @@
"submit": {
"production": {}
}
}
}

View File

@@ -7,7 +7,8 @@
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "expo lint"
"lint": "expo lint",
"build": "expo build:ios && expo build:android"
},
"dependencies": {
"@expo/vector-icons": "^14.1.0",