1. 程式人生 > 其它 >Android Studio增量升級什麼情況下使用最合適呢?

Android Studio增量升級什麼情況下使用最合適呢?

Android Studio增量升級什麼情況下使用最合適呢?

比如現在的as版本是2.2版本,而你的as版本2.0版本,這個時候點Check For Updates就沒有反應了,因為你已經2個有版本沒升級了(版本跨度太大 ),所以這樣就不能線上升級了。

 

重要的資訊

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

  2. 增加升級Jar下載:(windodws為win—linux為unix—mac os 為mac。對號入座)

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

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

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

      1. 這裡解釋說明一下上面紅色字型的意思前面的xx代表當前as的版本號,反之代表最新as的版本號。
  3. Jar安裝命令:
      1. Windows —— java -classpath xxx.jar com.intellij.updater.Runner install .
      2. Mac OS —— java -classpath xxx.jar com.intellij.updater.Runner install Contents/

Windows下增量升級步驟

  1. 點選選單欄的 Help -- > About,先檢視檢視當前的Build Number,版本號143.2790544

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

    1. 截圖
  3. 拼裝URL ———> https://dl.google.com/android/studio/patches/AI-xx-xx-patch-win.jar

     
    1. 下載增量Jar包 https://dl.google.com/android/studio/patches/AI-143.2790544-145.3276617-patch-win.jar(翻 牆)
  4. 進入Android Studio根目錄

    1. 將下載的jar拷貝至Android Studio 的安裝目錄

    2. 執行命令:
      1.   java -classpath AI-143.2790544-145.3276617-patch-win.jar com.intellij.updater.Runner install .
         

  

Mac下增量升級步驟

  1. 與Windows平臺下1-2-3步驟一樣

    1. 下載增量Jar包 https://dl.google.com/android/studio/patches/AI-143.2790544-145.3276617-patch-mar.jar(翻 牆)
  2. 安裝這個地方有點不同。

    1. 拷貝  

    2. 執行命令-安裝

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

     3. 啟動Android Studio安裝完畢