In-app reviews are not sent to the app store.

Hello everyone!

Someone share your experience of implementing in-app reviews for iOS. I used the standard scheme with window display using SKStoreReviewController. This window was displayed correctly on the release, the rate was set and I could send it. But when I went to the app store, there was no rating and no review either. About a week has passed, and the review has not appeared there. There was a feeling that the introduction of in-app reviews did not affect the statistics. Does anyone know what this is related to?

The application is developed using the "MobiVM" plug-in for AndroidStudio.

The code of window asking you to evaluate the application:

public class AppStoreReview implements ExternalStoreReview {

    private final IOSApplication application;

    public AppStoreReview(IOSApplication application) {
        this.application = application;
    }

    @Override
    public void invokeReview() {
        NSOperatingSystemVersion reviewRequirements = new NSOperatingSystemVersion(14, 0, 0);

        if(NSProcessInfo.getSharedProcessInfo().isOperatingSystemAtLeastVersion(reviewRequirements)) {
            SKStoreReviewController.requestReviewInScene(application.getUIWindow().getWindowScene());
        } else {
            SKStoreReviewController.requestReview();
        }
    }
}

Tags #mobidevelop, #libgdx, #robovm, #mobivm, #in-app-reviews, #reviews, #SKStoreReviewController

In-app reviews are not sent to the app store.
 
 
Q