react-native-builder-bob
react-native-builder-bob copied to clipboard
Add pods to react native module
Add pod in react native module
I'm trying to add pods to my module, but no dependency is found when building the project. How to correctly add pods to your module?
same here
@Garciax why are you not using <project>.podspec and adding the dependency there?
s.dependency "Alamofire", "~> 5.4.1"
as @crherman7 said, you only need to add the dependency inside the podspec.
when the app the uses the packages issues pod install they dependency will get installed.
@Garciax Any updates?