Skip to content

Commit da27c78

Browse files
cipolleschifacebook-github-bot
authored andcommitted
Configure BlobModule as proper TurboModule
Summary: This change puts back D40716048 (279cfec) but in the right way, i.e. modifying the script that should generate those changes. ## Changelog [iOS][Added] - Make the blobs proper TM Reviewed By: dmytrorykun Differential Revision: D41312160 fbshipit-source-id: 38850a63eb8d66ffd179743b4948a23340c8782e
1 parent c301832 commit da27c78

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

React/CoreModules/CoreModulesPlugins.h

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Class RCTWebSocketModuleCls(void) __attribute__((used));
5353
Class RCTDevLoadingViewCls(void) __attribute__((used));
5454
Class RCTDevSplitBundleLoaderCls(void) __attribute__((used));
5555
Class RCTEventDispatcherCls(void) __attribute__((used));
56+
Class RCTBlobManagerCls(void) __attribute__((used));
5657

5758
#ifdef __cplusplus
5859
}

React/CoreModules/CoreModulesPlugins.mm

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ Class RCTCoreModulesClassProvider(const char *name) {
4343
{"DevLoadingView", RCTDevLoadingViewCls},
4444
{"DevSplitBundleLoader", RCTDevSplitBundleLoaderCls},
4545
{"EventDispatcher", RCTEventDispatcherCls},
46+
{"BlobModule", RCTBlobManagerCls},
4647
};
4748

4849
auto p = sCoreModuleClassMap->find(name);

0 commit comments

Comments
 (0)