From 276f0ce4df7f58786da08c34f548456129144aed Mon Sep 17 00:00:00 2001
From: Scott Main To update your existing version of Android Studio to 0.2.x, simply
+follow the installation instructions below and replace your existing
+installation. Caution: Replacing your existing installation of
+Android Studio will remove any additional SDK packages you've installed, such as target
+platforms, system images, and sample apps. To preserve these, copy them from your current
+SDK directory under Android Studio to a temporary location
+before installing the update. Then move them back once the update is complete.
+If you fail to copy these packages, then you can instead download them again through
+the Android SDK Manager. Also note that due to the update to Gradle 0.5, you will encounter errors when opening
+existing projects. See the Troubleshooting notes below for
+information about how to resolve them.Windows
- android-studio-bundle-130.677228-windows.exe
+ href="http://dl.google.com/android/studio/android-studio-bundle-130.737825-windows.exe">
+ android-studio-bundle-130.737825-windows.exe
- 393023485 bytes
- 3da987a9778b66edb68fb43d8b53bfcb
+ 396091268 bytes
+ 6da1bc8effa048c8ff669e4c484eb11f
- android-studio-bundle-130.687321-mac.dmg
+ href="http://dl.google.com/android/studio/android-studio-bundle-130.737825-mac.dmg">
+ android-studio-bundle-130.737825-mac.dmg
- 379877697 bytes
- eb5ca6c77f4a119595d941daeda58810
+ 383326582 bytes
+ 2959bc5039238d286670cc6225342b89
@@ -286,6 +286,25 @@ download (or continue to use) the
+Linux
- android-studio-bundle-130.687321-linux.tgz
+ href="http://dl.google.com/android/studio/android-studio-bundle-130.737825-linux.tgz">
+ android-studio-bundle-130.737825-linux.tgz
- 406516375 bytes
- 6796d66de07c85b2822ca8d501a043c0
+ 409935592 bytes
+ dcd13922f7cf577e3c852b224205d843
Updating to 0.2.x
+
+Installing Android Studio
Note: Periodic updates are pushed to Android Studio -without requiring you to update from here. To manually check for updates, select -Help > Check for updates (on Mac, select Android Studio > -Check for updates).
+Note: There is not a patch update available from +0.1.9 to 0.2. To update from Android Studio 0.1.x to 0.2.x, you must +install a new Android Studio bundle from this page. The reason for that is that we have made +changes to the bundled SDK such that it includes a pre-configured local Maven repository +which can serve up the v4 support library and which is required for creating new projects.
+Android Studio v0.2.x (July 2013) +
+ +Caution: This new version is not backwards compatible. + When opening a project that uses an older version of the plug-in, Studio will show an error + stating Gradle <project_name> project refresh failed. See Troubleshooting below for details.
+The updated Gradle plug-in includes the following changes:
+variant.packageApplication or variant.zipAlign
All Gradle plugin release notes are available are here: http://tools.android.com/tech-docs/new-build-system.
++ Android Studio v0.1.x (May 2013)
@@ -408,13 +491,76 @@ Check for updates).+ +
Note: Periodic updates are pushed to Android Studio +without requiring you to update from here. To manually check for updates, select +Help > Check for updates (on Mac, select Android Studio > +Check for updates).
+ + + + +Android Studio 0.2.0 has updated the Gradle plug-in to 0.5.0, which is not backwards compatible. +When opening a project that uses an older version of the plug-in, Studio will display the error +shown in figure 1 in the upper right corner of the IDE. +To resolve the error, you must change the version of the Android Gradle plug-in to 0.5.0.
+ +build.gradle
file.classpath
to change the gradle version to 0.5.+
.
+ For example:
+ +dependencies { + classpath 'com.android.tools.build:gradle:0.5.+' +} ++
If, after updating to Android Studio 0.2.x and creating or opening a project, you receive an +error stating "Could not find any version that matches +com.android.support:support-v4:13.0.+", then you must install the Android Studio +Repository. This was likely caused because you're pointing Android Studio to an external +Android SDK location that does not have the new Maven repository included with Android Studio +0.2.x. This new Maven repository is used by the new build system for the Support Library, instead +of using the Support Library JAR files, so must be present in the SDK.
+