Skip to content

Instantly share code, notes, and snippets.

@SeanSyue
Created July 12, 2019 04:07
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Remove Android Studio on MacOS
# https://stackoverflow.com/questions/17625622/how-to-completely-uninstall-android-studio/18458893#18458893
# with small modification
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/Android/*
rm -Rf ~/Library/Logs/AndroidStudio*
rm -Rf ~/Library/Caches/AndroidStudio*
rm -Rf "~/Library/Saved Application State/com.google.android.studio.savedState"
rm -Rf ~/.AndroidStudio*
# if you would like to delete all projects:
rm -Rf ~/AndroidStudioProjects
# to remove gradle related files (caches & wrapper)
rm -Rf ~/.gradle
# delete all Android Virtual Devices(AVDs) and *.keystore.
rm -Rf ~/.android
# to delete Android SDK tools
rm -Rf ~/Library/Android*
# Emulator Console Auth Token
rm -Rf ~/.emulator_console_auth_token
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment