Android开发:Ubuntu 增量更新Android Studio

Ubuntu 增量更新Android Studio

参考:

更新步骤

  1. 查看当前的版本号以及最新版本:Help -> Check for Updates

  2. 下载对应的增量jar包

windows: https://dl.google.com/android/studio/patches/AI-你的版本-最新版本-patch-win.jar

linux:https://dl.google.com/android/studio/patches/AI-你的版本-最新版本-patch-unix.jar

例如:https://dl.google.com/android/studio/patches/AI-162.4069837-181.5540.7.32.5056338-patch-unix.jar

  1. 将jar移到到你的studio安装目录下

  2. 执行命令,替换为对应自己下的jar包

# 进入AndroidStudio安装目录
cd /opt/Android/android-studio
# 安装更新包
java -classpath AI-171.4408382-173.4907809-patch-unix.jar com.intellij.updater.Runner install .
  1. 重启Android Studio。完成!

猜你喜欢

转载自blog.csdn.net/qipeng_master/article/details/86307024