PhoneGap 3 plugin to clear cache on Android.
Assuming the PhoneGap CLI is installed, from the command line run:
phonegap local plugin add https://github.com/sagittaros/CacheCleaner.git
After that, paste this in your config.xml:
<feature name="CacheCleaner">
<param name="android-package" value="org.felixtioh.phonegap.plugins.cachecleaner.CacheCleaner"/>
</feature>
No need to add any js file. It is added automatically.
You can clean you cache by using:
cache_cleaner.delete();
Example:
<button onclick="cache_cleaner.delete();">delete</button>