Reputation: 545
I have used html5 file system for createing a file on local disk. It's working fine on computer (desk or laptop), file is been created, data stored and also retrived from the the file. But When runing on mobile device (android) it not working as aspected. If any body have idea whats going wrong on device, plz share. I have read about HTML5 from this link.
I tried for log details, i found this:
Resource interpreted as Image but transferred with MIME type text/html: "http://10.4.71.200/stage/not_found.html".
Upvotes: 1
Views: 76
Reputation: 2817
That may be because HTML5 FileSystem API only works on Chrome 40+ on Android
http://caniuse.com/#search=FileSystem
Edit: You may have noticed the Heads up! notice at the beginning of the post you read
Upvotes: 1