From 25da30d6e2d2588c1b3df657f1b9ba7d3c655461 Mon Sep 17 00:00:00 2001 From: herrrta <73949927+herrrta@users.noreply.github.com> Date: Fri, 28 Mar 2025 19:16:16 -0400 Subject: [PATCH] fix: env variable --- eas.json | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/eas.json b/eas.json index 82945a7b..fb5e37e1 100644 --- a/eas.json +++ b/eas.json @@ -8,7 +8,9 @@ "developmentClient": true, "distribution": "internal", "android": { - "buildType": "apk", + "buildType": "apk" + }, + "env": { "DEBUG": "1" } }, @@ -24,13 +26,18 @@ } }, "preview": { - "distribution": "internal" + "distribution": "internal", + "env": { + "DEBUG": "1" + } }, "development-simulator": { "developmentClient": true, "distribution": "internal", "ios": { - "simulator": true, + "simulator": true + }, + "env": { "DEBUG": "1" } },