in BasicBroadcast/Utils.swift [52:58]
func displayPermissionError() {
let alert = UIAlertController(title: "Permission Error",
message: "This app does not have access to either the microphone or camera permissions. Please go into system settings and enable thees permissions for this app.",
preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "OK", style: .default))
present(alert, animated: true)
}