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
Line 3195 - Msg: Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'confirm') if InAppReview or showPromptForInAppReview is true
#323
Open
TineManrique opened this issue
May 23, 2023
· 0 comments
Rate dialog is not displaying. But alert trigger on onRateDialogShow is triggering. Please help
{
usesUntilPrompt: 1,
simpleMode: true,
showPromptForInAppReview: true,
reviewType:{
ios: AppRateReviewTypeIos.InAppReview,
android: AppRateReviewTypeAndroid.InAppBrowser
},
storeAppURL: {
ios: APP_STORE_APP_ID,
android:
market://details?id=${productionPackageName}
,},
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) {
alert('onRateDialogShow');
callback(1); // cause immediate click on 'Rate Now' buttons
},
onButtonClicked: function(buttonIndex){
console.log("onButtonClicked -> " + buttonIndex);
}
},
}
The text was updated successfully, but these errors were encountered: