I am developing a new feature for a react native module (https://github.com/blackuy/react-native-twilio-video-webrtc) the thing is it is developed in Objective-C and I need to import a new Swift class.
What I've done so far:
- Importing it with the name of the package, in this case
#import <RNTwilioVideoWebRTC/RNTwilioVideoWebRTC-Swift.h>
- Ensuring that Precompile Bridging Header is set to Yes
- Setting
Objective-C Generated Interface Header Name
as RNTwilioVideoWebRTC-Swift.h
The problem is then i try to run the example app inside the module, it prompts an error RNTwilioVideoWebRTC/RNTwilioVideoWebRTC-Swift.h file not found
What am I missing? Thanks!