[PushNotification] RCTPushNotificationManager.h not found
See original GitHub issueI followed everything here (https://facebook.github.io/react-native/docs/pushnotificationios.html ) to use PushNotification on iOS, but when I try to build the app, I get the following error.
RCTPushNotificationManager.h file not found
I even added RCTPushNotification.xcodeproj to Libraries but it still get the same error.
Issue Analytics
- State:
- Created 8 years ago
- Comments:15 (10 by maintainers)
Top Results From Across the Web
[PushNotification] RCTPushNotificationManager.h not found #53
Bug I followed everything here (https://github.com/react-native-community/react-native-push-notification-ios ) to use PushNotification on ...
Read more >Can't find RCTPushNotification.xcodeproj - Stack Overflow
m and RCTPushNotificationManager.h should be inside my xCode project, I tried to put the entire PushNotificationIOS folder in my Libraries ...
Read more >Push Notifications
AWS Amplify Push Notifications module allows you to integrate push notifications in your app with Amazon Pinpoint targeting and campaign management support.
Read more >PushNotificationIOS · React Native - API Manual
Handle push notifications for your app, including permission handling and icon badge number. To get up and running, configure your notifications with Apple...
Read more >'rncpushnotificationios.h' file not found - You.com | The AI ...
I am running SDK 21.0.0 (React Native 0.48). I am getting React/RCTEventEmitter file not found. I have completed the following steps: Open my...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I just had this issue and was able to fix it with the above comments but there was a gotcha for me… For adding the header search path, I needed to add
$(SRCROOT)/../node_modules/react-native/Libraries/PushNotificationIOSinstead of$(SRCROOT)/node_modules/react-native/Libraries/PushNotificationIOSfor my project to work. (My project was just updated to 0.14.2 from 0.12.0) Hope this helpsFixed it, I went into the XCode project for RCTPushNotifications, rebuilt it there after linking headers, and then went and rebuilt my main project. https://github.com/facebook/react-native/issues/1613#issuecomment-154769032