You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: use RCT_EXPORT_METHOD instead of RCT_REMAP_METHOD (#417)
### Summary
Closes #414
We were using `RCT_REMAP_METHOD` to register methods in the current
architecture. This macro generates a new method from the given method
and changes its signature.
I've changed it to `RCT_EXPORT_METHOD` and with this change, we are able
to remove the duplicate implementation for mixed libraries.
### Test plan
These changes can potentially change these libraries: `current arch
objc`, `new arch objc`, `new arch cpp`, `mixed arch objc`, `mixed arch
cpp`. We need to make sure all of those libraries are generated properly
and work well.
0 commit comments