美文网首页
Mac平台与Windows平台下AndroidStudio增量升

Mac平台与Windows平台下AndroidStudio增量升

作者: Edwin05 | 来源:发表于2017-01-04 20:33 被阅读135次

    Android Studio增量升级什么情况下使用最合适呢?

    比如现在的as版本是2.2版本,而你的as版本2.0版本,这个时候点Check For Updates就没有反应了,因为你已经2个有版本没升级了(版本跨度太大 ),所以这样就不能在线升级了。

    重要的信息

    谷歌更新地址:https://dl.google.com/android/studio/patches/updates.xml

    增加升级Jar下载:(windodws为win—linux为unix—mac os 为mac。对号入座)

    https://dl.google.com/android/studio/patches/AI-xx-xx-patch-win.jar

    https://dl.google.com/android/studio/patches/AI-xx-xx-patch-mar.jar

    https://dl.google.com/android/studio/patches/AI-xx-xx-patch-unix.jar

    这里解释说明一下上面红色字体的意思前面的xx代表当前as的版本号,反之代表最新as的版本号。

    Jar安装命令:

    Windows —— java -classpath xxx.jar com.intellij.updater.Runner install .

    Mac OS —— java -classpath xxx.jar com.intellij.updater.Runner install Contents/

    Windows下增量升级步骤

    点击菜单栏的 Help -- > About,先查看查看当前的Build Number,版本号143.2790544

    去https://dl.google.com/android/studio/patches/updates.xml下载Jar,最新版本号145.3276617

    截图

    拼装URL ———> https://dl.google.com/android/studio/patches/AI-xx-xx-patch-win.jar

    下载增量Jar包 https://dl.google.com/android/studio/patches/AI-143.2790544-145.3276617-patch-win.jar(翻 墙)

    进入Android Studio根目录

    将下载的jar拷贝至Android Studio 的安装目录

    执行命令:

    java -classpathAI-143.2790544-145.3276617-patch-win.jarcom.intellij.updater.Runner install .

    Mac下增量升级步骤

    与Windows平台下1-2-3步骤一样

    下载增量Jar包 https://dl.google.com/android/studio/patches/AI-143.2790544-145.3276617-patch-mar.jar(翻 墙)

    安装这个地方有点不同。

    拷贝

    执行命令-安装

    java -classpath /Applications/AndroidStudio.app/Contents/AI-143.2790544-145.3276617-patch-mar.jar  com.intellij.updater.Runner install Contents/

    3. 启动Android Studio安装完毕

    相关文章

      网友评论

          本文标题:Mac平台与Windows平台下AndroidStudio增量升

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