There is a library react-native-iron-source on GitHub. But this library is not in the npm.
How can I add the library to my react-native project manually? So that it works correctly with js code, iOS and Android?
There is a library react-native-iron-source on GitHub. But this library is not in the npm.
How can I add the library to my react-native project manually? So that it works correctly with js code, iOS and Android?
Try putting this in package.json
"dependencies": {
...
"react-native-iron-source": "git://github.com/bsy/react-native-iron-source.git"
},