Android实战技巧之四十六:用patch更新Android Studio

公司机器上的Android Studio很时髦,每次都会准时接收到官方稳定版的推送。目前最新的稳定版本是1.4.1,增加了很多心动的功能。
可是我的笔记本上的AS还在1.3.1,是时候主动将其更新了。

目前来看,主动更新是有困难的。AS提示连接服务器失败。流传在网络上有两个方案:
一、网友通过修改./bin/studio64.vmoptions文件,加入以下内容:

-Djava.net.preferIPv4Stack=true
-Didea.updates.url=http://dl.google.com/android/studio/patches/updates.xml  
-Didea.patches.url=http://dl.google.com/android/studio/patches/ 

虽然可以将update信息调出来,可是我这里还是无法下载。
Android实战技巧之四十六:用patch更新Android Studio_第1张图片
我只好尝试比较复杂一些的第二种方案。
二、下载差异patch手动更新
https://dl.google.com/android/studio/patches/updates.xml
这里列出Android Studio的所有版本,最新的是1.5 Beta。
“A new Android Studio 1.5 Beta is available in the canary channel.”
我们要主动获取patch,格式如下:

 linux: AI-$FROM-$TO-patch-unix.jar
  windows: AI-$FROM-$TO-patch-win.jar
  MacOS: AI-$FROM-$TO-patch-mac.jar

不过从1.3.1直接到1.4.1还没有相应的patch,需要过度一下。下面是我的两次升级方案:

https://dl.google.com/android/studio/patches/AI-141.2135290-141.2288178-patch-unix.jar
https://dl.google.com/android/studio/patches/AI-141.2288178-141.2343393-patch-unix.jar

安装很简单,只需运行如下命令即可:

android-studio3$ java -cp ~/Downloads/AI-141.2135290-141.2279206-patch-unix.jar com.intellij.updater.Runner install .
...
android-studio3$ java -cp ~/Downloads/AI-141.2279206-141.2343393-patch-unix.jar com.intellij.updater.Runner install .

Android实战技巧之四十六:用patch更新Android Studio_第2张图片
Android实战技巧之四十六:用patch更新Android Studio_第3张图片
更新完成,即刻启动新版AS对NDK开发支持的探索!

参考:
http://www.cnblogs.com/daemon369/archive/2013/08/18/3266264.html

你可能感兴趣的:(android,更新,patch,Studio,AS1-4-1)