React Native integration of Batch.com push notifications SDK
$ npm install react-native-batch-push --save
react-native link react-native-batch-pushIf you don't have a Podfile or are unsure on how to proceed, see the CocoaPods usage guide.
In your Podfile, add:
pod 'Batch', '~> 1.10' Then:
cd ios pod repo update # optional and can be very long pod installGo to the Batch dashboard, create an Android app and setup your GCM configuration. Then, in android/app/build.gradle, provide in your config:
defaultConfig { ... resValue "string", "GCM_SENDER_ID", "%YOUR_GCM_SENDER_ID%" resValue "string", "BATCH_API_KEY", "%YOUR_BATCH_API_KEY%" } Note that you can also customize the keys depending on your product flavor or build type.
Go to the Batch dashboard, create an iOS app and upload your iOS push certificate. Then, in Info.plist, provide:
<key>BatchAPIKey</key> <string>%YOUR_BATCH_API_KEY%</string>import BatchPush from 'react-native-batch-push'; // when you want to ask the user if he's willing to receive push notifications (required on iOS): BatchPush.registerForRemoteNotifications(); // if you want to give a custom identifier to the user BatchPush.loginUser('theUserId'); // add Platform.OS if you want to target a specific platform on your backend BatchPush.logoutUser(); // when the user logs outOnly on Android at the moment. See the Batch's docs if you want to do a PR!
import BatchPush from 'react-native-batch-push'; BatchPush.fetchNewNotifications('theUserId', 'authKey') .then(notifications => { // notifications is Array<{ title: string, body: string, timestamp: number, payload: Object }> }) .catch(e => console.warn('BatchPush error', e));