How Do I Add A Library To React-native Project Manually?
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
Solution 1:
Try putting this in package.json
"dependencies": {
...
"react-native-iron-source": "git://github.com/bsy/react-native-iron-source.git"
},
Post a Comment for "How Do I Add A Library To React-native Project Manually?"