react-native-unimodules icon indicating copy to clipboard operation
react-native-unimodules copied to clipboard

[Issue] UMReactNativeAdapter - UMModuleRegistry

Open louisiscoding opened this issue 3 years ago • 4 comments

I have a react-native app, using bare workflow with

"react": "16.13.1",
"react-native": "0.63.3",
"react-native-unimodules": "^0.11.0",

I'm trying to upgrade to react-native 0.66.4 following the upgrade guideline provided by React Native.

So i'm facing this issue at build time for iOS

Capture d’écran 2021-12-28 à 12 07 45

I believe this error might also be related to Expo as i'm in bare workflow, implementing react-native-unimodules. It seems that UMReactNativeAdapter is related to it.

Anyone can help ?

louisiscoding avatar Dec 28 '21 12:12 louisiscoding

@LouisJS I am getting same error in react-native 0.65.0. Any workaround or patches you got to fix it?

anjan-saal avatar Jan 12 '22 06:01 anjan-saal

Also have faced this issue while upgrading react-native to 0.66. Are there any guides or solutions?

ghulidau avatar Feb 22 '22 08:02 ghulidau

facing the same issue any one can help ?

salihboshnak avatar Jun 20 '22 19:06 salihboshnak

@property (nonatomic, strong) UMModuleRegistry *moduleRegistry; ===> @property (nonatomic, strong) UMModuleRegistry *_moduleRegistry;

UMExportedModule *module = [_moduleRegistry getExportedModuleForName:moduleName]; ===> UMExportedModule *module = [self._moduleRegistry getExportedModuleForName:moduleName];

markweng avatar Jun 24 '22 11:06 markweng