Search code examples
react-nativereact-native-iosreact-native-linking

react-native link only for one project (Android or iOS)


I want to link only one of my project (Android or iOS) with the npm package. Is there any way to do it?


Solution

  • You can choose to link libraries for only a certain platform by doing:

    For Android: react-native link (your_library_name_here) --platforms android

    For iOS: react-native link (your_library_name_here) --platforms ios