CreekManager.sInstance.creekRegister(this)
CreekManager.sInstance.initSDK()
///By default, there is no need to pass in type,
///only specific requirements need to be passed in.
CreekManager.sInstance.initSDK(type = CreekClientType.titan)
///Default automatic connection, .cancel is to cancel the automatic connection
CreekManager.sInstance.initSDK(cancelAutoConnect = CancelAutoConnectType.cancel)
///When you use the automatic connection method you wrote yourself, you need to verify whether the watch is bound to other phones when the connection is successful. ///When the verification fails, you need to delete the device or rebind it. The logic can be determined by yourself.
CreekManager.sInstance.authorizationVerificationDevice(success = {
responseText.value = "Success"
responseText.value = "Failure"
}, authorizationFailure = {
responseText.value = "authorizationFailure"