diff --git a/frontend-admin/app.json b/frontend-admin/app.json index 14ec3588..a601099a 100644 --- a/frontend-admin/app.json +++ b/frontend-admin/app.json @@ -13,14 +13,20 @@ "backgroundColor": "#0a0a0a" }, "ios": { - "supportsTablet": true + "supportsTablet": true, + "bundleIdentifier": "com.uberstup.adminpanel" }, "android": { + "package": "com.uberstup.adminpanel", "adaptiveIcon": { "foregroundImage": "./assets/adaptive-icon.png", "backgroundColor": "#0a0a0a" }, - "edgeToEdgeEnabled": true + "edgeToEdgeEnabled": true, + "permissions": [ + "android.permission.ACCESS_COARSE_LOCATION", + "android.permission.ACCESS_FINE_LOCATION" + ] }, "web": { "favicon": "./assets/favicon.png" @@ -28,6 +34,12 @@ "plugins": [ "expo-font", "expo-location" - ] + ], + "extra": { + "eas": { + "projectId": "fcb7a0bc-5b2f-453d-ba16-9f97d9f0e440" + } + }, + "owner": "xor290" } } diff --git a/frontend-admin/eas.json b/frontend-admin/eas.json new file mode 100644 index 00000000..c1be6021 --- /dev/null +++ b/frontend-admin/eas.json @@ -0,0 +1,41 @@ +{ + "cli": { + "version": ">= 16.0.0", + "appVersionSource": "local" + }, + "build": { + "development": { + "developmentClient": true, + "distribution": "internal", + "android": { + "buildType": "apk", + "gradleCommand": ":app:assembleDebug" + }, + "ios": { + "simulator": true + }, + "env": { + "API_URL": "https://uber-stup.club" + } + }, + "preview": { + "distribution": "internal", + "android": { + "buildType": "apk" + }, + "env": { + "API_URL": "https://uber-stup.club" + } + }, + "production": { + "distribution": "internal", + "autoIncrement": true, + "android": { + "buildType": "apk" + }, + "env": { + "API_URL": "https://uber-stup.club" + } + } + } +}