-1

How to authorize callkit, CXProvider.authorizationStatus is not avilable in latest version of xcode8 beta.

    let cxpor = CXProvider(configuration: conf)
    cxpor?.setDelegate(self, queue: DispatchQueue.main)
Madhu
  • 994
  • 1
  • 12
  • 33

1 Answers1

1

It's not available because authorization is no longer needed to use the API.

zmarties
  • 4,809
  • 22
  • 39
  • This looks to be right. When I first saw that CallKit required permissions, I was really annoyed. After all, it provides zero access to information on the device, and it seems unlikely that anyone who downloads an app that could benefit from CallKit wouldn't want it to work that way. Glad the permissions requirement was removed. – Colin M Sep 14 '16 at 02:20