Storage.write errors on android only

getting this error on android only I’m i missing some permissions ?

	Error: TypeError: Storage.write is not a function: Name: TypeError: Storage.write is not a function
	Error message: Uncaught TypeError: Storage.write is not a function
	File name: MainView.js
	Line number: 183
	Source line:   Storage.write("myfile.txt", "Hello from Fuse!")
	JS stack trace: TypeError: Storage.write is not a function
	    at testStorige (MainView.js:183:11)
	    at Object._tempMethod (MainView.js:194:1)
	 in Fuse.Scripting.DiagnosticSubject<MainView.js:183>

on this code

function testStorige(){

  Storage.write("myfile.txt", "Hello from Fuse!")
    .then(function(succeeded) {
        if(succeeded) {
            console.log("Successfully wrote to file");
        }
        else {
            console.log("Couldn't write to file.");
        }
    });

}
testStorige();	

ps works fine on ios/local preview

The fact that it complains that Storage doesn’t have a .write methods means that you’re probably declaring Storage somewhere, and then replacing it with something else. No idea why that would work on one target, but not on the other.

We’d need to see more of your code to suggest anything.