From cc89c2d1549a9c3c93bce91b37d73969722fea62 Mon Sep 17 00:00:00 2001 From: Sergei Date: Tue, 27 Jan 2026 16:21:56 -0800 Subject: [PATCH] Add expo-speech-recognition plugin with permissions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Configure @jamsch/expo-speech-recognition plugin in app.json with custom permission messages for microphone and speech recognition access. This enables native STT functionality for the Voice FAB feature. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/app.json b/app.json index 32d1b63..c40172e 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "WellNuo", "slug": "WellNuo", - "version": "1.0.5", + "version": "1.0.6", "orientation": "portrait", "icon": "./assets/images/icon.png", "scheme": "wellnuo", @@ -64,6 +64,13 @@ } ], "@config-plugins/react-native-webrtc", + [ + "@jamsch/expo-speech-recognition", + { + "microphonePermission": "WellNuo needs access to your microphone to listen to your voice commands.", + "speechRecognitionPermission": "WellNuo uses speech recognition to convert your voice to text for Julia AI." + } + ], "expo-router", [ "expo-splash-screen",