Reputation: 137
I'm using https://rnfirebase.io/docs/v5.x.x/ for my react native project. I want to use it only for Android and not for iOS. But Xcode fails to build saying it needs the firebase inside the PODS.
What should I do? Is there any file I should remove/update?
Upvotes: 1
Views: 2098
Reputation: 46
These are the commands I used to unlink the npm modules from iOS and keep them in Android:
react-native unlink react-native-gesture-handler --platforms ios
react-native unlink react-native-reanimated --platforms ios
react-native unlink react-native-vector-icons --platforms ios
Upvotes: 1