Files
umra-app/app.json
Mekan1206 68affb3d4b Update app configuration and scripts for improved build process
- Added package name to app.json for better identification.
- Updated start scripts in package.json to use 'expo run' commands for Android and iOS.
2025-09-20 11:24:49 +05:00

41 lines
903 B
JSON

{
"expo": {
"name": "Umra",
"slug": "Umra",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "umra",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"splash": {
"image": "./assets/images/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"edgeToEdgeEnabled": true,
"package": "com.nurmuhammet.ali.Umra"
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router",
"expo-asset"
],
"experiments": {
"typedRoutes": true
}
}
}