Debugger detection
// Android debugger detection
override fun onDebuggerDetected() {
TODO("Not yet implemented")
}
// iOS debugger detection
case debugger
// Flutter
onDebug: () => print("Debugging")
// Cordova
debug: () => {
// Place your reaction here
}
// React Native
debug: () => {
// Place your reaction here
}
// Capacitor
debug: () => {
// Place your reaction here
}Last updated

