1
1
mirror of https://github.com/theoludwig/p61-project.git synced 2024-07-17 07:00:12 +02:00
p61-project/app.json

36 lines
874 B
JSON
Raw Normal View History

2024-02-16 22:51:50 +01:00
{
"expo": {
"name": "p61-project",
"slug": "p61-project",
"version": "1.0.0",
"orientation": "portrait",
2024-03-16 00:36:44 +01:00
"icon": "./presentation/assets/images/icon.png",
2024-03-15 22:48:28 +01:00
"scheme": "p61-project",
2024-02-16 22:51:50 +01:00
"userInterfaceStyle": "automatic",
"splash": {
2024-03-16 00:36:44 +01:00
"image": "./presentation/assets/images/splashscreen.jpg",
2024-02-16 22:51:50 +01:00
"resizeMode": "cover",
"backgroundColor": "#74b6cb"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
2024-03-16 00:36:44 +01:00
"foregroundImage": "./presentation/assets/images/adaptive-icon.png",
2024-02-16 22:51:50 +01:00
"backgroundColor": "#ffffff"
}
},
"web": {
"bundler": "metro",
"output": "static",
2024-03-16 00:36:44 +01:00
"favicon": "./presentation/assets/images/favicon.png"
2024-02-16 22:51:50 +01:00
},
"plugins": ["expo-router"],
"experiments": {
"typedRoutes": true
}
}
}