Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions apps/mobile/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ npm ci
npm run web
```

Voice prompts use the iOS and Android system speech-recognition services, which
may use network transcription depending on the device and its settings. Because
that support includes native code, this app cannot run in Expo Go; test it in a
development build with `npm run ios` or `npm run android`. On web, dictation is
shown when the browser provides the Web Speech API.

## Validate

From the repo root:
Expand Down
9 changes: 8 additions & 1 deletion apps/mobile/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,14 @@
{
"photosPermission": "Allow Brio to attach photos as Hermes context.",
"cameraPermission": "Allow Brio to take a photo and attach it as Hermes context.",
"microphonePermission": false
"microphonePermission": "Allow Brio to use the microphone for voice prompts."
}
],
[
"expo-speech-recognition",
{
"microphonePermission": "Allow Brio to use the microphone for voice prompts.",
"speechRecognitionPermission": "Allow Brio to turn your speech into editable prompt text."
}
],
[
Expand Down
12 changes: 12 additions & 0 deletions apps/mobile/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions apps/mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"expo-router": "~57.0.15",
"expo-secure-store": "~57.0.1",
"expo-sharing": "~57.0.14",
"expo-speech-recognition": "^56.0.4",
"expo-splash-screen": "~57.0.7",
"expo-status-bar": "~57.0.1",
"expo-symbols": "~57.0.2",
Expand Down
Loading
Loading