After reviewing the documentation found on this link for the File plugin, I came across a paragraph that discusses how to add data to a log file. See the example code below:
window.resolveLocalFileSystemURL(cordova.file.dataDirectory, function (dirEntry) {
...
}, onErrorLoadFs);
Unfortunately, I encountered an error:
The property 'resolveLocalFileSytemURL' is not recognized as part of the 'Window' type.
Can anyone shed some light on why this issue may have occurred? Are there any alternative methods for appending to a file using this particular plugin?