Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Modify app assets using Phonegap's File API

I worked on a phonegap application using html5 for a month. I handle offline JSON files using File API.
It seems that the JSON files I store are automatically saved on /mnt/sdcard/.

The problem is, I find myself handling 3 files for each file I want.
1 st the file packaged with my app (js/products.js)
2 nd the remote file that sends me updates (http://website/remote_products.js)
3 rd the local file on sdcard I update with the remote data. (/mnt/sdcard/updated-products.js)

Is it possible to - instead of saving on the sdcard - update my app's assets using File API ?
Or create a new file in my app assets folder ?

(the JSON file packaged with my app. Found in js/products.js)

If yes, how plz ?

thx

like image 924
Hext0r Avatar asked Feb 22 '12 09:02

Hext0r


1 Answers

Sadly, you cannot modify the files in /android_assets/www with the File API.

See this answer to a slightly different question answered by one of the PhoneGap Android devs: https://stackoverflow.com/a/8966227/878602

"You can't do what you want to do. The files in the assets directory are not technically on the file system so they are not accessible via the File API. This means calling window. resolveLocalFileSystemURI() will not return you a FileEntry."

like image 194
Devgeeks Avatar answered Sep 23 '22 06:09

Devgeeks