Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React Native rnpm unlink library

Recently added this library: https://github.com/ivpusic/react-native-image-crop-picker but after trying to debug the issues that I get on build, I saw that this library is unavailable for linking through rnpm and only through cocoapods. Is there any way to unlink the library using rnpm and then install cocoa pods and do it that way? I don't want to create some conflicts between the two.

The issue I'm getting with the library is 'RCTHBridgeModule.h file not found.' and the creator of the library said he currently does not support rnpm.

like image 952
omriki Avatar asked Jul 05 '16 22:07

omriki


1 Answers

Very easy

  1. react-native unlink lib-name-example
  2. npm uninstall --save lib-name-example
like image 164
CommonSenseCode Avatar answered Oct 14 '22 20:10

CommonSenseCode