1

Situation

I use Twilio iOS SDK for my iOS Voip application.

Currently, I'm trying to call from any numbers to my Voip application developed by Twilio iOS SDK. The Voip application has already got call and accept it properly. However, the caller can't hear the voice from the phone which installed Voip application. I guess it's because the microphone for the Voip application is turned off, but I confirmed the voice section for the application does not appear on the settings of iOS when I reach to

[settings -> privacy -> microphone]

Question

How can I make my Voip application show on the microphone settings of iOS?

Megan Speir
  • 3,745
  • 1
  • 15
  • 25
REI
  • 404
  • 2
  • 5
  • 17
  • Have you requested access to the microphone? Like in this question: http://stackoverflow.com/questions/17081753/how-do-i-request-mic-record-permission-from-user – philnash Sep 16 '16 at 14:06
  • I requested access to mictophone and was not able to access it, but I found it was my info.plist of Xcode issue later. Now I could make it work. Thank you philnash for your advice. – REI Sep 19 '16 at 03:06
  • Sweet, glad it's working! – philnash Sep 19 '16 at 09:57

2 Answers2

0

OP in comments:

I requested access to microphone and was not able to access it, but I found it was my info.plist of Xcode issue later. Now I could make it work.

Megan Speir
  • 3,745
  • 1
  • 15
  • 25
0

Sorry for my late post. The thing was I had to add NSMicrophoneUsageDescription for my info.plist from iOS 10 and it works! reference

REI
  • 404
  • 2
  • 5
  • 17