Files
health-app/app.json

49 lines
1.2 KiB
JSON

{
"expo": {
"name": "Health",
"slug": "health-app",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "healthapp",
"userInterfaceStyle": "dark",
"backgroundColor": "#0d0d0f",
"ios": {
"icon": "./assets/expo.icon",
"bundleIdentifier": "xyz.rehbock.health",
"supportsTablet": true
},
"android": {
"package": "xyz.rehbock.health",
"adaptiveIcon": {
"backgroundColor": "#0d0d0f",
"foregroundImage": "./assets/images/android-icon-foreground.png",
"backgroundImage": "./assets/images/android-icon-background.png",
"monochromeImage": "./assets/images/android-icon-monochrome.png"
},
"predictiveBackGestureEnabled": false
},
"web": {
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router",
"expo-secure-store",
"./plugins/with-release-signing.js",
[
"expo-splash-screen",
{
"backgroundColor": "#0d0d0f",
"image": "./assets/images/splash-icon.png",
"imageWidth": 76
}
]
],
"experiments": {
"typedRoutes": true,
"reactCompiler": true
}
}
}