2

What is key name, that I need to add in Info.plist to display speech recognition authorization request?

Juri Noga
  • 4,363
  • 7
  • 38
  • 51

1 Answers1

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
  • 1
    For me, microphone usage worked in simulator, however speech recognition only worked on a device. – scrrr Mar 06 '17 at 14:44