I have a web app that have worked good until Gear S3 got the tizen 3.0 update yesterday.
I have a problem with tizen.filesystem.resolve which I have no clue on how to solve. The code below is example code but generates the same issue.
Running this code would work in Tizen 2.3.2 (giving "success"):
try {
tizen.filesystem.resolve('documents', function(dir){alert('success');},function(e) {alert('Error1 '+e);},"rw");
} catch (e) {
alert("Error2: " +e);
}
But since the update it gives:
Error2: TypeError: Cannot read property 'path' of undefined
It goes to the catch. I have added the privileges (because it did work before the update). Anyone having any idea on whats wrong?
Also tried to create an entierly new project on 3.0, but it still gives the same error