Created
October 2, 2024 11:19
-
-
Save kibotu/30b147945ad18037e831997770c5770e to your computer and use it in GitHub Desktop.
Cleanup caches for Android & iOS development.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# droid | |
rm -rf ~/.gradle | |
rm -rf ~/.m2 | |
rm -rf ~/.android/cache | |
# ios | |
rm -rf ~/Library/Developer/Xcode/DerivedData/* | |
rm -rf ~/Library/Caches/org.swift.swiftpm | |
rm -rf ~/Library/org.swift.swiftpm | |
# os | |
rm -rf ~/Library/Caches/* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment