Reputation: 45
Integration with Existing App
There is not RCT_EXPORT_METHOD
macro in RCTBridgeModule.h
file and RCT_EXPORT
macro exited.
How can I update?
In my podfile:
pod 'React'
pod 'React/RCTText'
Upvotes: 1
Views: 403
Reputation: 5211
Just update the version to 0.4.0
pod 'React', '0.4.0'
pod 'React/RCTText', '0.4.0'
Upvotes: 1