Krupal Ghorpade
Krupal Ghorpade

Reputation: 137

How to remove react-native-firebase from iOS while keeping it in Android?

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

Answers (1)

Daniyal Naeem
Daniyal Naeem

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

Related Questions