-
Notifications
You must be signed in to change notification settings - Fork 24.4k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add support for handling com.facebook.react.bridge.Dynamic
as parameter type in TurboModules
#45944
Conversation
This pull request was exported from Phabricator. Differential Revision: D60966684 |
This pull request was exported from Phabricator. Differential Revision: D60966684 |
…eter type in TurboModules (facebook#45944) Summary: Pull Request resolved: facebook#45944 This diff adds support having (Legacy) Native Modules with functions with parameters of type `Dynamic`. This is currently blocking some libraries making it harder for them to migrate to New Architecture. I've implemented it by adding a `DynamicNative` implementation of `Dynamic` which holds a reference of the payload as a `folly::dynamic`. Changelog: [Android] [Added] - Add support for handling `com.facebook.react.bridge.Dynamic` as parameter type in TurboModules Differential Revision: D60966684
8454ace
to
6230866
Compare
…eter type in TurboModules (facebook#45944) Summary: Pull Request resolved: facebook#45944 This diff adds support having (Legacy) Native Modules with functions with parameters of type `Dynamic`. This is currently blocking some libraries making it harder for them to migrate to New Architecture. I've implemented it by adding a `DynamicNative` implementation of `Dynamic` which holds a reference of the payload as a `folly::dynamic`. Changelog: [Android] [Added] - Add support for handling `com.facebook.react.bridge.Dynamic` as parameter type in TurboModules Reviewed By: cipolleschi Differential Revision: D60966684
This pull request was exported from Phabricator. Differential Revision: D60966684 |
6230866
to
8a06d96
Compare
This pull request has been merged in d01f1b3. |
This pull request was successfully merged by @cortinico in d01f1b3 When will my fix make it into a release? | How to file a pick request? |
…eter type in TurboModules (#45944) Summary: Pull Request resolved: #45944 This diff adds support having (Legacy) Native Modules with functions with parameters of type `Dynamic`. This is currently blocking some libraries making it harder for them to migrate to New Architecture. I've implemented it by adding a `DynamicNative` implementation of `Dynamic` which holds a reference of the payload as a `folly::dynamic`. Changelog: [Android] [Added] - Add support for handling `com.facebook.react.bridge.Dynamic` as parameter type in TurboModules Reviewed By: mdvacca, cipolleschi Differential Revision: D60966684 fbshipit-source-id: 2e63bc53ede5277a9c12f1b19f05f6099f5f35f9
This pull request was successfully merged by @cortinico in 7716b58. When will my fix make it into a release? | How to file a pick request? |
…eter type in TurboModules (#45944) Summary: Pull Request resolved: #45944 This diff adds support having (Legacy) Native Modules with functions with parameters of type `Dynamic`. This is currently blocking some libraries making it harder for them to migrate to New Architecture. I've implemented it by adding a `DynamicNative` implementation of `Dynamic` which holds a reference of the payload as a `folly::dynamic`. Changelog: [Android] [Added] - Add support for handling `com.facebook.react.bridge.Dynamic` as parameter type in TurboModules Reviewed By: mdvacca, cipolleschi Differential Revision: D60966684 fbshipit-source-id: 2e63bc53ede5277a9c12f1b19f05f6099f5f35f9
Summary:
This diff adds support having (Legacy) Native Modules with functions with parameters of type
Dynamic
.This is currently blocking some libraries making it harder for them to migrate to New Architecture.
I've implemented it by adding a
DynamicNative
implementation ofDynamic
which holds a reference ofthe payload as a
folly::dynamic
.Changelog:
[Android] [Added] - Add support for handling
com.facebook.react.bridge.Dynamic
as parameter type in TurboModulesDifferential Revision: D60966684