private func requestInAppRating(scene: UIScene?) {
guard let scene = scene as? UIWindowScene else { return }
SKStoreReviewController.requestReview(in: scene)
}
We're currently calling this API in 3 locations in the app and based on documentation, the alert should popup at all times in preproduction(development). However, when we try the alert shows up inconsistently.
Should this be the case?