How to completely uninstall Android studio from your Macbook

How to completely uninstall Android studio from your Macbook

Here are the steps

  • First remove android studio application by going into Application folder, locating android studio and dragging into the bin or highlight it and select "Move to Bin" Or you can simply open your terminal and type this
rm -Rf /Applications/Android\ Studio.app
  • Delete everything that has AndroidStudio in it with this
rm -Rf ~/Library/Preferences/AndroidStudio*
rm -Rf ~/Library/Preferences/Google/AndroidStudio*
  • Delete the Android studio plist files
rm -Rf ~/Library/Preferences/com.google.android.*
  • Delete Android emulator plist files
rm -Rf ~/Library/Preferences/com.android.*
  • Delete plugins
rm -Rf ~/Library/Application\ Support/AndroidStudio*
rm -Rf ~/Library/Application\ Support/Google/AndroidStudio*
  • Delete Android studio logs
rm -Rf ~/Library/Logs/AndroidStudio*
rm -Rf ~/Library/Logs/Google/AndroidStudio*
  • Delete Android Studio caches
rm -Rf ~/Library/Caches/AndroidStudio*
  • Delete older versions of Android Studio
rm -Rf ~/.AndroidStudio*

And that's it. You are good to go.

Please like, comment and share.