I am using the cordova-http plugin in the Steroids application. according to manual , I added the plugin in the iOS configuration in steroids:
[
{"source":"https://github.com/wymsee/cordova-HTTP.git"}
]
and I added it to the config.xml file:
<js-module src="www/cordovaHTTP.js" name="cordova-HTTP">
<clobbers target="cordova-HTTP" />
</js-module>
but still I got an error telling me they were injecting an Angular model.
- I need to associate it with index.html, knowing that the manual says it
<js-module>does the job. I need to install the plugin, like what is mentioned in the github page plugin:
cordova plugin add https://github.com/wymsee/cordova-HTTP.git
Could you tell me what I have to do step by step to make it work?