I am trying to import a swift Pod (A) into an objective-C Pod (B) to use with a React Native project.
In B's podspec, I added the dependency for A.In the React Native Project's Podfile, I added both A and B and ran Pod Install.
Now, inside the code of B, whenever I try to #import A, it can't find it.
I'm very new to all of this, what am I missing?
How could I use A's method calls into B?
Thank you in advance!:)