Matthias Nott
2026-03-02 a0f39302919fbacf7a0d407f01b1a50413ea6f70
app.json
....@@ -18,7 +18,8 @@
1818 "bundleIdentifier": "org.mnsoft.pailot",
1919 "appleTeamId": "7KU642K5ZL",
2020 "infoPlist": {
21
- "NSMicrophoneUsageDescription": "PAILot needs microphone access to record voice messages.",
21
+ "NSMicrophoneUsageDescription": "PAILot needs microphone access for voice input.",
22
+ "NSSpeechRecognitionUsageDescription": "PAILot uses speech recognition to convert your voice to text.",
2223 "UIBackgroundModes": [
2324 "audio"
2425 ]
....@@ -43,9 +44,16 @@
4344 "plugins": [
4445 "expo-router",
4546 [
46
- "expo-av",
47
+ "expo-audio",
4748 {
48
- "microphonePermission": "PAILot needs microphone access to record voice messages."
49
+ "microphonePermission": "PAILot needs microphone access for voice input."
50
+ }
51
+ ],
52
+ [
53
+ "expo-speech-recognition",
54
+ {
55
+ "microphonePermission": "PAILot needs microphone access for voice input.",
56
+ "speechRecognitionPermission": "PAILot uses speech recognition to convert your voice to text."
4957 }
5058 ],
5159 "expo-secure-store"