React Native unlink library from iOS or android only

Viewed 825

I had searched throughout SO and just found about react-native unlink only. What i want is unlink a library in specific platform such as android or ios. By running react-native unlink will unlink all native dependencies in both android and ios platform, this is not what i'm looking for.

Thanks

1 Answers

I had found an answer,

react-native unlink react-native-config --platforms=ios

or:

react-native unlink react-native-config --platforms=android
Related