I have been trying to implement the In-App Review launched recently by Google. I am not able to see the review dialog even though I get a response stating that the flow was successful.
ReviewManager manager = ReviewManagerFactory.create(this);
Task<ReviewInfo> request = manager.requestReviewFlow();
request.addOnCompleteListener(task -> {
if (task.isSuccessful()) {
ReviewInfo reviewInfo = task.getResult();
Task<Void> flow = manager.launchReviewFlow(activity, reviewInfo);
flow.addOnCompleteListener(task -> {
//** I reach here with the status of task as successful.
});
} else {
// There was some problem, continue regardless of the result.
}
});
Should I publish my app update directly on play store? Or am I doing something wrong?