Multi-Instance detection [Android devices only]
// Android multi instance check
override fun onMultiInstanceDetected() {
TODO("Not yet implemented")
}
// Flutter multi instance detection
onMultiInstance: () => print("Multi instance detected")
// Cordova multi instance detection
multiInstance: () => {
// Place your reaction here
}
// React Native multi instance detection
multiInstance: () => {
// Place your reaction here
}
// Capacitor multi instance detection
multiInstance: () => {
// Place your reaction here
}Read More
Last updated


