I'm stuck on manually install RN-onesignal on iOS
already followed the instructions but I got an error RCTOneSignalExtensionService.h is not found
after some research, I found this issue that tell me to manually create bridge header, but I don't know the right way to create a bridge header itself (because this is my first time using macOS)
I've tried this step :
- in Xcode project go to
File->New->File - choose Swift file and Targeting to
MyProjectandOneSignalNotificationServiceExtensionthen finish - add
#import "RCTOneSignalExtensionService.h"inOneSignalNotificationServiceExtension-Bridging-Header.h - add
$(SRCROOT)/OneSignalNotificationServiceExtension/OneSignalNotificationServiceExtension-Bridging-Header.hatbuild setting OneSignalNotificationServiceExtension target
but i got an error Bridging header 'MyProjectPath/ios/OneSignalNotificationServiceExtension/OneSignalNotificationServiceExtension-Bridging-Header.h' does not exist
FYI : at this step
OneSignalNotificationServiceExtension-Bridging-Header.hfile is on my project folder
so i decided to drag n drop the OneSignalNotificationServiceExtension-Bridging-Header.h to OneSignalNotificationServiceExtension folder, but the error still persist
anyone can help me to fix the error?
BTW my Xcode version is Version 8.3.2

