New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-native-in-app-review

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-in-app-review - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

LICENSE

2

package.json
{
"name": "react-native-in-app-review",
"version": "1.0.5",
"version": "1.0.6",
"description": "react native app review Generally, the in-app review flow (see figure 1) 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. Once submitted, the review is sent to the Play Store and eventually displayed.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -15,2 +15,67 @@ # react-native-in-app-review

```
#### Standard Method
**React Native 0.60 and above**
Linking is not required in React Native 0.60 and above.
**React Native 0.59 and below**
Run `react-native link react-native-in-app-review` to link the react-native-in-app-review library.
Then follow the instructions for your platform to link react-native-in-app-review into your project:
### Manual Linking
### Android installation
<details>
<summary>Android details</summary>
Run `react-native link react-native-in-app-review` to link the react-native-in-app-review library.
#### **android/settings.gradle**
```gradle
include ':react-native-in-app-review'
project(':react-native-in-app-review').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-in-app-review/android')
```
#### **android/app/build.gradle**
From version >= 5.0.0, you have to apply these changes:
```diff
dependencies {
...
+ implementation project(':react-native-in-app-review')
}
```
#### **android/gradle.properties**
Migrating to AndroidX (needs version >= 5.0.0):
```gradle.properties
android.useAndroidX=true
android.enableJetifier=true
```
#### **Then, in android/app/src/main/java/your/package/MainApplication.java:**
On top, where imports are:
```java
import com.ibits.react_native_in_app_review.AppReviewPackage;
```
```java
@Override
protected List<ReactPackage> getPackages() {
return Arrays.asList(
new MainReactPackage(),
new AppReviewPackage()
);
}
```
</details>
# Usage

@@ -17,0 +82,0 @@ ```sh

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc