Hi,
is there a way to work around CocoaPods or is it a strict requirement?
I am trying to get firebase data persistence going on an ios app which led me to this module, but I have been given some technical restrictions that include not using CocoaPods. I looked at the docs and didn’t see anything, maybe I missed it? I already had firebase set up without pods. I’m hoping it’s just a matter of linking some things in xcode, but I am not certain I understand what CocoaPods does in its entirety.
Thanks in advance!
My question is, is it possible to install WITH pods but just not the react pods specified in the documentation>? Because those are the ones that cause me problems
@Alex-Mann what are the issues you have and in what project?
if the issue is now in your own project (rather than RN-Firebase), you may need to add them manually into Header Search Path (just like RN-Firebase).
In your project target:
in Header Search Path, add: $(SRCROOT)/Pods/Firebase
I forgot to mention, but did you add the directory containing the Firebase Libraries to your Xcode Project ? Just Drag and Drop the whole folder inside and make sure Copy is unchecked.
I got it to work. It was some conflicts between another modules I had installed, to be more specific,
react-native-fcm
andreact-native-google-signin
.