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.
27 lines
881 B
JSON
27 lines
881 B
JSON
{
|
|
"name": "pedscribe-mobile",
|
|
"version": "1.0.0",
|
|
"description": "PedScribe native mobile app — Capacitor wrapper for Pediatric AI Scribe",
|
|
"private": true,
|
|
"scripts": {
|
|
"sync": "npx cap sync",
|
|
"android": "npx cap open android",
|
|
"ios": "npx cap open ios",
|
|
"build:android": "npx cap sync android && cd android && ./gradlew assembleRelease",
|
|
"build:ios": "npx cap sync ios"
|
|
},
|
|
"dependencies": {
|
|
"@capacitor/android": "^6.0.0",
|
|
"@capacitor/app": "^6.0.0",
|
|
"@capacitor/cli": "^6.0.0",
|
|
"@capacitor/core": "^6.0.0",
|
|
"@capacitor/ios": "^6.0.0",
|
|
"@capacitor/haptics": "^6.0.0",
|
|
"@capacitor/keyboard": "^6.0.0",
|
|
"@capacitor/push-notifications": "^6.0.0",
|
|
"@capacitor/screen-orientation": "^6.0.0",
|
|
"@capacitor/share": "^6.0.0",
|
|
"@capacitor/splash-screen": "^6.0.0",
|
|
"@capacitor/status-bar": "^6.0.0"
|
|
}
|
|
}
|