How to completely uninstall Android Studio on macOS and OS X

Zach Zach (248)
2 minutes

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:
h/macos87 guides
h/osx35 guides
h/androidstudio1 guide

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!

Network trouble on your Android device? Try this.
Ash Ash (362)
5 minutes

If you're having network trouble with your Android device, you may need to reset the network settings.