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.
31 lines
645 B
JSON
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"
|
|
}
|
|
}
|