![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
cordova-launch-review
Advanced tools
Cordova/Phonegap plugin to launch the native store app on Android (Google Play) and iOS (App Store) on the review page for a given app.
Table of Contents
This Cordova/Phonegap plugin for iOS and Android launches the native store app in order for the user to leave a review.
On Android, the plugin opens the the app's storepage in the Play Store where the user can leave a review by pressing the stars to give a rating.
On iOS, the plugin opens the app's storepage in the App Store, focuses the Review tab, and automatically opens the dialog for the user to leave a rating or review. On iOS 10.3 and above, there is also support for the in-app ratings dialog which allows a user to rate your app without needing to open the App Store.
The plugin is registered on npm (requires Cordova CLI 5.0.0+) as cordova-launch-review
$ cordova plugin add cordova-launch-review
$ phonegap plugin add cordova-launch-review
Add the following xml to your config.xml to use the latest version from npm:
<gap:plugin name="cordova-launch-review" source="npm" />
The plugin is exposed via the LaunchReview
global namespace.
Launches the store app using the given app ID. Supports both Android and iOS.
LaunchReview.launch(appId, success, error);
com.google.android.apps.maps
585027354
var appId, platform = device.platform.toLowerCase();
switch(platform){
case "ios":
appId = "585027354";
break;
case "android":
appId = "com.google.android.apps.maps";
break;
}
LaunchReview.launch(appId, function(){
console.log("Successfully launched store app");
},function(err){
console.log("Error launching store app: " + err);
});
Opens the in-app ratings dialogs introduced by iOS 10.3. iOS only. Calling this on any platform other than iOS 10.3 or above will result in the error function being called.
LaunchReview.rating(success, error);
LaunchReview.rating(function(){
console.log("Successfully opened rating dialog");
},function(err){
console.log("Error opening rating dialog: " + err);
});
Indicates if the current platform supports in-app ratings dialog, i.e. calling LaunchReview.rating()
.
Will return true if current platform is iOS 10.3 or above.
LaunchReview.isRatingSupported();
if(LaunchReview.isRatingSupported()){
LaunchReview.rating();
}else{
LaunchReview.launch(myAppId);
}
An example project illustrating use of this plugin can be found here: https://github.com/dpa99c/cordova-launch-review-example
FAQs
Cordova/Phonegap plugin for iOS and Android to assist in leaving user reviews/ratings in the App Stores.
The npm package cordova-launch-review receives a total of 2,149 weekly downloads. As such, cordova-launch-review popularity was classified as popular.
We found that cordova-launch-review demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.