From 76cfa7186e6790a2271a9584c7fddbefebdca773 Mon Sep 17 00:00:00 2001 From: Nawaz Dhandala Date: Wed, 18 Feb 2026 09:00:13 +0000 Subject: [PATCH] refactor: add eas.json configuration for build and submission settings --- MobileApp/eas.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 MobileApp/eas.json diff --git a/MobileApp/eas.json b/MobileApp/eas.json new file mode 100644 index 0000000000..bbabbc87ef --- /dev/null +++ b/MobileApp/eas.json @@ -0,0 +1,18 @@ +{ + "cli": { + "version": ">= 3.0.0" + }, + "build": { + "development": { + "developmentClient": true, + "distribution": "internal" + }, + "preview": { + "distribution": "internal" + }, + "production": {} + }, + "submit": { + "production": {} + } +}