Method for completely unloading clean Android Studio under Mac

  • 2021-08-31 09:12:13
  • OfStack

In this article, we share the method of Mac uninstalling Android Studio completely for your reference. The specific contents are as follows

Method 1: Unload Android Studio

1. Uninstall Android Studio and execute the following command on the terminal (terminal):


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* 

2. Delete Projects


rm -Rf ~/AndroidStudioProjects 

3. Delete gradle


rm -Rf ~/.gradle 

4. Uninstall Android Virtual Devices (AVDs) and *. keystore.

Note: If you need other IDE, please do not delete it


rm -Rf ~/.android 

5. Delete Android SDK Tools

Note: If you need other IDE, please do not delete it


rm -Rf ~/Library/Android* 

Related articles: