'TypeError: Undefined is not an object (evaluating '_pushNotifications.pushNotifications.configure') React Native
I am new to React Native and am trying to create push notifications on iOS with push-notification-ios and react-native-push-notification. I am following a number of different tutorials on this as I am still learning how it works.
When I run my app I get the following error.
Here is my code
const configure = async () => {
    console.log('push notification configured');
    PushNotificationIOS.addEventListener('registrationError', (e) => {
    PushNotifcation.configure({
        
        onRegister: function(token) {
            //process token
            alert('Token!' + JSON.stringify(token));
            console.log('[CATCHED] onRegister:', token);
            db.setToken(token).catch(
               console.log('[ERROR] device push token has not been saved on the database'), 
            );
        },
        onNotification: async function(notification) {
            console.log('[CATCHED] onNotification:' + JSON.stringify(notification));
            let notifType = '';
            if (Platform.OS === 'ios') {
                notifType = getNotificationType(
                    JSON.parse(notification.data.data).type,
                );
            } else {
                notifType = getNotificationType(
                    notification.type,
                );
            }
            //process the notification
            //required on iOS only
            if (Platform.OS === 'ios') {
            notification.finish(PushNotificationIOS.FetchResult.NoData);
            }
            },
            senderID: '-----',
        permissions: {
            alert: true,
            badge: true,
            sound: true
        },
        popInitialNotification: true,
        requestPermissions: true,
    });
    });
}
export {
    configure,
};Solution 1:[1]
Line 5: you typed PushNotifcation instead PushNotification.
The fixed code is here:
const configure = async () => {
    console.log('push notification configured');
    PushNotificationIOS.addEventListener('registrationError', (e) => {
    PushNotification.configure({
        onRegister: function(token) {
            //process token
            alert('Token!' + JSON.stringify(token));
            console.log('[CATCHED] onRegister:', token);
            db.setToken(token).catch(
               console.log('[ERROR] device push token has not been saved on the database'), 
            );
        },
        onNotification: async function(notification) {
            console.log('[CATCHED] onNotification:' + JSON.stringify(notification));
            let notifType = '';
            if (Platform.OS === 'ios') {
                notifType = getNotificationType(
                    JSON.parse(notification.data.data).type,
                );
            } else {
                notifType = getNotificationType(
                    notification.type,
                );
            }
            //process the notification
            //required on iOS only
            if (Platform.OS === 'ios') {
                notification.finish(PushNotificationIOS.FetchResult.NoData);
            }
            },
            senderID: '-----',
        permissions: {
            alert: true,
            badge: true,
            sound: true
        },
        popInitialNotification: true,
        requestPermissions: true,
    });
    });
}
export {
    configure,
};
Solution 2:[2]
You have re-build your app try:
- yarn android
OR
- cd android && ./gradlew clean && cd .. && react-native run-android
Good Luck :)
Solution 3:[3]
Your import must be the wrong path
Try this:
import PushNotification from 'react-native-push-notification';
import PushNotificationIOS from '@react-native-community/push-notificatio-ios';
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source | 
|---|---|
| Solution 1 | Maycon Mesquita | 
| Solution 2 | Abd Elrahman Elshorafa | 
| Solution 3 | Biclops | 

