Android Studio update and upgrade method, androidstudio
Since the 2013 Google I/O conference, I have migrated android ide development tools from eclipse to Android Studio. android studio has been updated and improved. To keep pace with the times, of course, we need to update the tool to the latest version! In fact, the Update is simple. You only need to select Check for Update from the menu of Android Studio Help:
However, you will receive the following prompt:
Why is that? Because of the "Great Wall "!!! The following describes the solution.
1. Obtain the Build Number of Android Studio installed on your computer.
If you have installed Android Studio, you only need to update it incrementally. Download and update the jar package. First, you must know your current Android Studio version.
Pay attention to Build # AI-130.745757, for example, the author's version number is 130.745757
2. query the latest version number of Android Studio.
(1) visit the website http://tools.android.com/recentto update the latest build Number, or
(2) Access ingress
According to the returned xml data, the latest Build Number is 132.809981.
3. Download the incremental update package
After obtaining the version number, we can download the update package. For example, the author's update package is
Https://dl.google.com/android/studio/patches/AI-130.745757-132.809981-patch-win.jar
Download the corresponding update package, in the format of AI-$ FROM-$ TO-patch-win.jar, where $ FROM is the build number for your current Android Studio, $ TO is the build number of the latest android studio.
4. install the update package
Copy the downloaded update package to the installation directory of Android Studio. For example, if the author's installation directory is D: \ android-studio, copy the downloaded jar package to this directory.
Open the command line prompt and type the following command
Note the last command
[Java]View plain copy
- Java-classpathAI-130.745757-132.809981-patch-win.jar com.int
- Ellij. updater. Runner install.
The last point "." indicates that the current installation is in the current directory. After the installation is complete, you can restart Android Studio and then Help-> about to check whether the update is 0.2.7!