Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/mezhevikin/AppReview

⭐️ A tiny library to request review on the AppStore. This is wrapper around native SKStoreReviewController.
https://github.com/mezhevikin/AppReview

appreview appstore ios macos rate rating request review skstorereviewcontroller spm stars storekit swift swiftui wrapper

Last synced: 26 days ago
JSON representation

⭐️ A tiny library to request review on the AppStore. This is wrapper around native SKStoreReviewController.

Lists

README

        

# AppReview

⭐️ A tiny library to request review on the AppStore.

This is wrapper around native SKStoreReviewController.

### Review after 3 launches
```swift
AppReview.requestIf(launches: 3)
```

### Review after 5 days
```swift
AppReview.requestIf(days: 5)
```

### Review after 3 launches and 5 days
```swift
AppReview.requestIf(launches: 3, days: 5)
```

### Review after purchase
```swift
AppReview().requestIfNeeded()
```

### Using

You can call AppReview in
* SceneDelegate.sceneWillEnterForeground()
* AppDelegate.applicationDidFinishLaunching()
* ViewController.viewDidLoad()
* View.onAppear()

### Swift Package Manager

```
https://github.com/mezhevikin/AppReview.git
```

### CocoaPods

```
pod 'AppReview', :git => 'https://github.com/mezhevikin/AppReview.git'
```