From 258435cbdd3dad36c6b1c02965b3c22101ff0394 Mon Sep 17 00:00:00 2001 From: Keannu Bernasol Date: Wed, 19 Jul 2023 02:27:34 +0800 Subject: [PATCH] Added needed build confs --- app.json | 17 ++++++++++++++--- eas.json | 19 +++++++++++++++++++ 2 files changed, 33 insertions(+), 3 deletions(-) create mode 100644 eas.json diff --git a/app.json b/app.json index f1fc1ee..9e8bd9c 100644 --- a/app.json +++ b/app.json @@ -1,6 +1,6 @@ { "expo": { - "name": "StudE_Frontend", + "name": "StudE", "scheme": "stude", "slug": "StudE_Frontend", "version": "1.0.0", @@ -22,7 +22,13 @@ "adaptiveIcon": { "foregroundImage": "./assets/adaptive-icon.png", "backgroundColor": "#FFFF" - } + }, + "package": "com.teamblackpink.stude", + "permissions": [ + "android.permission.ACCESS_COARSE_LOCATION", + "android.permission.ACCESS_FINE_LOCATION", + "android.permission.FOREGROUND_SERVICE" + ] }, "web": { "favicon": "./assets/favicon.png" @@ -34,6 +40,11 @@ "locationAlwaysAndWhenInUsePermission": "Allow Stud-E to use your location." } ] - ] + ], + "extra": { + "eas": { + "projectId": "614fd93f-345c-4d72-a9e7-592f1ba0c6e8" + } + } } } diff --git a/eas.json b/eas.json new file mode 100644 index 0000000..02060ed --- /dev/null +++ b/eas.json @@ -0,0 +1,19 @@ +{ + "build": { + "preview": { + "android": { + "buildType": "apk" + } + }, + "preview2": { + "android": { + "gradleCommand": ":app:assembleRelease" + } + }, + "preview3": { + "developmentClient": true + }, + "production": {} + } + } + \ No newline at end of file