WellNuo/app.json
Sergei 4a5331b2e4 [TEST] Initial setup - NOT PRODUCTION CODE
⚠️ This is test/experimental code for API integration testing.
Do not use in production.

Includes:
- WellNuo API integration (dashboard, patient context)
- Playwright tests for API verification
- WebView component for dashboard embedding
- API documentation

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-11 13:25:14 -08:00

56 lines
1.4 KiB
JSON

{
"expo": {
"name": "Wellnuo",
"slug": "Wellnuo",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#4A90A4"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.kosyakorel1.wellnuo",
"infoPlist": {
"NSMicrophoneUsageDescription": "Wellnuo needs microphone access to enable voice conversations with your AI health assistant.",
"UIBackgroundModes": [
"audio"
],
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#4A90A4"
},
"permissions": [
"android.permission.RECORD_AUDIO",
"android.permission.MODIFY_AUDIO_SETTINGS"
],
"package": "com.wellnuo.app"
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
[
"expo-av",
{
"microphonePermission": "Wellnuo needs microphone access to enable voice conversations with your AI health assistant."
}
]
],
"extra": {
"eas": {
"projectId": "c9e68e27-5713-4b6d-a313-cb8e7a8866ee"
}
},
"owner": "kosyakorel1"
}
}