- Changed userInterfaceStyle from 'automatic' to 'dark' for consistent theming. - Added androidNavigationBar configuration with background color and bar style for improved UI on Android devices.
45 lines
1013 B
JSON
45 lines
1013 B
JSON
{
|
|
"expo": {
|
|
"name": "Umra",
|
|
"slug": "Umra",
|
|
"version": "1.0.0",
|
|
"orientation": "portrait",
|
|
"icon": "./assets/images/icon.png",
|
|
"scheme": "umra",
|
|
"userInterfaceStyle": "dark",
|
|
"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",
|
|
"androidNavigationBar": {
|
|
"backgroundColor": "#1C1C1E",
|
|
"barStyle": "light-content"
|
|
}
|
|
},
|
|
"web": {
|
|
"bundler": "metro",
|
|
"output": "static",
|
|
"favicon": "./assets/images/favicon.png"
|
|
},
|
|
"plugins": [
|
|
"expo-router",
|
|
"expo-asset"
|
|
],
|
|
"experiments": {
|
|
"typedRoutes": true
|
|
}
|
|
}
|
|
}
|