mac_ delete Android Studio configuration completely

Just deleting the application Android Studiodoes not delete the configuration file.

  • Execute the following command
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*
  • Delete all items
rm -Rf ~/AndroidStudioProjects
  • Delete gradle associated files (caches & wrapper)
rm -Rf ~/.gradle
  • Remove emulator
rm -Rf ~/.android
  • Remove android tools
rm -Rf ~/Library/Android*

Guess you like

Origin blog.csdn.net/FlyingKuiKui/article/details/80911715