Reputation: 2328
I am working on a call recording app and I wants to convey to the call receiver user that "your voice is being recorded" in voice format. Note: I am asking this query because, my app has been rejected from apple store with following message. Guideline 2.5.14 - Performance - Software Requirements We found that your app records the user but does not have the proper indicators that the app is recording, as required by the App Store Review Guidelines. Specifically, your app records phone conversations but does not have an auditory indicator heard by all parties on the call that the app is recording.
Upvotes: 1
Views: 159
Reputation: 4847
Not sure how you use Twilio in your iOS app (please add code to your question) but the TwiML for a custom text to speech that is read back to the caller is:
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Say>your voice is being recorded</Say>
</Response>
See the Twilio doc.
You'd need to insert this TwiML before interacting with the user.
Upvotes: 2