Cordova excluir cache
// download this plugin. it reset cache on internal browser
cordova plugin add cordova-plugin-cache-clear
// use this function in index.js or on main html
document.addEventListener('deviceready', function() {
var success = function(status) {
alert('Message: ' + status);
};
var error = function(status) {
alert('Error: ' + status);
};
window.CacheClear(success, error);
});
inibir