Reputation: 4274
I'm using cordova-http plugin in a Steroids app. according to manual, I've added plugin in iOS config in steroids could service:
[
{"source":"https://github.com/wymsee/cordova-HTTP.git"}
]
and also I've added it in config.xml:
<js-module src="www/cordovaHTTP.js" name="cordova-HTTP">
<clobbers target="cordova-HTTP" />
</js-module>
but still I got the error telling me injected Angular model is missing.
do I need to link it to index.html knowing that manual says
<js-module>
fulfills this job.
do I need to install plugin like what's mentioned in plugin's github page:
cordova plugin add https://github.com/wymsee/cordova-HTTP.git
may you please tell me what should I do step by step to make it work?
Upvotes: 4
Views: 538
Reputation: 1
There are many ways to add plugins. There's an easy way:
Hopes it'll help you
Upvotes: 0