android studio clear cache code example
Example 1: laravel clear cache
php artisan cache:clear
php artisan route:clear
php artisan config:clear
php artisan view:clear
Example 2: how to clear cache of gradle
gradlew cleanBuildCache
Example 3: how to remove gradle cache and temp files
gradlew cleanBuildCache
Example 4: cordova delete cache
cordova plugin add https:
document.addEventListener('deviceready', onDeviceReady);
function onDeviceReady()
{
var success = function(status) {
alert('Message: ' + status);
}
var error = function(status) {
alert('Error: ' + status);
}
window.cache.clear( success, error );
}
Example 5: how to clear gradle cache gitignore
git rm -r --cached .idea/