Files
health-app/app.json
Marcus Rehbock adb8905ebf
All checks were successful
Build & Release APK / build (push) Successful in 3m28s
App icon: violet heart + ECG pulse on the dashboard's dark palette
Replaces the Expo template icons; adaptive foreground/monochrome/splash
generated from assets/icon-src/*.svg (rsvg-convert).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-07 19:38:28 -07:00

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/images/icon.png",
"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
}
}
}