KevinLee
KevinLee

Reputation: 45

ReactNative Integration with Existing App not RCT_EXPORT_METHOD macro

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

Answers (1)

Yinfeng
Yinfeng

Reputation: 5211

Just update the version to 0.4.0

pod 'React', '0.4.0'
pod 'React/RCTText', '0.4.0'

Upvotes: 1

Related Questions