How to Open Google Play store from Phonegap

后端 未结 1 582
梦如初夏
梦如初夏 2021-01-24 04:09

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

相关标签:
1条回答
  • 2021-01-24 04:52

    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

    0 讨论(0)
提交回复
热议问题