init(appGroupId: String, keychainId: String) throws
Create instance used to discover active containers
final class HIDApproveDevice
The HIDApproveDevice is the starting point for the SDK.
This instance is used to initialize the HID Approve SDK for Apple Wallet Extension.
Example Code:
do {
let walletDevice = try HIDApproveDevice(
appGroupId: groupId,
keychainId: keyId
)
let sdkver = try walletDevice?.getVersion()
let list = try walletDevice?.findContainers()
}
catch let error as NSError {
self.handleFailure(error)
}
init(appGroupId: String, keychainId: String) throws
func findContainers() throws -> [HIDApproveContainer]
func getDeviceInfo(propertyId: DeviceInfoId) throws -> String
func getVersion() throws -> String
enum DeviceInfoId
class HIDApproveContainer