From 8b3721e46dc030b8ce83c66cb1bda48ca68bd787 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benedikt=20M=C3=BCller?= <91166910+bndkt@users.noreply.github.com> Date: Thu, 12 Sep 2024 15:44:17 +0200 Subject: [PATCH] Configure eas --- example/app.json | 7 ++++++- example/eas.json | 26 ++++++++++++++++++++++++++ example/package.json | 4 +++- 3 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 example/eas.json diff --git a/example/app.json b/example/app.json index f941b65..4066f2f 100644 --- a/example/app.json +++ b/example/app.json @@ -39,6 +39,11 @@ } } ] - ] + ], + "extra": { + "eas": { + "projectId": "588fcc97-16f5-477c-92bf-b59fbeba89a3" + } + } } } diff --git a/example/eas.json b/example/eas.json new file mode 100644 index 0000000..de46aba --- /dev/null +++ b/example/eas.json @@ -0,0 +1,26 @@ +{ + "cli": { + "version": ">= 12.3.0", + "appVersionSource": "remote" + }, + "build": { + "simulator": { + "developmentClient": true, + "distribution": "internal", + "ios": { + "simulator": true + } + }, + "development": { + "developmentClient": true, + "distribution": "internal" + }, + "preview": { + "distribution": "internal" + }, + "production": {} + }, + "submit": { + "production": {} + } +} diff --git a/example/package.json b/example/package.json index 0793107..12efedc 100644 --- a/example/package.json +++ b/example/package.json @@ -5,11 +5,13 @@ "scripts": { "start": "expo start", "ios": "expo run:ios --scheme", - "android": "expo run:android" + "android": "expo run:android", + "build": "eas build --local --platform ios --profile simulator" }, "dependencies": { "expo": "~51.0.32", "expo-build-properties": "~0.12.5", + "expo-dev-client": "~4.0.26", "react": "18.2.0", "react-native": "0.74.5" },