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. Bu
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