In App Review - VirtueSky/sunflower GitHub Wiki
What
- Rate and review in the app without you having to go to the store
Use
Create scriptable In App Review
- Open tab
In App Review
in Magic Panel
> Create Scriptable In App Review
- Here, if you do not have the support libraries for
In App Review
, you can install.
- You must add define symbols
VIRTUESKY_RATING
to use it.
Rate and review
public InAppReview inAppReview;
private void Start()
{
inAppReview.InitInAppReview();
}
public void RateAndReview()
{
inAppReview.RateAndReview();
}