Class

HIDApproveDevice

Parent device object used to query device information and discover any active containers.

Declaration

final class HIDApproveDevice

Overview

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)
}

Topics

Initializers

Enumerations

See Also

Containers