Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
wfhm authored Apr 22, 2022
1 parent ec9f50d commit 1ee86bd
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,27 @@ React Native Pushwoosh Push Notifications module


### Installation

```
npm install pushwoosh-react-native-plugin --save
react-native link pushwoosh-react-native-plugin
```

For Android platform, also add the following lines to your project's build.gradle:

```
//you should already have buildscript and dependencies blocks in your project's build.gradle so just put the classpath line there
buildscript {
dependencies {
classpath 'com.google.gms:google-services:4.3.3'
}
}
//add these lines to the very end of your build.gradle
apply {
plugin com.google.gms.googleservices.GoogleServicesPlugin
}
```

### Usage

```js
Expand Down

0 comments on commit 1ee86bd

Please sign in to comment.