2024-10-13 20:14:08 +00:00
|
|
|
import 'dotenv/config';
|
|
|
|
|
|
|
|
|
|
export default {
|
2024-10-08 10:06:19 +00:00
|
|
|
"expo": {
|
2024-10-08 10:09:53 +00:00
|
|
|
"name": "Boxons",
|
2024-10-13 20:14:08 +00:00
|
|
|
"slug": "boxons",
|
2024-10-08 10:06:19 +00:00
|
|
|
"version": "1.0.0",
|
|
|
|
|
"orientation": "portrait",
|
|
|
|
|
"icon": "./assets/images/icon.png",
|
|
|
|
|
"scheme": "myapp",
|
|
|
|
|
"userInterfaceStyle": "automatic",
|
|
|
|
|
"splash": {
|
|
|
|
|
"image": "./assets/images/splash.png",
|
|
|
|
|
"resizeMode": "contain",
|
|
|
|
|
"backgroundColor": "#ffffff"
|
|
|
|
|
},
|
|
|
|
|
"ios": {
|
|
|
|
|
"supportsTablet": true
|
|
|
|
|
},
|
|
|
|
|
"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": [
|
|
|
|
|
"FOREGROUND_SERVICE"
|
|
|
|
|
]
|
2024-10-08 10:06:19 +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
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"owner": "torpenn",
|
|
|
|
|
"runtimeVersion": {
|
|
|
|
|
"policy": "appVersion"
|
|
|
|
|
},
|
|
|
|
|
"updates": {
|
|
|
|
|
"url": process.env.EXPO_EAS_UPDATE_URL
|
2024-10-08 10:06:19 +00:00
|
|
|
}
|
|
|
|
|
}
|
2024-10-13 20:14:08 +00:00
|
|
|
};
|