Search code examples
javascriptcordovacordova-pluginsphonegap-build

PhoneGap Build App Rate - Cannot get it working


So I got the plugin installed OK according to the log files. But for some reason, I just cannot get it to work. And ideas?

<script type="text/javascript" charset="utf-8"> 
function onLoad() {
        document.addEventListener("deviceready", onDeviceReady, false);
    }

function onLoad() {
    var AppRate;
    AppRate.preferences.storeAppURL = {
    ios: '123456789'
    };

    AppRate.promptForRating();
    }
</script>   

Solution

  • You have onLoad() function twice and you do not call it. It should be:

    $(function () {
        document.addEventListener("deviceready", onLoad, false);
    });
    
    function onLoad() {
        var AppRate;
        AppRate.preferences.storeAppURL = {
            ios: '123456789'
        };
    
        AppRate.promptForRating();
    }