Skip to content

Instantly share code, notes, and snippets.

@kibotu
Created October 2, 2024 11:19
Show Gist options
  • Save kibotu/30b147945ad18037e831997770c5770e to your computer and use it in GitHub Desktop.
Save kibotu/30b147945ad18037e831997770c5770e to your computer and use it in GitHub Desktop.
Cleanup caches for Android & iOS development.
#!/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