Reputation: 3627
How do you clear the cookies in a Cordova app?
In particular, I want to make sure all cookies set by the servers in the iframes contained in the app are cleared.
Upvotes: 1
Views: 4450
Reputation: 3627
The Phonegap-Cookies-Plugin does the job. Please note that it works for both PhoneGap and Cordova.
As said in the documentation, after installing the plugin you may call this code:
window.cookies.clear(function() {
console.log('Cookies cleared!');
});
Upvotes: 3