Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React Native Ios: Native Module cannot be null

Found Error in IOS

Native Module cannot be null

I don't use react-native-push-notification

enter image description here

enter image description here

like image 690
Behzad kahvand Avatar asked Nov 08 '22 03:11

Behzad kahvand


1 Answers

This usually happens when you fail to link the third lib to your target causing NativeModules find nothing at attempt.

To solve this, go to your Project Navigator -> Target -> General -> Linked Frameworks and Libraries, make sure somelib.a is there.

enter image description here

In your case, please follow the ios install guides and react-native doc

like image 133
Mahdi Bashirpour Avatar answered Nov 15 '22 11:11

Mahdi Bashirpour