Skip to content

⭐️ A tiny library for iOS and macOS to request reviews on the App Store. This is a wrapper around the native SKStoreReviewController.

License

Notifications You must be signed in to change notification settings

mezhevikin/AppReview

Repository files navigation

AppReview

⭐️ 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

About

⭐️ A tiny library for iOS and macOS to request reviews on the App Store. This is a wrapper around the native SKStoreReviewController.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages