Created
September 21, 2016 02:47
-
-
Save cyberrob-zz/9b497fa3d2a25f5dbbf98f26b89e2156 to your computer and use it in GitHub Desktop.
A simple script for entirely delete Android Studio with its related files
This file contains hidden or 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 | |
| rm -Rf /Applications/Android\ Studio.app | |
| rm -Rf ~/Library/Preferences/AndroidStudio* | |
| #rm ~/Library/Preferences/com.google.android.studio.plist | |
| rm -Rf ~/Library/Application\ Support/AndroidStudio* | |
| rm -Rf ~/Library/Logs/AndroidStudio* | |
| rm -Rf ~/Library/Caches/AndroidStudio* | |
| rm -Rf ~/.gradle | |
| rm -Rf ~/.android | |
| rm -Rf ~/Library/Android* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment