Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 524 Bytes

clear-gradle-cache.md

File metadata and controls

21 lines (13 loc) · 524 Bytes

Clear Gradle Cache

Category: Gradle

The Gradle cache stores a local copy of dependencies and is located at %USERPROFILE%\.gradle\caches on Windows and ~/.gradle/caches/ on Mac and Linux.

Over time it may go stale or require cleanup to recover disk space.

To clear the cache on Mac/Linux:

rm -rf ~/.gradle/caches/

Alternatively, run the following command for your project:

./gradlew cleanBuildCache

Dependencies will be downloaded when they are needed and cached for future use.