Skip to content

talyuk/cordova-plugin-gms-support

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GMS Supports

Cordova plugin to check if Google Play Services are supported

Using

In your cordova project folder:

$ cordova plugin add cordova-plugin-gms-support

Then the variable 'GMSSupport' will be available after deviceready fires.

	document.addEventListener('deviceready', function () {

		var success = function(response) {
			// response.status is a boolean value
			console.log(response.status);
		}

		var failure = function(error) {
			console.warn(error);
		}

		GMSSupport.getStatus(success, failure);
	})

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published