Android Studio增量升級什麼情況下使用最合適呢?
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 -classpath AI-143.2790544-145.3276617-patch-win.jar com.intellij.updater.Runner install .
- java -classpath AI-143.2790544-145.3276617-patch-win.jar com.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安裝完畢