Created
July 16, 2017 17:52
-
-
Save Hendrik44/d8cc08fc9b84b0abd19777a93c8d8805 to your computer and use it in GitHub Desktop.
Complete uninstall android studio from mac/osx
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
rm -Rf /Applications/Android\ Studio.app | |
rm -Rf ~/Library/Preferences/AndroidStudio* | |
rm -Rf ~/Library/Preferences/com.google.android.* | |
rm -Rf ~/Library/Preferences/com.android.* | |
rm -Rf ~/Library/Application\ Support/AndroidStudio* | |
rm -Rf ~/Library/Logs/AndroidStudio* | |
rm -Rf ~/Library/Caches/AndroidStudio* | |
rm -Rf ~/.AndroidStudio* | |
# deletes all projects | |
rm -Rf ~/AndroidStudioProjects | |
# removes gradle | |
rm -Rf ~/.gradle | |
# removes all android virtual devices | |
rm -Rf ~/.android | |
# delete all Android SDK Tools | |
rm -Rf ~/Library/Android* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment