I did this cause of what is said in the doc
http://docs.phonegap.com/phonegap-build ... g/plugins/
Under Plugin Paramaters.
<plugin name="com.phonegap.plugins.example">
<param name="APIKey" value="12345678" />
<param name="APISecret" value="12345678" />
</plugin>
I put in APP_ID and the id number, and made sure the cranberry plugin name was correct but it said malformed config.xml. I just put in APP_ID and the id. I just had the one parameter using that as a model.
I think, I got the problem. If you are adding the plugin like so;
<plugin name="com.phonegap.plugins.example">
<param name="APIKey" value="12345678" />
<param name="APISecret" value="12345678" />
</plugin>
for some reason Phonegap won't take it, and it happen to me before. So what you need to do is put the plugin in one line. like so;
<plugin name="com.phonegap.plugins.example"> <param name="APIKey" value="12345678" /> <param name="APISecret" value="12345678" /> </plugin>
Do it like so, and i hope it work