Skip to content

Commit

Permalink
Updated to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaoj committed Feb 11, 2022
1 parent aa0428f commit febc684
Show file tree
Hide file tree
Showing 20 changed files with 111 additions and 75 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by Apple Swift version 5.5.1 (swiftlang-1300.0.31.4 clang-1300.0.29.6)
// Generated by Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)
#ifndef SECUREUNLOCK_SWIFT_H
#define SECUREUNLOCK_SWIFT_H
#pragma clang diagnostic push
Expand Down Expand Up @@ -210,7 +210,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif


SWIFT_CLASS("_TtC12SecureUnlock13BeaconManager")
SWIFT_CLASS("_TtC12SecureUnlock13BeaconManager") SWIFT_AVAILABILITY(ios,introduced=13.0)
@interface BeaconManager : NSObject
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
Expand All @@ -222,6 +222,7 @@ SWIFT_CLASS("_TtC12SecureUnlock13BeaconManager")
@class CLBeacon;
@class CLBeaconRegion;

SWIFT_AVAILABILITY(ios,introduced=13.0)
@interface BeaconManager (SWIFT_EXTENSION(SecureUnlock)) <CLLocationManagerDelegate>
- (void)locationManager:(CLLocationManager * _Nonnull)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status;
- (void)locationManager:(CLLocationManager * _Nonnull)manager didFailWithError:(NSError * _Nonnull)error;
Expand All @@ -245,7 +246,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _
@end


SWIFT_CLASS("_TtC12SecureUnlock19SecureUnlockManager")
SWIFT_CLASS("_TtC12SecureUnlock19SecureUnlockManager") SWIFT_AVAILABILITY(ios,introduced=13.0)
@interface SecureUnlockManager : NSObject
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) SecureUnlockManager * _Nonnull shared;)
+ (SecureUnlockManager * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
Expand All @@ -260,6 +261,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) SecureUnlock
@class CBService;
@class NSString;

SWIFT_AVAILABILITY(ios,introduced=13.0)
@interface SecureUnlockManager (SWIFT_EXTENSION(SecureUnlock)) <CBPeripheralManagerDelegate>
- (void)peripheralManagerDidUpdateState:(CBPeripheralManager * _Nonnull)peripheral;
- (void)peripheralManager:(CBPeripheralManager * _Nonnull)peripheral didReceiveReadRequest:(CBATTRequest * _Nonnull)request;
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.5.1 (swiftlang-1300.0.31.4 clang-1300.0.29.6)
// swift-module-flags: -target arm64-apple-ios13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name SecureUnlock
// swift-compiler-version: Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)
// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name SecureUnlock
import CommonCrypto
import CoreBluetooth
import CoreLocation
Expand Down Expand Up @@ -53,13 +53,15 @@ public struct BeaconLock : Swift.Identifiable, Swift.Equatable, Swift.Codable {
public func encode(to encoder: Swift.Encoder) throws
public init(from decoder: Swift.Decoder) throws
}
@objc @_hasMissingDesignatedInitializers final public class BeaconManager : ObjectiveC.NSObject {
@objc @_hasMissingDesignatedInitializers @available(iOS 13.0, *)
final public class BeaconManager : ObjectiveC.NSObject {
public static let shared: SecureUnlock.BeaconManager
final public var enteredBeaconsLocks: [CoreLocation.CLBeaconRegion : [SecureUnlock.BeaconLock]] {
get
}
@objc deinit
}
@available(iOS 13.0, *)
extension SecureUnlock.BeaconManager {
final public func startMonitoring()
final public func stopMonitoring()
Expand All @@ -68,6 +70,7 @@ extension SecureUnlock.BeaconManager {
final public func isNearbyLock(_ id: Swift.Int) -> Swift.Bool
final public func timeBasedOneTimePasswordForLock(_ id: Swift.Int) -> Swift.Int?
}
@available(iOS 13.0, *)
extension SecureUnlock.BeaconManager : CoreLocation.CLLocationManagerDelegate {
@objc final public func locationManager(_ manager: CoreLocation.CLLocationManager, didChangeAuthorization status: CoreLocation.CLAuthorizationStatus)
@objc final public func locationManager(_ manager: CoreLocation.CLLocationManager, didFailWithError error: Swift.Error)
Expand All @@ -78,7 +81,8 @@ extension SecureUnlock.BeaconManager : CoreLocation.CLLocationManagerDelegate {
@objc final public func locationManager(_ manager: CoreLocation.CLLocationManager, didRangeBeacons beacons: [CoreLocation.CLBeacon], in region: CoreLocation.CLBeaconRegion)
@objc final public func locationManager(_ manager: CoreLocation.CLLocationManager, rangingBeaconsDidFailFor region: CoreLocation.CLBeaconRegion, withError error: Swift.Error)
}
@objc @_hasMissingDesignatedInitializers final public class SecureUnlockManager : ObjectiveC.NSObject {
@objc @_hasMissingDesignatedInitializers @available(iOS 13.0, *)
final public class SecureUnlockManager : ObjectiveC.NSObject {
@objc public static let shared: SecureUnlock.SecureUnlockManager
weak final public var delegate: SecureUnlock.SecureUnlockDelegate? {
get
Expand All @@ -88,6 +92,7 @@ extension SecureUnlock.BeaconManager : CoreLocation.CLLocationManagerDelegate {
@objc final public func stop()
@objc deinit
}
@available(iOS 13.0, *)
extension SecureUnlock.SecureUnlockManager : CoreBluetooth.CBPeripheralManagerDelegate {
@objc final public func peripheralManagerDidUpdateState(_ peripheral: CoreBluetooth.CBPeripheralManager)
@objc final public func peripheralManager(_ peripheral: CoreBluetooth.CBPeripheralManager, didReceiveRead request: CoreBluetooth.CBATTRequest)
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.5.1 (swiftlang-1300.0.31.4 clang-1300.0.29.6)
// swift-module-flags: -target arm64-apple-ios13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name SecureUnlock
// swift-compiler-version: Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)
// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name SecureUnlock
import CommonCrypto
import CoreBluetooth
import CoreLocation
Expand Down Expand Up @@ -53,13 +53,15 @@ public struct BeaconLock : Swift.Identifiable, Swift.Equatable, Swift.Codable {
public func encode(to encoder: Swift.Encoder) throws
public init(from decoder: Swift.Decoder) throws
}
@objc @_hasMissingDesignatedInitializers final public class BeaconManager : ObjectiveC.NSObject {
@objc @_hasMissingDesignatedInitializers @available(iOS 13.0, *)
final public class BeaconManager : ObjectiveC.NSObject {
public static let shared: SecureUnlock.BeaconManager
final public var enteredBeaconsLocks: [CoreLocation.CLBeaconRegion : [SecureUnlock.BeaconLock]] {
get
}
@objc deinit
}
@available(iOS 13.0, *)
extension SecureUnlock.BeaconManager {
final public func startMonitoring()
final public func stopMonitoring()
Expand All @@ -68,6 +70,7 @@ extension SecureUnlock.BeaconManager {
final public func isNearbyLock(_ id: Swift.Int) -> Swift.Bool
final public func timeBasedOneTimePasswordForLock(_ id: Swift.Int) -> Swift.Int?
}
@available(iOS 13.0, *)
extension SecureUnlock.BeaconManager : CoreLocation.CLLocationManagerDelegate {
@objc final public func locationManager(_ manager: CoreLocation.CLLocationManager, didChangeAuthorization status: CoreLocation.CLAuthorizationStatus)
@objc final public func locationManager(_ manager: CoreLocation.CLLocationManager, didFailWithError error: Swift.Error)
Expand All @@ -78,7 +81,8 @@ extension SecureUnlock.BeaconManager : CoreLocation.CLLocationManagerDelegate {
@objc final public func locationManager(_ manager: CoreLocation.CLLocationManager, didRangeBeacons beacons: [CoreLocation.CLBeacon], in region: CoreLocation.CLBeaconRegion)
@objc final public func locationManager(_ manager: CoreLocation.CLLocationManager, rangingBeaconsDidFailFor region: CoreLocation.CLBeaconRegion, withError error: Swift.Error)
}
@objc @_hasMissingDesignatedInitializers final public class SecureUnlockManager : ObjectiveC.NSObject {
@objc @_hasMissingDesignatedInitializers @available(iOS 13.0, *)
final public class SecureUnlockManager : ObjectiveC.NSObject {
@objc public static let shared: SecureUnlock.SecureUnlockManager
weak final public var delegate: SecureUnlock.SecureUnlockDelegate? {
get
Expand All @@ -88,6 +92,7 @@ extension SecureUnlock.BeaconManager : CoreLocation.CLLocationManagerDelegate {
@objc final public func stop()
@objc deinit
}
@available(iOS 13.0, *)
extension SecureUnlock.SecureUnlockManager : CoreBluetooth.CBPeripheralManagerDelegate {
@objc final public func peripheralManagerDidUpdateState(_ peripheral: CoreBluetooth.CBPeripheralManager)
@objc final public func peripheralManager(_ peripheral: CoreBluetooth.CBPeripheralManager, didReceiveRead request: CoreBluetooth.CBATTRequest)
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -6,39 +6,39 @@
<dict>
<key>Headers/SecureUnlock-Swift.h</key>
<data>
ttCRSzfA3fqrvrKZwOSpzNFLTc8=
Os+OvOn79NQhl1FWY1VzXRtLUV0=
</data>
<key>Headers/SecureUnlock.h</key>
<data>
WPUVhBNjR9E9bZJOu3snxg5tL9o=
</data>
<key>Info.plist</key>
<data>
UwqLMuw11vH8qtQWUXK6Ux++n0Q=
llWGYazZwlfilP2y2GMsYHvfRfo=
</data>
<key>Modules/SecureUnlock.swiftmodule/arm64-apple-ios.swiftdoc</key>
<data>
ZU8axXF0hJaT3riFwlRCqF2RAwE=
Hafng9KRopwxj8nb05yeYt7yzpI=
</data>
<key>Modules/SecureUnlock.swiftmodule/arm64-apple-ios.swiftinterface</key>
<data>
J8unAW11pjMn55aK5qIb/9YQSrc=
OO8yUx7JtpIABilXMof3g8WfpKU=
</data>
<key>Modules/SecureUnlock.swiftmodule/arm64-apple-ios.swiftmodule</key>
<data>
h9tH9CdzQlquQAU60NbpZn67Jkw=
MPNYDSQUX+mKytPZR2szhjcWN3k=
</data>
<key>Modules/SecureUnlock.swiftmodule/arm64.swiftdoc</key>
<data>
ZU8axXF0hJaT3riFwlRCqF2RAwE=
Hafng9KRopwxj8nb05yeYt7yzpI=
</data>
<key>Modules/SecureUnlock.swiftmodule/arm64.swiftinterface</key>
<data>
J8unAW11pjMn55aK5qIb/9YQSrc=
OO8yUx7JtpIABilXMof3g8WfpKU=
</data>
<key>Modules/SecureUnlock.swiftmodule/arm64.swiftmodule</key>
<data>
h9tH9CdzQlquQAU60NbpZn67Jkw=
MPNYDSQUX+mKytPZR2szhjcWN3k=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand All @@ -51,7 +51,7 @@
<dict>
<key>hash2</key>
<data>
7iHTuqTd4i3ci7GfOyfK/JFPBmQQviehdCJt7eRGGAo=
35brDVsLvbwX02qfhdBm9C0Isp7boel/4fsRGlKrurk=
</data>
</dict>
<key>Headers/SecureUnlock.h</key>
Expand All @@ -65,42 +65,42 @@
<dict>
<key>hash2</key>
<data>
1qpisK/6iPvPceQ/hAhyitvpj2Xq0WkyQMbvVA+lu1o=
RmZMsBn6myS7EsKMrbiVff4DlOzXfVGZ/ydtN5VvRPw=
</data>
</dict>
<key>Modules/SecureUnlock.swiftmodule/arm64-apple-ios.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
UesWgmYkcjCEn2zC3U3mkrIQk3CiApaSbPmP5DKkllw=
brM6TNxbM6l0LaP2yp5rA2Nb6Fr4Niwgb3XABI4h43Y=
</data>
</dict>
<key>Modules/SecureUnlock.swiftmodule/arm64-apple-ios.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
CPP3hCV+6m9uozO3uXD0V7BTWKm8cgmvUzlQHG/ZhGA=
xHLlHenifWNl90UMqmTizi3JIee9XTCizStdshwqu3Y=
</data>
</dict>
<key>Modules/SecureUnlock.swiftmodule/arm64.swiftdoc</key>
<dict>
<key>hash2</key>
<data>
1qpisK/6iPvPceQ/hAhyitvpj2Xq0WkyQMbvVA+lu1o=
RmZMsBn6myS7EsKMrbiVff4DlOzXfVGZ/ydtN5VvRPw=
</data>
</dict>
<key>Modules/SecureUnlock.swiftmodule/arm64.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
UesWgmYkcjCEn2zC3U3mkrIQk3CiApaSbPmP5DKkllw=
brM6TNxbM6l0LaP2yp5rA2Nb6Fr4Niwgb3XABI4h43Y=
</data>
</dict>
<key>Modules/SecureUnlock.swiftmodule/arm64.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
CPP3hCV+6m9uozO3uXD0V7BTWKm8cgmvUzlQHG/ZhGA=
xHLlHenifWNl90UMqmTizi3JIee9XTCizStdshwqu3Y=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Generated by Apple Swift version 5.5.1 (swiftlang-1300.0.31.4 clang-1300.0.29.6)
// Generated by Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)
#ifndef SECUREUNLOCK_SWIFT_H
#define SECUREUNLOCK_SWIFT_H
#pragma clang diagnostic push
Expand Down Expand Up @@ -212,7 +212,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif


SWIFT_CLASS("_TtC12SecureUnlock13BeaconManager")
SWIFT_CLASS("_TtC12SecureUnlock13BeaconManager") SWIFT_AVAILABILITY(ios,introduced=13.0)
@interface BeaconManager : NSObject
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
Expand All @@ -224,6 +224,7 @@ SWIFT_CLASS("_TtC12SecureUnlock13BeaconManager")
@class CLBeacon;
@class CLBeaconRegion;

SWIFT_AVAILABILITY(ios,introduced=13.0)
@interface BeaconManager (SWIFT_EXTENSION(SecureUnlock)) <CLLocationManagerDelegate>
- (void)locationManager:(CLLocationManager * _Nonnull)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status;
- (void)locationManager:(CLLocationManager * _Nonnull)manager didFailWithError:(NSError * _Nonnull)error;
Expand All @@ -247,7 +248,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _
@end


SWIFT_CLASS("_TtC12SecureUnlock19SecureUnlockManager")
SWIFT_CLASS("_TtC12SecureUnlock19SecureUnlockManager") SWIFT_AVAILABILITY(ios,introduced=13.0)
@interface SecureUnlockManager : NSObject
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) SecureUnlockManager * _Nonnull shared;)
+ (SecureUnlockManager * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
Expand All @@ -262,6 +263,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) SecureUnlock
@class CBService;
@class NSString;

SWIFT_AVAILABILITY(ios,introduced=13.0)
@interface SecureUnlockManager (SWIFT_EXTENSION(SecureUnlock)) <CBPeripheralManagerDelegate>
- (void)peripheralManagerDidUpdateState:(CBPeripheralManager * _Nonnull)peripheral;
- (void)peripheralManager:(CBPeripheralManager * _Nonnull)peripheral didReceiveReadRequest:(CBATTRequest * _Nonnull)request;
Expand All @@ -278,7 +280,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) SecureUnlock
#endif

#elif defined(__x86_64__) && __x86_64__
// Generated by Apple Swift version 5.5.1 (swiftlang-1300.0.31.4 clang-1300.0.29.6)
// Generated by Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)
#ifndef SECUREUNLOCK_SWIFT_H
#define SECUREUNLOCK_SWIFT_H
#pragma clang diagnostic push
Expand Down Expand Up @@ -490,7 +492,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif


SWIFT_CLASS("_TtC12SecureUnlock13BeaconManager")
SWIFT_CLASS("_TtC12SecureUnlock13BeaconManager") SWIFT_AVAILABILITY(ios,introduced=13.0)
@interface BeaconManager : NSObject
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
Expand All @@ -502,6 +504,7 @@ SWIFT_CLASS("_TtC12SecureUnlock13BeaconManager")
@class CLBeacon;
@class CLBeaconRegion;

SWIFT_AVAILABILITY(ios,introduced=13.0)
@interface BeaconManager (SWIFT_EXTENSION(SecureUnlock)) <CLLocationManagerDelegate>
- (void)locationManager:(CLLocationManager * _Nonnull)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status;
- (void)locationManager:(CLLocationManager * _Nonnull)manager didFailWithError:(NSError * _Nonnull)error;
Expand All @@ -525,7 +528,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _
@end


SWIFT_CLASS("_TtC12SecureUnlock19SecureUnlockManager")
SWIFT_CLASS("_TtC12SecureUnlock19SecureUnlockManager") SWIFT_AVAILABILITY(ios,introduced=13.0)
@interface SecureUnlockManager : NSObject
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) SecureUnlockManager * _Nonnull shared;)
+ (SecureUnlockManager * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
Expand All @@ -540,6 +543,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) SecureUnlock
@class CBService;
@class NSString;

SWIFT_AVAILABILITY(ios,introduced=13.0)
@interface SecureUnlockManager (SWIFT_EXTENSION(SecureUnlock)) <CBPeripheralManagerDelegate>
- (void)peripheralManagerDidUpdateState:(CBPeripheralManager * _Nonnull)peripheral;
- (void)peripheralManager:(CBPeripheralManager * _Nonnull)peripheral didReceiveReadRequest:(CBATTRequest * _Nonnull)request;
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.5.1 (swiftlang-1300.0.31.4 clang-1300.0.29.6)
// swift-module-flags: -target arm64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name SecureUnlock
// swift-compiler-version: Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)
// swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name SecureUnlock
import CommonCrypto
import CoreBluetooth
import CoreLocation
Expand Down Expand Up @@ -53,13 +53,15 @@ public struct BeaconLock : Swift.Identifiable, Swift.Equatable, Swift.Codable {
public func encode(to encoder: Swift.Encoder) throws
public init(from decoder: Swift.Decoder) throws
}
@objc @_hasMissingDesignatedInitializers final public class BeaconManager : ObjectiveC.NSObject {
@objc @_hasMissingDesignatedInitializers @available(iOS 13.0, *)
final public class BeaconManager : ObjectiveC.NSObject {
public static let shared: SecureUnlock.BeaconManager
final public var enteredBeaconsLocks: [CoreLocation.CLBeaconRegion : [SecureUnlock.BeaconLock]] {
get
}
@objc deinit
}
@available(iOS 13.0, *)
extension SecureUnlock.BeaconManager {
final public func startMonitoring()
final public func stopMonitoring()
Expand All @@ -68,6 +70,7 @@ extension SecureUnlock.BeaconManager {
final public func isNearbyLock(_ id: Swift.Int) -> Swift.Bool
final public func timeBasedOneTimePasswordForLock(_ id: Swift.Int) -> Swift.Int?
}
@available(iOS 13.0, *)
extension SecureUnlock.BeaconManager : CoreLocation.CLLocationManagerDelegate {
@objc final public func locationManager(_ manager: CoreLocation.CLLocationManager, didChangeAuthorization status: CoreLocation.CLAuthorizationStatus)
@objc final public func locationManager(_ manager: CoreLocation.CLLocationManager, didFailWithError error: Swift.Error)
Expand All @@ -78,7 +81,8 @@ extension SecureUnlock.BeaconManager : CoreLocation.CLLocationManagerDelegate {
@objc final public func locationManager(_ manager: CoreLocation.CLLocationManager, didRangeBeacons beacons: [CoreLocation.CLBeacon], in region: CoreLocation.CLBeaconRegion)
@objc final public func locationManager(_ manager: CoreLocation.CLLocationManager, rangingBeaconsDidFailFor region: CoreLocation.CLBeaconRegion, withError error: Swift.Error)
}
@objc @_hasMissingDesignatedInitializers final public class SecureUnlockManager : ObjectiveC.NSObject {
@objc @_hasMissingDesignatedInitializers @available(iOS 13.0, *)
final public class SecureUnlockManager : ObjectiveC.NSObject {
@objc public static let shared: SecureUnlock.SecureUnlockManager
weak final public var delegate: SecureUnlock.SecureUnlockDelegate? {
get
Expand All @@ -88,6 +92,7 @@ extension SecureUnlock.BeaconManager : CoreLocation.CLLocationManagerDelegate {
@objc final public func stop()
@objc deinit
}
@available(iOS 13.0, *)
extension SecureUnlock.SecureUnlockManager : CoreBluetooth.CBPeripheralManagerDelegate {
@objc final public func peripheralManagerDidUpdateState(_ peripheral: CoreBluetooth.CBPeripheralManager)
@objc final public func peripheralManager(_ peripheral: CoreBluetooth.CBPeripheralManager, didReceiveRead request: CoreBluetooth.CBATTRequest)
Expand Down
Binary file not shown.
Loading

0 comments on commit febc684

Please sign in to comment.