[iOS] Fix SDK deployment target to be able to compile with iOS 9.3

Fixes: https://github.com/jitsi/jitsi-meet/issues/3086
This commit is contained in:
Daniel Ornelas 2018-06-04 09:12:59 -05:00 committed by Saúl Ibarra Corretgé
parent de725404ef
commit c62809d910
2 changed files with 3 additions and 0 deletions

View File

@ -18,6 +18,7 @@ import AVKit
import CallKit
import Foundation
@available(iOS 10.0, *)
internal final class JMCallKitEmitter: NSObject, CXProviderDelegate {
private var listeners = Set<JMCallKitEventListenerWrapper>()
@ -130,6 +131,7 @@ internal final class JMCallKitEmitter: NSObject, CXProviderDelegate {
}
}
@available(iOS 10.0, *)
fileprivate struct JMCallKitEventListenerWrapper: Hashable {
public var hashValue: Int

View File

@ -18,6 +18,7 @@ import AVKit
import CallKit
import Foundation
@available(iOS 10.0, *)
@objc public protocol JMCallKitListener: NSObjectProtocol {
@available(iOS 10.0, *)