-
Notifications
You must be signed in to change notification settings - Fork 3
Permissions
Adnan Arnautović edited this page May 19, 2022
·
1 revision
In order to use Infobip RTC in your application, it is required to grant following permissions:
Before making any call, make sure to request permission to record.
Example:
AVAudioSession.sharedInstance().requestRecordPermission { granted in
if granted {
// The user granted access. Present recording interface.
}
}
Please check the official documentation for additional details.
Make sure Camera permission is requested before making or switching to video call.
Example:
AVCaptureDevice.requestAccess(for: AVMediaType.video) { response in
if granted {
// The user granted access. Present camera interface.
}
}
Please check the official documentation for additional details.