How to Completely Uninstall Android Studio on Mac?
Last Updated :
29 Jul, 2021
Maybe you messed up with your current installation of Android Studio or maybe some nasty error came in even after restarting it several times, well, and doing all the troubleshooting steps didn't help you either...So...? Uninstalling seems the only way out, let's have a look at how to uninstall Android Studio Completely from your system!
Steps to Remove Android Studio
Method #1: On a Mac, Open Terminal then execute these commands in order
The terminal on the Mac# Deletes the Android Studio application
rm -Rf /Applications/Android\ Studio.app
# Delete All Android Studio related preferences
# The asterisk here should target all folders/files beginning with the string before it
rm -Rf ~/Library/Preferences/AndroidStudio*
rm -Rf ~/Library/Preferences/Google/AndroidStudio*
# Deletes Studio's plist file
rm -Rf ~/Library/Preferences/com.google.android.*
# Deletes Emulator's plist file
rm -Rf ~/Library/Preferences/com.android.*
# Deletes main plugins
rm -Rf ~/Library/Application\ Support/AndroidStudio*
rm -Rf ~/Library/Application\ Support/Google/AndroidStudio*
# Deletes all logs that Android Studio outputs
rm -Rf ~/Library/Logs/AndroidStudio*
rm -Rf ~/Library/Logs/Google/AndroidStudio*
# Deletes Android Studio's caches
rm -Rf ~/Library/Caches/AndroidStudio*
# Deletes older versions of Android Studio (if any)
rm -Rf ~/.AndroidStudio*
The GUI Output
And Voila! Just as that Android Studio Got Uninstalled Completely!
Notes: The flags for rm are case-sensitive pay close attention to them!
Method #2: In the GUI Way
If using the terminal isn't your piece of cake, then using the GUI is also an easy way to completely eradicate the current Android Studio
- Press the "Cmd(Command)+option+Space Bar" key simultaneously on your machine
- Search for "Android Studio"
- Click the '+' button just below the search box.
- Then select "are included" from the drop-down menu
- Then you get a lot of system files that need to be deleted to complete the uninstall of the app
- Press "Cmd+A" to select all files then delete them
- Empty your trash. Done
Use the Image below to assess better, if you need help
Uninstalling the GUI Way!
Method #3: A pretty easy one
Assuming here that you're using OS X here. You can simply open the applications folder and move Android Studio to the trash. The same thing goes for the SDK.
GeekTip: ~/Library/Android is where your SDK is stored by default!
Method #4: The Launchpad Way
- The fourth method in this tutorial is to uninstall Android Studio from Launchpad. This application has the icon of a black rocket on a grey background.
- Just open the launch-pad as you usually do, then press and hold on the Android Studio icon until it starts to jiggle, then tap the cross (x) mark then tap on it!
- Just like that, Android Studio got uninstalled!
However: If you did "You may want to add android-studio/bin/ to your PATH environmental" too you will need to undo this alteration by deleting android-studio/bin/ from the file you added this PATH too.
Method #5: I installed Android Studio by the 'umake android' command, what shall I do?
Well, if you took the less traveled pathway and installed it using the umake command, you should simply run these commands in your shell:
1. umake android --remove
After that just delete Android Studio's related folders in your /home folder using:
rm -r ~/.AndroidStudio
rm -r ~/.android
Wrapping Up
Uninstalling Android Studio could be a tedious task but yes this article had pretty much everything that was needed to uninstall Android Studio Completely from your Mac. And as you can see, dragging and dropping apps to Trash might not completely uninstall them. If you need to install it back again just visit here!
Similar Reads
How to Completely Uninstall Android Studio on Windows?
Android Studio is the official IDE (Integrated Development Environment) for Android app development and it is based on JetBrainsâ IntelliJ IDEA software. Android Studio provides many excellent features that enhance productivity when building Android apps. Maybe you are facing some problems or bugs w
2 min read
How To Completely Uninstall Kubernetes?
Kubernetes is often referred to as K-8 It is an open-source container known as a perspiration platform that is designed to concentrate the deployment with scaling and other types of management tasks of containerized apps. While Kubernetes itself offers a very large number of features and advantages
5 min read
How to Uninstall APK Automatically Before Run or Debug in Android Studio?
In this article, we will discuss how we can uninstall the APK from the android device before we run or debug the app in android studio. We almost have to test that when a new user comes to our app, he/she will be shown a first-time login/welcome screen. To test this feature, we have to uninstall the
2 min read
How to Install and Uninstall Plugins in Android Studio?
Android Studio provides a platform where one can build apps for Android phones, tablets, Android Wear, Android TV, and Android Auto. Android Studio is the official IDE for Android application development, and it is based on the IntelliJ IDEA. One can develop Android Applications using Kotlin or Java
3 min read
How to Install Android Studio on Ubuntu?
Android Studio is a full-featured cross-platform IDE that helps us to build applications for Android devices. Android Studio is based on JetBrains' IntelliJ IDEA. This IDE includes everything we need for Android development. Android Studio build system is powered by Gradle allowing you to make multi
5 min read
How to Update Gradle in Android Studio?
The Android Studio build system is based on Gradle, and the Android Gradle plugin adds several features that are specific to building Android apps. Although the Android plugin is typically updated in lock-step with Android Studio, the plugin (and the rest of the Gradle system) can run independent of
2 min read
How to Completely Uninstall a Django App?
Uninstalling a Django app involves several steps to ensure it's completely removed from your project. This Article will guide us through the process of removing the app, cleaning up related database changes, and ensuring that our project remains in good shape.When we want to remove a Django app from
3 min read
How to Completely Uninstall Node.js & Reinstall from Beginning (Mac OS X) ?
Node.js is a widely adopted and robust platform that allows software engineers to create high-performance and scalable web applications with ease. However, there might be instances where you need to perform a complete uninstallation of Node.js from your Mac OS X system and start anew. This necessity
3 min read
How to Generate Class Diagram (UML) on Android Studio?
UML (Unified Modeling Language) is the general-purpose modeling language used to visualize the system. It is a graphical language that is standard to the software industry for specifying, visualizing, constructing, and documenting the artifacts of the software systems, as well as for business modeli
4 min read
How to Create Classes in Android Studio?
In Android during the project development most of the time there is a need for classes in the projects. For example, in the case of CRUD operation, we need a model class to insert and retrieve data. Also to hold the info in our custom view we need to create a getter setter class. So basically in and
3 min read