[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:
parent
de725404ef
commit
c62809d910
|
@ -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
|
||||
|
|
|
@ -18,6 +18,7 @@ import AVKit
|
|||
import CallKit
|
||||
import Foundation
|
||||
|
||||
@available(iOS 10.0, *)
|
||||
@objc public protocol JMCallKitListener: NSObjectProtocol {
|
||||
|
||||
@available(iOS 10.0, *)
|
||||
|
|
Loading…
Reference in New Issue