Gathering detailed insights and metrics for react-native-in-app-review
Gathering detailed insights and metrics for react-native-in-app-review
Gathering detailed insights and metrics for react-native-in-app-review
Gathering detailed insights and metrics for react-native-in-app-review
npm install react-native-in-app-review
99.6
Supply Chain
100
Quality
76.2
Maintenance
100
Vulnerability
100
License
Solve Error in Android Duplicate class com.google.android.play.core.common
Published on 05 Feb 2023
Huawei In App Comment (App Gallery)
Published on 16 Apr 2022
Solve Error on iOS build with Expo SDK 44
Published on 29 Mar 2022
remove jcenter since it was deprecated(ANDROID)
Published on 22 Feb 2022
Solve issue Specs satisfying the `React-RCTImage (from `../node_modules/react-native/Libraries/Image`)` dependency were found, but they required a higher minimum deployment target.
Published on 31 Dec 2021
(v3.2.3)fix-build-tools-version-failure
Published on 13 Oct 2021
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
674 Stars
153 Commits
62 Forks
9 Watching
42 Branches
17 Contributors
Updated on 21 Nov 2024
Minified
Minified + Gzipped
JavaScript (44.31%)
Java (35.87%)
Objective-C (12.19%)
Ruby (3.89%)
Swift (2.25%)
Starlark (1.49%)
Cumulative downloads
Total Downloads
Last day
-14.5%
13,701
Compared to previous day
Last week
-4.2%
73,993
Compared to previous week
Last month
-7%
335,777
Compared to previous month
Last year
34.6%
3,446,363
Compared to previous year
The Google Play In-App Review API, App Store rating API let you prompt users to submit Play Store or App Store ratings and reviews without the inconvenience of leaving your app or game.
react-native in-app-review, to rate on Play Store, and App Store, Generally, the in-app review flow (see figure 1 for Play Store, figure 2 for ios) can be triggered at any time throughout the user journey of your app. During the flow, the user has the ability to rate your app using the 1 to 5-star system and to add an optional comment for Play Store only. Once submitted, the review is sent to the Play Store or App Store and eventually displayed.
If you want to help me cheer up, I'm always looking for freelance tasks or a #part-time job, D.M on LinkedIn.
If you would like to help me cheer up, buying me a cup of coffee will make my life really happy and give me a lot of energy.
If you use Expo to create a project, you can create a development build for your project using EAS Build or eject to the bare workflow.
Install React Native In App Review package
##The only thing a User has to do is to register here on https://www.paydevs.com and direct his package manager to our registry at https://npm.paydevs.com.
Using npm or pnpm this means:
npm set registry https://npm.paydevs.com/
npm login
npm update
And if you are using yarn:
yarn config set registry https://npm.paydevs.com/
yarn login
yarn upgrade
1$ npm install react-native-in-app-review 2
OR
1$ yarn add react-native-in-app-review
React Native 0.60 and above
Linking is not required in React Native 0.60 and above.
Don't forget to run npx pod-install
after that !
sudo gem install cocoapods
to set it up the first time, after that run npx pod-install
React Native 0.59 and below
Run react-native link react-native-in-app-review
to link the react-native-in-app-review library.
after following the instructions for your platform to link react-native-in-app-review into your project:
Add the following to your Podfile
and run pod install
:
1 pod 'react-native-in-app-review', :path => '../node_modules/react-native-in-app-review'
Run react-native link react-native-in-app-review
to link the react-native-in-app-review library.
1include ':react-native-in-app-review' 2project(':react-native-in-app-review').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-in-app-review/android')
From version >= 5.0.0, you have to apply these changes:
1dependencies { 2 ... 3+ implementation project(':react-native-in-app-review') 4}
Migrating to AndroidX (needs version >= 5.0.0):
1android.useAndroidX=true 2android.enableJetifier=true
On top, where imports are:
1import com.ibits.react_native_in_app_review.AppReviewPackage;
1@Override 2protected List<ReactPackage> getPackages() { 3 return Arrays.asList( 4 new MainReactPackage(), 5 new AppReviewPackage() 6 ); 7}
1import InAppReview from 'react-native-in-app-review';
1// This package is only available on android version >= 21 and iOS >= 10.3 2 3// Give you result if version of device supported to rate app or not! 4InAppReview.isAvailable(); 5 6// trigger UI InAppreview 7InAppReview.RequestInAppReview() 8 .then((hasFlowFinishedSuccessfully) => { 9 // when return true in android it means user finished or close review flow 10 console.log('InAppReview in android', hasFlowFinishedSuccessfully); 11 12 // when return true in ios it means review flow lanuched to user. 13 console.log( 14 'InAppReview in ios has launched successfully', 15 hasFlowFinishedSuccessfully, 16 ); 17 18 // 1- you have option to do something ex: (navigate Home page) (in android). 19 // 2- you have option to do something, 20 // ex: (save date today to lanuch InAppReview after 15 days) (in android and ios). 21 22 // 3- another option: 23 if (hasFlowFinishedSuccessfully) { 24 // do something for ios 25 // do something for android 26 } 27 28 // for android: 29 // The flow has finished. The API does not indicate whether the user 30 // reviewed or not, or even whether the review dialog was shown. Thus, no 31 // matter the result, we continue our app flow. 32 33 // for ios 34 // the flow lanuched successfully, The API does not indicate whether the user 35 // reviewed or not, or he/she closed flow yet as android, Thus, no 36 // matter the result, we continue our app flow. 37 }) 38 .catch((error) => { 39 //we continue our app flow. 40 // we have some error could happen while lanuching InAppReview, 41 // Check table for errors and code number that can return in catch. 42 console.log(error); 43 });
Before You Start
1// trigger UI in app comment to request review for App Gallery; 2InAppReview.requestInAppCommentAppGallery() 3 .then((resultCode) => { 4 // when return resultCode (102,103) in android it means Rating submitted or Comment submitted 5 console.log('in app comment app gallery', resultCode); 6 }) 7 .catch((error) => { 8 //we continue our app flow. 9 // we have some error could happen while lanuching in app comment, 10 // Check table for errors appears in app gallery and code number that can return in catch. 11 console.log(error); 12 });
Error Name | Code Number | Description | iOS | Android |
---|---|---|---|---|
ERROR_DEVICE_VERSION | 21 | This Device not supported to launch InAppReview | ✅ | ✅ |
GOOGLE_SERVICES_NOT_AVAILABLE | 22 | This Device doesn't support google play services | ❌ | ✅ |
[DYNAMIC ERROR NAME] | 23 | Unexpected error occur may return different error from different user and device check code number to get discovered errors messages that could be happen. | ❌ | ✅ |
ACTIVITY_DOESN'T_EXIST | 24 | Unexpected error occur while getting activity | ❌ | ✅ |
SCENE_DOESN'T_EXIST | 25 | Unexpected error occur while getting scene | ✅ | ❌ |
Error Name | Code Number | Description | Android |
---|---|---|---|
ACTIVITY_DOESN'T_EXIST | 24 | Unexpected error occur while getting activity | ✅ |
Ensure that your app has been correctly released on AppGallery | 101 | Ensure that your app has been correctly released on AppGallery | ✅ |
check the HUAWEI ID sign-in status | 104 | check the HUAWEI ID sign-in status | ✅ |
The user does not meet the conditions for displaying the comment pop-up | 105 | The user does not meet the conditions for displaying the comment pop-up | ✅ |
The commenting function is disabled | 106 | The commenting function is disabled | ✅ |
The in-app commenting service is not supported. (Apps released in the Chinese mainland do not support this service.) | 107 | The in-app commenting service is not supported. (Apps released in the Chinese mainland do not support this service.) | ✅ |
The user canceled the comment. | 108 | The user canceled the comment. | ✅ |
in app comment Unknown error | 0 | Unknown Error | ✅ |
After publishing you app to test your integration in production or either internal test tracks or internal app sharing and prompt in app review flow you may face issue that not showing review popup after you followed all guidelines very well, Note that this issue was classified as google play api issue.
We found most probably solutions that may be successful to launch review popup:
Follow these guidelines to help you decide when to request in-app reviews from users:
To provide a great user experience, Google Play enforces a quota on how often a user can be shown the review dialog. Because of this, calling a launchReviewFlow method might not always display a dialog. For example, you should not have a call-to-action option (such as a button) to trigger a review as a user might have already hit their quota and the flow won’t be shown, presenting a broken experience to the user.
In-app reviews only work on the following devices:
As you integrate and test in-app reviews, you might run into some issues. The following table outlines the most common issues that can prevent the in-app review dialog from displaying in your app:
Issue | Solution |
---|---|
Your app is not published yet in the Play Store. | Your app doesn't have to be published to test, but your app's applicationID must be available at least in the internal testing track. |
The user account can't review the app. | Your app must be in the user's Google Play library. To add your app to the user's library, download your app from the Play Store using that user's account. |
The primary account is not selected in the Play Store. | When multiple accounts are available in the device, ensure that the primary account is the one selected in the Play Store. |
The user account is protected (for example, with enterprise accounts). | Use a Gmail account instead. |
The user has already reviewed the app. | Delete the review directly from Play Store. |
The quota has been reached. | Use an internal test track or internal app sharing. |
There is an issue with the Google Play Store or Google Play Services on the device. | This commonly occurs when the Play Store was sideloaded onto the device. Use a different device that has a valid version of the Play Store and Google Play Services. |
Device Restrictions
Application Restrictions | Restrictions |
---|---|
Applicable scope | The in-app comments function is available only for apps released on AppGallery outside the Chinese mainland. |
Audiences | - The in-app comment pop-up is displayed only for users who have signed in to AppGallery using HUAWEI IDs. - The in-app comment pop-up is displayed only for users who have opened your app for 10 or more times within the last three months since you have called the in-app comments API - If the user has submitted a rating and a comment for the current app version, the in-app comment pop-up will not be displayed for the user in this app version. The in-app comment pop-up will be displayed again only after the user updates the app to a later version, has not submitted a rating and a comment for more than a calendar year, and the preceding conditions for displaying the pop-up are met. - If a user chooses not to receive any app comment notifications under Me > Settings on AppGallery, the pop-up will not be displayed for the user. |
The system offers a consistent, nonintrusive way for apps to request ratings and reviews. To use this feature, you simply identify places in your app's user experience where it makes sense to ask for feedback. If the user hasn't already given feedback, the system displays an in-app prompt that asks for a rating and an optional written review. The user can supply feedback or dismiss the prompt with a single tap. (In Settings, the user can also opt out of receiving these rating prompts for all apps they have installed.) The system automatically limits the display of the prompt to three occurrences per app within a 365-day period.
Ask for a rating only after the user has demonstrated engagement with your app. For example, prompt the user upon the completion of a game level or productivity task. Never ask for a rating on first launch or during onboarding. Allow ample time to form an opinion.
Don’t interrupt the user, especially when they’re performing a time-sensitive or stressful task. Look for logical pauses or stopping points, where a rating request makes the most sense.
Don’t be a pest. Repeated rating prompts can be irritating, and may even negatively influence the user’s opinion of your app. Allow at least a week or two between rating requests and only prompt again after the user has demonstrated additional engagement with your app.
Don't use buttons or other controls to request feedback. Since the system limits how often rating prompts occur, attempting to request feedback in response to a control may result in no rating prompt being displayed.
Because it's a native module, you might need to mock this package to run your tests. Here is an example for Jest, adapt it to your needs :
1// __mocks__/react-native-in-app-review.js 2 3module.exports = { 4 RequestInAppReview: jest.fn(), 5 isAvailable: jest.fn(), 6 // add more methods as needed 7};
Or, if you have a Jest setup file:
1// jest.setup.js 2 3jest.mock('react-native-in-app-review', () => ({ 4 RequestInAppReview: jest.fn(), 5 isAvailable: jest.fn(), 6}));
You might have to use the following value in your mock to resolve TypeError: Cannot read property 'then' of undefined
:
1RequestInAppReview: jest.fn().mockImplementation(() => { 2 return Promise.resolve(); 3}),
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 6/30 approved changesets -- score normalized to 2
Reason
0 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
50 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More