From 3049a0e39dc581263cfb1230ab71e38b46413515 Mon Sep 17 00:00:00 2001 From: byGalax Date: Wed, 13 May 2026 23:33:47 +0200 Subject: [PATCH] chore(mobile): add eas.json with development/preview/production build profiles --- apps/mobile/eas.json | 45 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 apps/mobile/eas.json diff --git a/apps/mobile/eas.json b/apps/mobile/eas.json new file mode 100644 index 0000000..e4645be --- /dev/null +++ b/apps/mobile/eas.json @@ -0,0 +1,45 @@ +{ + "cli": { + "version": ">= 13.0.0" + }, + "build": { + "development": { + "developmentClient": true, + "distribution": "internal", + "ios": { + "simulator": true + }, + "android": { + "buildType": "apk" + } + }, + "preview": { + "distribution": "internal", + "ios": { + "simulator": false + }, + "android": { + "buildType": "apk" + } + }, + "production": { + "ios": { + "simulator": false + }, + "android": { + "buildType": "app-bundle" + } + } + }, + "submit": { + "production": { + "ios": { + "appleId": "REPLACE_WITH_APPLE_ID", + "ascAppId": "REPLACE_WITH_ASC_APP_ID" + }, + "android": { + "serviceAccountKeyPath": "./play-service-account.json" + } + } + } +}