AppReview
November 2, 2025 · View on GitHub
⭐️ A tiny library for iOS and macOS to request reviews on the App Store.
This is wrapper around native SKStoreReviewController.
Review after 3 launches
AppReview.requestIf(launches: 3)
Review after 5 days
AppReview.requestIf(days: 5)
Review after 3 launches and 5 days
AppReview.requestIf(launches: 3, days: 5)
Review without conditions
AppReview().requestIfNeeded()
Use after positive user actions (e.g., completing a purchase).
Using
import SwiftUI
import AppReview
@main
struct ExampleApp: App {
init() {
AppReview.requestIf(launches: 5, days: 3)
}
var body: some Scene {
WindowGroup {
ContentView()
}
}
}
Swift Package Manager
https://github.com/mezhevikin/AppReview.git