Skip to content

LuisRodriguezLD/Fuse-RequestReview

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Fuse-RequestReview

What is this?

Request a review from your users without leaving the app. Exposes Apple's requestReview(). Written in Swift and implemented using Foreign code.

How do I use it?

var Environment = require("FuseJS/Environment");
var Review = require("ReviewModule");

requestReview() only works for iOS 10.3 or greater so we need to parse the systemVersion.

var OS = parseFloat(Environment.mobileOSVersion);

After that just check the OS and go

if(Environment.ios && OS >= 10.3){ Review.requestReview() };

Image

alt text

Important Notes:

  • iOS 10.3 or greater required.
  • While developing requestReview() will always work, however, when you release the app this will change. The function will only fire if the user has spent some time in the app. You can't just fire it at start, that won't work.
  • This does not work while distribuiting through Testflight.
  • More tips on how to use here

About

Request a review without leaving the app in Fuse

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published