zoukankan      html  css  js  c++  java
  • mac下卸载android studio

    Execute these commands from the 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*
    

    if you would like to delete all projects:

    rm -Rf ~/AndroidStudioProjects
    

    to remove gradle related files (caches & wrapper)

    rm -Rf ~/.gradle
    

    use the below command to delete all Android Virtual Devices(AVDs) and *.keystore. note: this folder is used by others Android IDE as well, so if you still using other IDE you may not want to delete this folder)

    rm -Rf ~/.android
    

    to delete Android SDK tools

    rm -Rf ~/Library/Android*
  • 相关阅读:
    JEECG开发总结
    ehcache集群的配置
    spring拦截器
    spring的基本配置
    kindeditor编辑器
    jQuery中的Ajax
    表单验证
    Python中的Random模块
    Open vSwitch FAQ (二)
    Open vSwitch FAQ (一)
  • 原文地址:https://www.cnblogs.com/seer/p/6397174.html
Copyright © 2011-2022 走看看