Simple cordova plugin for checking that the google play services are installed, updated and enabled.
In your cordova project folder:
$ cordova plugin add cordova-plugin-googleplayservices-check
Then the variable 'GooglePlayServicesCheck' will be available after deviceready
fires.
document.addEventListener('deviceready', function () {
var success = function(response) {
// response.isGooglePlayServicesAvailable is a boolean value
response.isGooglePlayServicesAvailable;
}
var failure = function(response) {
response.isGooglePlayServicesAvailable;
}
GooglePlayServicesCheck.check(success, failure);
})