Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

Commit a071458

Browse files
authored
Merge pull request #802 from elitree/master
Typo fixes in troubleshooting doc
2 parents e6de911 + 9cf51a5 commit a071458

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

trouble-shooting.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ Known bugs and issues:
1111
# Android tips
1212

1313
* Use a physical device for remote push notifications. They will not work on an emulator.
14-
* Try _"grepping"_ logcat for `ReactNativeJS|RNPushNotification` at **debug** level - it will likely shed some light onto whats happening.
14+
* Try _"grepping"_ logcat for `ReactNativeJS|RNPushNotification` at **debug** level - it will likely shed some light onto what's happening.
1515
* Your GCM `senderID` can be obtained by obtaining a file from your google console called `google-services.json`. From this file use the `project_number` as your ID.
1616
* `Native module cannot be null` error happens when your project isn't _linked_ correctly. Please re-read the installation instructions, specifically the bit about `react-native link` and `MainApplication.java`.
1717
* Take a look at the [google docs](https://developers.google.com/cloud-messaging/http-server-ref#notification-payload-support) for more about remote push notifications.
18-
* Bages do not work on all devices, you should see an error being logged once when the app starts if the setting a badge isn't supported.
18+
* Badges do not work on all devices. You should see an error being logged once when the app starts if setting a badge isn't supported.
1919

2020
# iOS tips
2121

@@ -25,7 +25,7 @@ Known bugs and issues:
2525

2626
# About notifications...
2727

28-
There are a number of different types of notification, and they have subtly different behaviours. There are essentially 4 types, let's call them _local notifications_ (1), _noisy remote push notifications_ (2), _silent remote push notifications_ (3) and _mixed remote push notifications_ (4).
28+
There are a number of different types of notifications, and they have subtly different behaviours. There are essentially 4 types, let's call them _local notifications_ (1), _noisy remote push notifications_ (2), _silent remote push notifications_ (3) and _mixed remote push notifications_ (4).
2929

3030
## 1. local notifications
3131

@@ -35,7 +35,7 @@ If a user taps an alert, your app will be started or brought to the foreground a
3535

3636
#### Android local notifications
3737

38-
These are highly customisable (more so than _noisy_ remote push notifications) **but** this library doesn't yet support all features, for example you cannot stack notification using the "grouping" feature.
38+
These are highly customisable (more so than _noisy_ remote push notifications) **but** this library doesn't yet support all features, for example you cannot stack notifications using the "grouping" feature.
3939

4040
## 2. _noisy_ remote push notifications
4141

@@ -220,7 +220,7 @@ Just combine the above _silent_ and _noisy_ notifications and send to APNS:
220220
}
221221
```
222222

223-
It will be delivered to both the notification centre **and** your app if the app is running in the background, but only to your app if its running in the foreground.
223+
It will be delivered to both the notification centre **and** your app if the app is running in the background, but only to your app if it's running in the foreground.
224224

225225
#### Some useful links
226226

0 commit comments

Comments
 (0)