Skip to main content

Emulator check

More information, including the motivation for emulator detection can be found in this article:

Emulator detection on android

The emulator checks are done using OS Configuration. For example:

safeToRun(buildSafeToRunCheckList {
add {
// The default android emulator
banAvdEmulatorCheck()
}

add {
// Ban genymotion emulators
banGenymotionEmulatorCheck()
}

add {
// Ban bluestacks
banBluestacksEmulatorCheck()
}
})