Skip to content

Instantly share code, notes, and snippets.

@ubergoober
Created September 4, 2015 07:04
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save ubergoober/ee09f626e16ad2f99e7c to your computer and use it in GitHub Desktop.
Save ubergoober/ee09f626e16ad2f99e7c to your computer and use it in GitHub Desktop.
OSX - Remove all of Android Studio and Android SDK
#Gleemed from stackoverflow: http://stackoverflow.com/questions/17625622/how-to-completely-uninstall-android-studio
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*
#if you would like to delete all projects:
rm -Rf ~/AndroidStudioProjects
#to remove gradle related files (caches & wrapper)
rm -Rf ~/.gradle
#use the below command to delete all Android Virtual Devices(AVDs) and *.keystore. note: this folder is used by others Android IDE as well, so if you still using other IDE you may not want to delete this folder)
rm -Rf ~/.android
#to delete Android SDK tools
rm -Rf ~/Library/Android*
@douglasalipio
Copy link

Also don't forgot to delete rm -Rf ~/Library/ApplicationSupport/Google

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment