boxons/app.config.js

60 lines
1.3 KiB
JavaScript
Raw Permalink Normal View History

2024-10-13 20:14:08 +00:00
import 'dotenv/config';
export default {
"expo": {
"name": "Boxons",
2024-10-13 20:14:08 +00:00
"slug": "boxons",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
2025-03-03 22:10:26 +00:00
"backgroundColor": "#000000"
},
"ios": {
2024-12-08 17:01:28 +00:00
"supportsTablet": true,
"bundleIdentifier": "com.torpenn.boxons"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
2024-10-13 20:14:08 +00:00
},
2024-10-20 08:01:01 +00:00
"package": "com.torpenn.boxons",
"permissions": [
2024-12-08 17:01:28 +00:00
"FOREGROUND_SERVICE",
"RECEIVE_BOOT_COMPLETED"
2024-10-20 08:01:01 +00:00
]
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router"
],
"experiments": {
"typedRoutes": true
2024-10-13 20:14:08 +00:00
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": process.env.EXPO_EAS_PROJECT_ID
2024-12-08 17:01:28 +00:00
},
"appNameDevelopment": "Boxons Dev",
"appNameProduction": "Boxons"
2024-10-13 20:14:08 +00:00
},
"owner": "torpenn",
2024-12-08 17:01:28 +00:00
"runtimeVersion": "1.0.0",
2024-10-13 20:14:08 +00:00
"updates": {
"url": process.env.EXPO_EAS_UPDATE_URL
}
}
2024-10-13 20:14:08 +00:00
};