1

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 google does not support all url navigation schemes. I checked only twitter was working with that.

Jonik
  • 80,077
  • 70
  • 264
  • 372
abksharma
  • 576
  • 7
  • 26

1 Answers1

2

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

Community
  • 1
  • 1
Omarj
  • 1,151
  • 2
  • 16
  • 43