How to completely uninstall Android Studio on macOS and OS X


Sometimes Android Studio gets corrupted, and when you try to compile your Android application (or launch a virtual device), everything goes haywire. Often, the solution is to completely uninstall and reinstall Android Studio.
This guide will show you how to completely clean uninstall Android Studio from macOS and OS X.
Posted in these interests:
Navigate to Applications > Utilities > Terminal.
Carefully run the following commands; this will remove Android Studio and its related preferences and library files. This is the best way to completely uninstall Android Studio and prep it for reinstallation, if desired.
Delete Mac Android Studio itself:
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*
Delete all Android Studio projects (optional):
rm -Rf ~/AndroidStudioProjects
Delete Gradle files/cache:
rm -Rf ~/.android
Delete SDK tools:
rm -Rf ~/Library/Android*
That’s it. You’re done!
Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.