IKnox Licence Callback
IKnoxLicenceCallback
Description :
This interface represent the interface of the API to recover all the keys necessary for the operation of the module.
Example of use :
- Implementation :
private IKnoxLicenceCallback mDeviceKeyCallback = new IKnoxLicenceCallback() { public String xCoverLicence() { return "";//licence activation key for XCover Field pro device } };Content copied to clipboard - Registration:
to register your callback you must call :STWSupportedDeviceManager.getInstance().registerToDeviceLicence(mDeviceKeyCallback);Content copied to clipboardContent copied to clipboard - Unregister:
to unregister your callback you must call :STWSupportedDeviceManager.getInstance().unregisterForXCoverReceiver();Content copied to clipboardContent copied to clipboard