summaryrefslogtreecommitdiffstats
path: root/docs/html/sdk/installing/studio.jd
diff options
context:
space:
mode:
Diffstat (limited to 'docs/html/sdk/installing/studio.jd')
-rw-r--r--docs/html/sdk/installing/studio.jd62
1 files changed, 45 insertions, 17 deletions
diff --git a/docs/html/sdk/installing/studio.jd b/docs/html/sdk/installing/studio.jd
index 856121a..f3e181e 100644
--- a/docs/html/sdk/installing/studio.jd
+++ b/docs/html/sdk/installing/studio.jd
@@ -1,4 +1,5 @@
page.title=Getting Started with Android Studio
+page.tags="studio"
@jd:body
@@ -252,36 +253,36 @@ download (or continue to use) the
<td>Windows</td>
<td>
<a onclick="return onDownload(this)" id="win-studio"
- href="http://dl.google.com/android/studio/android-studio-bundle-130.676883-windows.exe">
- android-studio-bundle-130.676883-windows.exe
+ href="http://dl.google.com/android/studio/android-studio-bundle-130.677228-windows.exe">
+ android-studio-bundle-130.677228-windows.exe
</a>
</td>
- <td>381763627 bytes</td>
- <td>592129b7aee608ad706752369d99a2a1</td>
+ <td>382109250 bytes</td>
+ <td>eb90d50a6ccd975bf19c6930c2006300</td>
</tr>
<tr>
<td><nobr>Mac OS X</nobr></td>
<td>
<a onclick="return onDownload(this)" id="mac-studio"
- href="http://dl.google.com/android/studio/android-studio-bundle-130.676883-mac.dmg">
- android-studio-bundle-130.676883-mac.dmg
+ href="http://dl.google.com/android/studio/android-studio-bundle-130.677228-mac.dmg">
+ android-studio-bundle-130.677228-mac.dmg
</a>
</td>
- <td>371232906 bytes</td>
- <td>16192870d1a1e99e2d96d5fa9fc3fccb</td>
+ <td>371607412 bytes</td>
+ <td>119e8e7170f451bec82cfa321e53d780</td>
</tr>
<tr>
<td>Linux</td>
<td>
<a onclick="return onDownload(this)" id="linux-studio"
- href="http://dl.google.com/android/studio/android-studio-bundle-130.676883-linux.tgz">
- android-studio-bundle-130.676883-linux.tgz
+ href="http://dl.google.com/android/studio/android-studio-bundle-130.677228-linux.tgz">
+ android-studio-bundle-130.677228-linux.tgz
</a>
</td>
- <td>400151208 bytes</td>
- <td>2b25f4ee51a2e076b0ede6da94508761</td>
+ <td>400487529 bytes</td>
+ <td>62b9ce75e4b74b7c1236ea2f1f99da34</td>
</tr>
</table>
@@ -300,13 +301,35 @@ download (or continue to use) the
<li>Install Android Studio and the SDK tools:
<p><b>Windows:</b></p>
<ol>
- <li>Launch the downloaded EXE file, {@code android-studio-bundle-&lt;version&gt;.exe}.
+ <li>Launch the downloaded EXE file, {@code android-studio-bundle-&lt;version&gt;.exe}.</li>
<li>Follow the setup wizard to install Android Studio.
+
+ <div class="caution"><p><strong>Known issue:</strong>
+ On some Windows systems, the launcher script does not find where Java is installed.
+ If you encounter this problem,
+ you need to set an environment variable indicating the correct location.</p>
+ <p>Select <strong>Start menu > Computer > System Properties >
+ Advanced System Properties</strong>. Then open <strong>Advanced tab > Environment
+ Variables</strong> and add a new system variable <code>JAVA_HOME</code> that points to
+ your JDK folder, for example <code>C:\Program Files\Java\jdk1.7.0_21</code>.</p>
+ </div>
+ </li>
+
</ol>
<p><b>Mac OS X:</b></p>
<ol>
- <li>Open the downloaded DMG file, {@code android-studio-bundle-&lt;version&gt;.dmg}.
+ <li>Open the downloaded DMG file, {@code android-studio-bundle-&lt;version&gt;.dmg}.</li>
<li>Drag and drop Android Studio into the Applications folder.
+
+ <div class="caution"><p><strong>Known issue:</strong>
+ Depending on your security settings, when you attempt to open Android Studio, you might
+ see a warning that says the package is damaged and should be moved to the trash. If this
+ happens, go to <strong>System Preferences > Security &amp; Privacy</strong> and under
+ <strong>Allow applications downloaded from</strong>, select <strong>Anywhere</strong>.
+ Then open Android Studio again.</p>
+ </div>
+ </li>
+
</ol>
<p><b>Linux:</b></p>
<ol>
@@ -332,6 +355,9 @@ the {@code sdk/} directory. For example:</p>
<p>Mac: <code>/Applications/Android\ Studio.app/sdk/</code></p>
</div>
+<p>For a list of some known issues, see <a
+href="http://tools.android.com/knownissues">tools.android.com/knownissues</a>.</p>
+
<h2 id="Start">Starting a Project</h2>
@@ -419,16 +445,18 @@ style="vertical-align:bottom;margin:0;height:19px" /> in the toolbar.</p>
function onDownload(link, button) {
-
+ var $studioLink;
+
/* set text for download button */
if (button) {
+ $studioLink = $("a#"+$(link).attr('href'));
$("#downloadForRealz").html($(link).text());
} else {
+ $studioLink = $(link);
$("#downloadForRealz").html("Download " + $(link).text());
}
- $studioLink = $("a#"+$(link).attr('href'));
- $("#downloadForRealz").attr('href',$studioLink.attr('href'));
+ $("#downloadForRealz").attr('href', $studioLink.attr('href'));
$("#tos").fadeIn('fast');
$("#main").fadeOut('fast');