From 8b40f7a5e67c4c802d8e7f84c669680639547cf3 Mon Sep 17 00:00:00 2001 From: Sanidhya Kumar Verma Date: Fri, 6 Sep 2024 04:09:10 +0000 Subject: [PATCH] setup eas file for building app --- eas.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 eas.json diff --git a/eas.json b/eas.json new file mode 100644 index 0000000..0c52c5d --- /dev/null +++ b/eas.json @@ -0,0 +1,21 @@ +{ + "build": { + "preview": { + "android": { + "buildType": "apk" + } + }, + "preview2": { + "android": { + "gradleCommand": ":app:assembleRelease" + } + }, + "preview3": { + "developmentClient": true + }, + "preview4": { + "distribution": "internal" + }, + "production": {} + } +}