baf08994b9
so we only link to the install guide and re-affirm the system reqs bug: 2374363,2374334
81 lines
2.8 KiB
Plaintext
81 lines
2.8 KiB
Plaintext
page.title=Download the Android SDK
|
|
hide_license_footer=true
|
|
|
|
@jd:body
|
|
|
|
<script type="text/javascript">
|
|
function verify() {
|
|
document.getElementById('download-button').disabled = !document.getElementById('checkbox').checked;
|
|
}
|
|
function submit() {
|
|
var location = window.location.href;
|
|
if (location.indexOf('?v=') != -1) {
|
|
var filename = location.substring(location.indexOf('=')+1,location.length);
|
|
if (document.getElementById('checkbox').checked) {
|
|
document.location = "http://dl.google.com/android/" + filename;
|
|
}
|
|
document.getElementById('click-download').setAttribute("href", "http://dl.google.com/android/" + filename);
|
|
$("#terms-form").hide(500);
|
|
$("#next-steps").show(500);
|
|
document.getElementById('checkbox').disabled=true;
|
|
document.getElementById('download-button').disabled=true;
|
|
} else {
|
|
alert("You have not selected an SDK version. Please return to the Download page");
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<div id="terms-form">
|
|
<p>Please carefully review the Android SDK License Agreement before downloading the SDK.
|
|
The License Agreement constitutes a contract between you and Google with respect to your use of the SDK.</p>
|
|
|
|
<iframe id="terms" style="border:1px solid #888;margin:0 0 1em;height:400px;width:95%;" src="terms_body.html">
|
|
</iframe>
|
|
|
|
<p>
|
|
<input type="checkbox" id="checkbox" onclick="verify()" />
|
|
<label for="checkbox">I agree to the terms of the Android SDK License Agreement.</label>
|
|
</p>
|
|
<p>
|
|
<input type="submit" value="Download" id="download-button" disabled="disabled" onclick="submit()" />
|
|
</p>
|
|
<p>
|
|
<script language="javascript">
|
|
var loc = window.location.href;
|
|
if (loc.indexOf('?v=') != -1) {
|
|
var filename = loc.substring(loc.indexOf('=')+1,loc.length);
|
|
document.write("File: " + filename);
|
|
}
|
|
</script>
|
|
</p>
|
|
</div><!-- end terms-form -->
|
|
|
|
<noscript>
|
|
<p><strong>Please enable Javascript in your browser in order to agree to the terms and download the SDK.</strong></p>
|
|
</noscript>
|
|
|
|
<div class="special" id="next-steps" style="display:none">
|
|
<h2>Thank you for downloading the Android SDK!</h2>
|
|
<p>Your download should be underway. If not, <a id="click-download">click here to start the download</a>.</p>
|
|
<p>To set up your Android development environment, please read the guide to
|
|
<a href="installing.html">Installing the Android SDK</a> and ensure that your development
|
|
machine meets the system requirements linked on that page.</p>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
var loc = window.location.href;
|
|
var filename = loc.substring(loc.indexOf('=')+1,loc.length);
|
|
version = filename.substring(filename.indexOf('.')-1,filename.lastIndexOf('.'));
|
|
$(".addVersionPath").each(function(i) {
|
|
var oldHref = $(this).attr("href");
|
|
$(this).attr({href: "/sdk/" + version + "/" + oldHref});
|
|
});
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|