Files
featheroom/app.json

52 lines
1.2 KiB
JSON

{
"expo": {
"name": "featheroom",
"slug": "featheroom",
"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"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"infoPlist": {
"ExpoLocalization_supportsRTL": true
},
"bundleIdentifier": "dev.srizan.featheroom"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "dev.srizan.featheroom",
"googleServicesFile": "./lib/google-services.json"
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router",
"expo-secure-store",
"expo-font",
"expo-localization"
],
"experiments": {
"typedRoutes": true
},
"extra": {
"supportsRTL": true
}
}
}