pogdark-app/app.json

46 lines
985 B
JSON
Raw Normal View History

2025-02-19 18:33:09 +00:00
{
"expo": {
"name": "Pogdark",
"slug": "Pogdark",
2025-02-19 18:33:09 +00:00
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
}
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png",
"build": {
"output": "web-build",
"cacheDirectories": []
}
2025-02-19 18:33:09 +00:00
},
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
"image": "./assets/images/splash-icon.png",
"imageWidth": 200,
"resizeMode": "contain",
"backgroundColor": "#ffffff"
}
]
],
"experiments": {
"typedRoutes": true
}
}
}