From 81dd7a4efbd94c56b9e4b1d2ab71375c8d0fe01b Mon Sep 17 00:00:00 2001 From: keannu125 Date: Mon, 17 Apr 2023 09:31:49 +0800 Subject: [PATCH] Added eas build files --- app.json | 8 +++++++- eas.json | 24 ++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 eas.json diff --git a/app.json b/app.json index 57b6315..00e31d4 100644 --- a/app.json +++ b/app.json @@ -21,10 +21,16 @@ "adaptiveIcon": { "foregroundImage": "./assets/adaptive-icon.png", "backgroundColor": "#ffffff" - } + }, + "package": "com.keannu125.reactnativenotes" }, "web": { "favicon": "./assets/favicon.png" + }, + "extra": { + "eas": { + "projectId": "3608bc75-584d-4dce-9fba-174ee43935a0" + } } } } diff --git a/eas.json b/eas.json new file mode 100644 index 0000000..66c1b63 --- /dev/null +++ b/eas.json @@ -0,0 +1,24 @@ +{ + "cli": { + "version": ">= 3.9.2" + }, + "build": { + "preview": { + "android": { + "buildType": "apk" + } + }, + "preview2": { + "android": { + "gradleCommand": ":app:assembleRelease" + } + }, + "preview3": { + "developmentClient": true + }, + "production": {} + }, + "submit": { + "production": {} + } +}