Reputation: 33
Id like to build a Phonegap app which allows users to first access programs from a web-server(already achieved) and also provide the option to download those programs for later use offline. These programs are comprised of of images, html, js, and css files. Is it possible permanently store any files or data on a Phonegap app? If so, please expand.
Upvotes: 3
Views: 287
Reputation: 701
Is it possible permanently store any files or data on a Phonegap app?
YES. You can find phonegap storage API details here
Rather than this I use to write into text / xml files for storing data. This documentation helps you
But in your case you need to download programs and data. This depends up on your logic. You need to derive some logic for that.
Upvotes: 1