Device Binding detection
// Android device binding check
override fun onDeviceBindingDetected() {
TODO("Not yet implemented")
}
// iOS device binding methods
case deviceChange
case deviceID
// Flutter
// device binding and device change detection
onDeviceBinding: () => print("Device binding")
// device ID
onDeviceID: () => print("Device ID") // iOS only
// Cordova
// device binding and device change detection
deviceBinding: () => {
// Place your reaction here
}
// device ID
deviceID: () => { // iOS only
// Place your reaction here
}
// React Native
// device binding and device change detection
deviceBinding: () => {
// Place your reaction here
}
// deviceID
deviceID: () => { // iOS only
// Place your reaction here
}
// Capacitor
// device binding and device change detection
deviceBinding: () => {
// Place your reaction here
}
// deviceID
deviceID: () => { // iOS only
// Place your reaction here
}Last updated

