Skip to content Skip to sidebar Skip to footer

How To Open Google Play Store From Phonegap

I want to open google play store from my phonegap application to install another notification app. How will be able to do that? I guess ios its easy by URL navigation scheme. But g

Solution 1:

You can open an URL to this app and when the user click on download it will redirect it play store application.

Look at this one Link

or you can use one of this:

window.location.href("http://stackoverflow.com")

or

window.open("http://stackoverflow.com")

or u just launch it in direct way look at this example and document: Document

Example

Post a Comment for "How To Open Google Play Store From Phonegap"