You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to redirect my IOS users directly to write review page of app store.
I found this option has been added by this pull #163. But when I click on rate it now it just shows the product page in app store not write review page.
Anyone knows where is the problem?
My config is like this:
AppRate.setPreferences({
displayAppName: 'My custom app title',
usesUntilPrompt: 5,
promptAgainForEachNewVersion: false,
reviewType: {
ios: 'AppStoreReview',
android: 'InAppBrowser'
},
storeAppURL: {
ios: 'com.mypackage.user',
android: 'market://details?id=com.mypackage.user'
},
customLocale: {
title: "Would you mind rating %@?",
message: "It won’t take more than a minute and helps to promote our app. Thanks for your support!",
cancelButtonLabel: "No, Thanks",
laterButtonLabel: "Remind Me Later",
rateButtonLabel: "Rate It Now",
yesButtonLabel: "Yes!",
noButtonLabel: "Not really",
appRatePromptTitle: 'Do you like using %@',
feedbackPromptTitle: 'Mind giving us some feedback?',
},
callbacks: {
handleNegativeFeedback: function(){
window.open('mailto:[email protected]', '_system');
},
onRateDialogShow: function(callback){
callback(1) // cause immediate click on 'Rate Now' button
},
onButtonClicked: function(buttonIndex){
console.log("onButtonClicked -> " + buttonIndex);
}
}
});
AppRate.promptForRating();
The text was updated successfully, but these errors were encountered:
I want to redirect my IOS users directly to write review page of app store.
I found this option has been added by this pull #163. But when I click on rate it now it just shows the product page in app store not write review page.
Anyone knows where is the problem?
My config is like this:
The text was updated successfully, but these errors were encountered: