I have the following code: ``` let blobToSave = this.nonAngularObjectsFactory.b64ToBlob(responseData, "application/octet-stream"); let file = new File([blobToSave], route.name + ".gpx"); console.log(file); ``` Which basically gets a base64 string from the server, converts it to blob and creates a file from it. Here is the output of the console in the browsers:  And here is the output of the console when running on an android simulator:  Am I doing something wrong? Looks like the name is the first parameter (the blob)...?
[ Full content available at: https://github.com/apache/cordova-plugin-file/issues/252 ] This message was relayed via gitbox.apache.org for [email protected]
