I am new to phonegap app development. I am writing a shopping cart that needs to work offline. I created the project using the Phonegap desktop application. I am just about finished it but one thing I cannot get working is I need to download product images and store them locally. I have tried a few different functions posted already like this one
NOthing works. It just hangs for a second then nothing happens. I have the following in the config.xml:
<gap:plugin name="org.apache.cordova.file"/>
<gap:plugin name="org.apache.cordova.file-transfer"/>
I think I read that plugins don't work until you build it but I tried building it using Phonegap Build, which is fine but it didn't make any difference with regards the image files downloading.
I can successfully download JSON strings from my web service written in C# using .ajax and parse them but can't see how to download some jpegs and store them.
Does anyone have any ideas? I'm thinking it must be something simple but I can't figure it out. thanks