Open Paulofsr opened 5 years ago
Storage.read is broken in android this is how i fixed it
function readSyncFix(){
try {
var data = JSON.parse(Storage.readSync(savefile));
welcomeText.value = "Hi " + data.welcomeText;
} catch (e) {
debug_log("error no file")
}
};
readSyncFix()
Hi!
When I export the Storage Example to my Android show this log and the app not open..