pediatric-ai-scribe-v3/mobile/capacitor.config.json
Daniel 11d4880337 Mobile app: haptics, deep linking, share intent, push notifications, keep-awake
Native improvements:
- Add haptic feedback on recording start (heavy) and stop (medium)
- Add keep-screen-awake during recording (nativeKeepAwake)
- Add isNativeApp() detection helper
- Android: deep linking (pedscribe:// + https://app.pedshub.com)
- Android: share intent for text/plain and application/pdf
- iOS: deep linking (pedscribe:// URL scheme)
- iOS: remote-notification background mode
- Add Capacitor plugins: haptics, keyboard, push-notifications,
  screen-orientation, share

Updated README with complete build/deploy instructions,
App Store listing suggestions, and icon generation guide.
2026-04-11 02:28:30 +02:00

31 lines
645 B
JSON

{
"appId": "com.pedshub.scribe",
"appName": "PedScribe",
"webDir": "src",
"server": {
"allowNavigation": ["*"]
},
"plugins": {
"SplashScreen": {
"launchShowDuration": 1500,
"backgroundColor": "#2563eb",
"showSpinner": true,
"spinnerColor": "#ffffff"
},
"PushNotifications": {
"presentationOptions": ["badge", "sound", "alert"]
},
"Keyboard": {
"resize": "body",
"resizeOnFullScreen": true
}
},
"android": {
"allowMixedContent": true,
"backgroundColor": "#2563eb"
},
"ios": {
"backgroundColor": "#2563eb",
"contentInset": "automatic"
}
}