60 lines
1.3 KiB
JavaScript
60 lines
1.3 KiB
JavaScript
import 'dotenv/config';
|
|
|
|
export default {
|
|
"expo": {
|
|
"name": "Boxons",
|
|
"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",
|
|
"backgroundColor": "#ffffff"
|
|
},
|
|
"ios": {
|
|
"supportsTablet": true,
|
|
"bundleIdentifier": "com.torpenn.boxons"
|
|
},
|
|
"android": {
|
|
"adaptiveIcon": {
|
|
"foregroundImage": "./assets/images/adaptive-icon.png",
|
|
"backgroundColor": "#ffffff"
|
|
},
|
|
"package": "com.torpenn.boxons",
|
|
"permissions": [
|
|
"FOREGROUND_SERVICE",
|
|
"RECEIVE_BOOT_COMPLETED"
|
|
]
|
|
},
|
|
"web": {
|
|
"bundler": "metro",
|
|
"output": "static",
|
|
"favicon": "./assets/images/favicon.png"
|
|
},
|
|
"plugins": [
|
|
"expo-router"
|
|
],
|
|
"experiments": {
|
|
"typedRoutes": true
|
|
},
|
|
"extra": {
|
|
"router": {
|
|
"origin": false
|
|
},
|
|
"eas": {
|
|
"projectId": process.env.EXPO_EAS_PROJECT_ID
|
|
},
|
|
"appNameDevelopment": "Boxons Dev",
|
|
"appNameProduction": "Boxons"
|
|
},
|
|
"owner": "torpenn",
|
|
"runtimeVersion": "1.0.0",
|
|
"updates": {
|
|
"url": process.env.EXPO_EAS_UPDATE_URL
|
|
}
|
|
}
|
|
};
|