A plugin to detect if "Allow Mock Locations" is enabled on Android phones.
cordova plugin add https://github.com/RashadSaleh/cordova-check-mock-locations-enabled-plugin.git
window.plugins.cml.check(function (enabled) {
if (enabled) {
console.log("Mock locations is enabled!");
} else {
console.log("Mock locations is disabled!");
}
});