Reputation: 77
Can i delete the older versions of the gradle folder versions such as 2.0, 3.3 and just keep the latest version or are all of them required by Android Studio?? click to see all the gradle folders under wrapper
Upvotes: 0
Views: 2161
Reputation: 14493
Yes, it is simply a cache.
You can always delete the downloaded Gradle versions, as the Gradle wrapper will redownload them if required.
However, if you don't necessarily need space on your disk, you can also keep them, so that they can be reused whenever a Gradle project with the specific version is executed. This way, you may save the time to redownload.
Upvotes: 1