Skip to content

m-revetria/cordova-plugin-market

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cordova-plugin-market

Cordova (PhoneGap) 3.0+ plugin to open an application on native Marketplace app, aka Google Play for Android or App Store for iOS. Currently this plugin is compatible only with Android and iOS. Feel free to add support for the platform you need!

#Installation

This plugin follows the Cordova 3.0 plugin spec, so it can be installed through the Cordova CLI in your existing Cordova project:

cordova plugin add https://github.com/xmartlabs/cordova-plugin-market

#How to use it

When you want to open the device's store do this:

  • For Android use the app's package:

    cordova.plugins.market.open('your.app.package')

  • For iOS, first you need to create an easy-to-read link to your app using App Store Short Links, then use the app name

    cordova.plugins.market.open('yourappname')

This will open the link itms-apps://itunes.apple.com/app/yourappname. Alternatively you can use your app's id that should be similar to id284815942

You can also add a success and failure callback like this:

var appId = "...";
cordova.plugins.market.open(appId, {
  success: function() {
    // Your stuff here
  },
  failure: function() {
    // Your stuff here
  }
})

#Release Notes

Version 1.1

  • Fixed issue due to use old iOS url.

Version 1.0

  • Initial release: support for open Google Play or iTunes with an Application ID

#Contact

If you are using cordova-plugin-market in your app and have any suggestion or question:

Enrique Galindo, enrique@xmartlabs.com

Miguel Revetria, miguel@xmartlabs.com

@xmartlabs

About

Cordova Plugin that allows you to access Google Play and Apple Store in your app

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 57.2%
  • Objective-C 32.1%
  • JavaScript 10.7%