From c2014b2176606dd122e76b701ebd5ad1dd369224 Mon Sep 17 00:00:00 2001 From: b3ni15 Date: Fri, 1 Aug 2025 12:59:49 +0200 Subject: [PATCH] Update eas.json for iOS simulator support and add build script to package.json --- eas.json | 11 +++++------ package.json | 3 ++- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/eas.json b/eas.json index 6fb8d0f..b872cc2 100644 --- a/eas.json +++ b/eas.json @@ -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": {} } -} \ No newline at end of file +} diff --git a/package.json b/package.json index 1bedaa9..b14d16f 100644 --- a/package.json +++ b/package.json @@ -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",