ios noob here. I have a react-native app and I wrote a native module (private).
now I want to use it.
in my app's podfile I've defined the module to be taken from node_modules
, but in the module's podspec file I need to define source
so I've wrote : s.source = {:path => "./ios"}
.
Apparently this is not supported in cocoapods for a long time.
this fails with Unsupported download strategy '{:path=>"./ios"}'.
Any help for how can I make this work will be appreciated. Thanks