美文网首页
Android Studio Mac 下卸载与安装

Android Studio Mac 下卸载与安装

作者: 朱立志 | 来源:发表于2016-11-15 20:24 被阅读134次

    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*

    rm -Rf ~/.AndroidStudio*

    if you would like to delete allprojects:

    rm -Rf ~/AndroidStudioProjects

    to remove gradle related files (caches & wrapper)

    rm -Rf ~/.gradle

    use the below command to delete allAndroid 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*

    相关文章

      网友评论

          本文标题:Android Studio Mac 下卸载与安装

          本文链接:https://www.haomeiwen.com/subject/iuslpttx.html