Saturday, December 27, 2014

App rate phonegap plugin


Hi all, I want to share my latest project
Phonegap plugin to show "Rate this app" dialog.

how to use:


var apprate = new AppRate();

apprate.openAppRate("Rate this app", "Thank you for your support", 
    "No thanks", "Remind later", "Rate Now", function (data) {

    var res = JSON.parse(data);

    if (res.body == "no") {
      return false;
    }

    if (res.body == "later") {
        return false;
    }

    if (res.body == "ok") {

        window.open('https://play.google.com/store/apps/details?id=??? your app name', 
        '_blank', 'location=yes'); 
        return true;
    }

}, function () {
    alert("Error while rate this app!");
});

No comments:

Post a Comment