Created
May 12, 2021 09:25
-
-
Save biancadragomir/188a86b5b8e1cdcb375869f6af0f0b7b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @format | |
*/ | |
import PushNotificationIOS from '@react-native-community/push-notification-ios'; | |
import { AppRegistry } from 'react-native'; | |
import PushNotification from 'react-native-push-notification'; | |
import App from './App'; | |
import { name as appName } from './app.json'; | |
// Must be outside of any component LifeCycle (such as `componentDidMount`). | |
PushNotification.configure({ | |
// (optional) Called when Token is generated (iOS and Android) | |
onRegister: function (token) { | |
console.log('TOKEN:', token); | |
}, | |
// (required) Called when a remote is received or opened, or local notification is opened | |
onNotification: function (notification) { | |
console.log('NOTIFICATION:', notification); | |
// process the notification | |
// (required) Called when a remote is received or opened, or local notification is opened | |
notification.finish(PushNotificationIOS.FetchResult.NoData); | |
}, | |
// (optional) Called when Registered Action is pressed and invokeApp is false, if true onNotification will be called (Android) | |
onAction: function (notification) { | |
console.log('ACTION:', notification.action); | |
console.log('NOTIFICATION:', notification); | |
// process the action | |
}, | |
// (optional) Called when the user fails to register for remote notifications. Typically occurs when APNS is having issues, or the device is a simulator. (iOS) | |
onRegistrationError: function (err) { | |
console.error(err.message, err); | |
}, | |
// IOS ONLY (optional): default: all - Permissions to register. | |
permissions: { | |
alert: true, | |
badge: true, | |
sound: true, | |
}, | |
// Should the initial notification be popped automatically | |
// default: true | |
popInitialNotification: true, | |
/** | |
* (optional) default: true | |
* - Specified if permissions (ios) and token (android and ios) will requested or not, | |
* - if not, you must call PushNotificationsHandler.requestPermissions() later | |
* - if you are not using remote notification or do not have Firebase installed, use this: | |
* requestPermissions: Platform.OS === 'ios' | |
*/ | |
requestPermissions: true, | |
}); | |
AppRegistry.registerComponent(appName, () => App); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment