I have an android cordova application which is supposed to save and send xls file (via email) generated from an array. So far I have created the xls file using alasql code:
var data = [{a:23,b:10},{a:2,b:20}];
alasql('SELECT * INTO XLSX("myfile.xlsx",{headers:true}) FROM ?',[data]);
In Ripple browser file is generated and downloaded successfully but on device alasql does not download any file or it does not show any action for generating a file. Where does the file generated?
Is it possible to force cordova-android to save the xls in a project folder?