I'm developing a Cordova plugin, and I need to add local pods to my project.
for distant pods we can add them in our plugin.xml file using an xml tag like this :
<framework src="OpenSSL" type="podspec" spec="~> 1.0.0" />
Once we add this tag and we add our plugin to our cordova project, a podfile containing this line pod 'OpenSSL' '~> 1.0.0' will be automatically generated.
The question is how can we add a local pod to have in our podfile a line like this : pod 'podName', path: '../myLocalPath'