Android was not working because the status is set to 200, not 0.
@ -256,7 +256,7 @@
xhr.send();
if (isFileProtocol) {
if (xhr.status === 0) {
if (xhr.status === 0 || xhr.status === 200) {
success(xhr, options);
} else {
failure(options.url);