What is key name, that I need to add in Info.plist
to display speech recognition authorization request?
Asked
Active
Viewed 1,079 times
2

Juri Noga
- 4,363
- 7
- 38
- 51
1 Answers
4
NSMicrophoneUsageDescription
- for microphone usage authorization.
NSSpeechRecognitionUsageDescription
- for asking speech recognition authorization.
Note that speech recognition as any microphone usage is not available in Simulator.

Juri Noga
- 4,363
- 7
- 38
- 51
-
1For me, microphone usage worked in simulator, however speech recognition only worked on a device. – scrrr Mar 06 '17 at 14:44