Android Studio Update Upgrade method
?
- Why write the Update method?
In the menu bar in Android Studio, help----the >check for UPDATE command, but when we select this command, it appears
This is because of our omnipotent "wall".
The following are the solutions:
?
- First we need to know the version of Android Studio we installed
Through the help----the >about command can be obtained as:
????
???? This is the version I have updated, the previous version is #ai-135.1629389
?
- Get the latest version of Android studio
On a cloth we got the version number of Adroid Studio we installed, and then we need to know the latest version number of Android studio and access it in the browser
Https://dl.google.com/android/studio/patches/updates.xml ,
The mark is at the latest Android studio version number 135.1641136.
?
- Download the Android Studio Incremental update package
Download the Android Studio Incremental update package with our installed Android Studio version number and latest version number
https://dl.google.com/android/studio/patches/ai-$FROM-$TO-patch-win.jar
$FROM is the installed version number;
$TO to the latest version number;
Take my update as an example, in the browser input
Https://dl.google.com/android/studio/patches/AI-135.1629389-135.1641136-patch-win.jar
Download a good incremental update package;
- Install the update package
Put the downloaded incremental update package into a directory file, Remember that its directory cannot be installed in Android Studio directory, and its directory cannot have spaces , I put the update package in the e-packing directory, Android Studio installed in the E:\Program Files\android\android Studio Directory;
Then close Android Studio and open a command prompt to locate the Android Studio installation directory, type the following command:
Java-classpath E:\AI-130.745757-132.809981-patch-win.jar com.intellij.updater.Runner install.???????? The last one "." Indicates the installation to the current directory;
?
Then open the Android Studio help------->about to see if your version is updated.
?
?
?
What Junyuz adds
As mentioned above, upgrading directly from 1.0 to 1.2 is not an incremental update package, so you need to upgrade from 1.0 to 1.1 before upgrading from 1.1 to 1.2.
Android Studio Update Upgrade method