From c1ef89fec9ada6ba9b5cea235cb6a2f7b52a5e4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Luis=20Landabaso=20D=C3=ADaz?= Date: Fri, 25 Oct 2024 09:49:46 +0200 Subject: [PATCH] build configs --- app.json | 9 ++++++++- eas.json | 21 +++++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 eas.json diff --git a/app.json b/app.json index 12657e4..c29ae1a 100644 --- a/app.json +++ b/app.json @@ -28,9 +28,16 @@ "output": "static", "favicon": "./assets/images/favicon.png" }, - "plugins": ["expo-router"], + "plugins": [ + "expo-router" + ], "experiments": { "typedRoutes": true + }, + "extra": { + "eas": { + "projectId": "796a4173-1f4b-4229-bf1f-496a97f97886" + } } } } diff --git a/eas.json b/eas.json new file mode 100644 index 0000000..172a101 --- /dev/null +++ b/eas.json @@ -0,0 +1,21 @@ +{ + "cli": { + "version": ">= 12.5.4", + "appVersionSource": "remote" + }, + "build": { + "development": { + "developmentClient": true, + "distribution": "internal" + }, + "preview": { + "distribution": "internal" + }, + "production": { + "autoIncrement": true + } + }, + "submit": { + "production": {} + } +}