Hello
Based on all the samples found, I am using the function “window.requestFileSystem” to get access to the file system in order to write a local file on the device
This is working perfectly on IOS (IOS 6 & 7) but always failing on Android (Nexus 7 version 2013)
On android the callback Error function is always called and provided the Error code equal to 9. No idea for what it means
Here the real line of code used.
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, fail);
Also tried this as saw in a post
window.requestFileSystem(1, 0, gotFS, fail);
Impossible to have my local file stored up to now on Android
Hope you may know a tip for this
Many thanks