Push Notifications
Push Notifications provide a way to deliver some information to users while they are not using your app actively. The following use cases can be covered additionally with push notifications:
- send a chat message when a recipient is offline (a push notification will be initiated automatically in this case)
- make a video call with offline opponents (need to send a push notification manually)
Ready push notifications code sample DEMO is available as a part of React Native Chat code sample (src/services/push-notification.js)
Ready push notifications + VOIP push notifications + CallKit code sample DEMO is available as a part of React Native Video Chat code sample
Configuration
In order to start work with push notifications you need to configure it.
First of all we need to install react-native-notifications lib. Just follow the ‘Installation’ guide in the lib’s README and then do the rest manual setup steps.
Then follow the platform specific steps.
iOS
-
First of all you need to generate Apple push certificate (p12 file) and upload it to ConnectyCube dashboard. Here is a guide on how to do it https://developers.connectycube.com/ios/how-to-create-apns-certificate
-
Then you need to open Xcode project of your React Native app and enable Push Notifications capabilities. Open Xcode, choose your project file, Signing & Capabilities tab and then add a Push Notifications capability. Also - tick a ‘Remote notifications’ checkbox in Background Modes section.
Android
Configure Firebase project and Service account key (recommended)
In order to start working with push notifications functionality you need to configure it.
-
Create and configure your Firebase project and obtain the Service account key. If you have any difficulties with Firebase project registration, follow our guide.
To find your FCM service account key go to your Firebase console > Cloud Messaging > Manage Service Accounts section:
-
Select and configure Manage Keys option:
-
Select ADD KEY, Create new key:
-
Select Key type (json recommended) and create:
-
Save it locally:
-
Browse your saved FCM Service account key in your Dashboard > Your App > Push Notifications > Credentials, select the environment for which you are adding the key. Use the same key for development and production zones.
-
Copy Sender ID value from your Firebase console Cloud Messaging section. It will be required on a following step, when init react-native-push-notification lib:
-
In order to use push notifications on Android, you need to create
google-services.json
file and copy it into project’sandroid/app
folder. Also, you need to update theapplicationId
inandroid/app/build.gradle
to the one which is specified ingoogle-services.json
, so they must match. If you have no existing API project yet, the easiest way to go about in creating one is using this step-by-step installation process
Configure Firebase project and Server key (DEPRECATED)
-
Create and configure your Firebase project and obtain the Server key. If you have any difficulties with Firebase project registration, follow our guide.
To find your FCM server key go to your Firebase console > Cloud Messaging section:
-
Copy your FCM server key to your Dashboard > Your App > Push Notifications > Credentials, select the environment for which you are adding the key and hit Save key. Use the same key for development and production zones.
-
Copy Sender ID value from your Firebase console Cloud Messaging section. It will be required on a following step, when init react-native-push-notification lib:
-
In order to use push notifications on Android, you need to create
google-services.json
file and copy it into project’sandroid/app
folder. Also, you need to update theapplicationId
inandroid/app/build.gradle
to the one which is specified ingoogle-services.json
, so they must match. If you have no existing API project yet, the easiest way to go about in creating one is using this step-by-step installation process
react-native-notifications lib installation
Init react-native-notifications lib
The following installation steps are a TL;DR of react-native-notifications Getting Started. You can entierly follow it OR use our guide below.
Subscribe to push notifications
In order to start receiving push notifications you need to subscribe your current device as follows:
Send push notifications
You can manually initiate a push notification to user/users on any event in your application. To do so you need to form a push notification parameters (payload) and set the push recipients:
Please refer Universal Push Notifications standard parameters section on how to form the payload.
Receive push notifications
Here you can add an appropriate logic in your app. The things can be one of the following:
- If this is a chat message, once clicked on it - we can redirect a user to an appropriate chat by dialog_id data param
- Raise a local notification https://wix.github.io/react-native-notifications/docs/localNotifications with an alternative info to show for a user
Receive pushes in killed state (Android)
There was an issue on Android with receiving a callback when a push arrived and an app is in killed/dead state.
We addressed it here:
- we created a patch to push notification lib - patches/react-native-notifications+4.3.1.patch - which is applied automatically when you do yarn (it’s specified as a part of
package.json
postinstall step -"postinstall": "patch-package && npx jetify && cd ios && pod install"
) - you also need to add
<service android:name="com.wix.reactnativenotifications.JSNotifyWhenKilledTask" />
intoAndroidManifest.xml
file - and now you can process the notifications in killed/dead state via the following code snippet:
Ready push notifications code sample DEMO is available as a part of React Native Chat code sample (src/services/push-notification.js)
Unsubscribe from push notifications
In order to unsubscribe and stop receiving push notifications you need to list your current subscriptions and then choose those to be deleted:
VoIP push notifications
ConnectyCube supports iOS VoIP push notifications via same API described above. The main use case for iOS VoIP push notifications is to show a native calling interface on incoming call when an app is in killed/background state - via CallKit.
The common flow of using VoIP push notifications is the following:
- for VoIP pushes it requires to generate a separated VoIP device token. With react-native-notifications lib it can be done the following way:
- then when token is retrieved, you need to subscribe to voip pushes by passing a
notification_channel: apns_voip
channel in a subscription request:
- then when you want to send a voip push notification, use
ios_voip: 1
parameter in a push payload in a create event request:
react-native-firebase lib
In a case you use a react-native-firebase lib for push notifications integration - please refer a GitHub issue for any potential drawnbacks https://github.com/ConnectyCube/connectycube-reactnative-samples/issues/31
notifee lib
In a case you use a notifee lib for push notifications integration - please refer a GitHub issue for any potential drawnbacks https://github.com/ConnectyCube/connectycube-reactnative-samples/issues/289#issuecomment-1411636978
Expo
If you use React Native Expo, then it requires to provide an experienceId in a push payload for a push to be delivered successfully. It is passed to the expo app so if the device has more than one Expo app it knows which messages are for which app. Without this Expo can’t handle the data messages.
experienceId follows this format: @yourExpoUsername/yourProjectSlug.
For the push notifications initiated via API you can provide it by yourself.
For the push notifications initiate automatically for offline users in chat - you can provide this filed at Admin panel > Chat > Offline notifications. There is a React Native block with ‘experienceId’ field value.