I'm looking for a method that will clear android default browser's cache, cookies, history, forms and password.
I have tried these methods:
Browser.clearHistory(getContentResolver());
Browser.clearSearches(getContentResolver());
But they don't clear everything I want.
public class foo extends Browser
{
...
dir = getCacheDir();
// delete that directory including children...
I used this method to clear the caches, but it does not work.
Please somebody help me.