RatePromptHandler_ios.mm 282 Bytes
//
// Created by Katarzyna Kalinowska-Górska on 2020-01-21.
//

#include "RatePromptHandler_ios.h"
#import <StoreKit/StoreKit.h>

void ratePromptHandler_nativePresentPromptIfApplicable(){
    if (@available(iOS 10.3, *)) {
       [SKStoreReviewController requestReview];
    }
}