blob: d5c9ffc8b025570e6c5ae33e1f15497c8a634b34 [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001<?cs include:"doctype.cs" ?>
2<?cs include:"macros.cs" ?>
3<html>
4<?cs if:sdk.redirect ?>
5 <head>
6 <title>Redirecting...</title>
Dirk Doughertyd8cfce02009-07-15 16:37:21 -07007 <meta http-equiv="refresh" content="0;url=<?cs var:toroot ?>sdk/<?cs
8 if:sdk.redirect.path ?><?cs var:sdk.redirect.path ?>"<?cs
9 else ?><?cs var:sdk.current ?>/index.html<?cs /if ?>"
The Android Open Source Project88b60792009-03-03 19:28:42 -080010 <link href="<?cs var:toroot ?>assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
11 </head>
12<?cs else ?>
13 <?cs include:"head_tag.cs" ?>
14<?cs /if ?>
15<body class="gc-documentation">
16<a name="top"></a>
17<?cs call:custom_masthead() ?>
18
19<?cs call:sdk_nav() ?>
20
The Android Open Source Project88b60792009-03-03 19:28:42 -080021<?cs if:sdk.redirect ?>
Dirk Doughertyd8cfce02009-07-15 16:37:21 -070022
Dirk Dougherty19a4bd12009-04-24 11:30:32 -070023<div class="g-unit">
24 <div id="jd-content">
25 <p>Redirecting to
Dirk Doughertyd8cfce02009-07-15 16:37:21 -070026 <a href="<?cs var:toroot ?>sdk/<?cs
27 if:sdk.redirect.path ?><?cs var:sdk.redirect.path ?>">/sdk/<?cs var:sdk.redirect.path ?><?cs
28 else ?><?cs var:sdk.current ?>/index.html">/sdk/<?cs var:sdk.current ?>/index.html<?cs /if ?>
29 </a> ...</p>
The Android Open Source Project88b60792009-03-03 19:28:42 -080030<?cs else ?>
Dirk Dougherty19a4bd12009-04-24 11:30:32 -070031<div class="g-unit" id="doc-content" >
The Android Open Source Project88b60792009-03-03 19:28:42 -080032 <div id="jd-header" class="guide-header" >
33 <span class="crumb">&nbsp;</span>
Dirk Dougherty55534c82009-04-21 18:52:37 -070034 <h1><?cs if:android.whichdoc == "online" ?>Download <?cs /if ?><?cs var:page.title ?></h1>
The Android Open Source Project88b60792009-03-03 19:28:42 -080035 </div>
36
Dirk Dougherty19a4bd12009-04-24 11:30:32 -070037 <div id="jd-content">
Dirk Dougherty4e4c9192009-05-12 15:32:35 -070038 <p><em><?cs
39 if:ndk ?><?cs
40 var:ndk.date ?><?cs
41 else ?><?cs
42 var:sdk.date ?><?cs
43 /if ?></em>
44 </p>
The Android Open Source Project88b60792009-03-03 19:28:42 -080045
46<?cs if:sdk.not_latest_version ?>
47 <div class="special">
48 <p><strong>This is NOT the current Android SDK release.</strong></p>
Scott Main6b894c82009-04-26 23:18:20 -070049 <p><a href="/sdk/<?cs var:sdk.current ?>/index.html">Download the current Android SDK</a></p>
The Android Open Source Project88b60792009-03-03 19:28:42 -080050 </div>
51<?cs /if ?>
Dirk Doughertye6be85f2009-06-24 11:01:03 -070052
The Android Open Source Project88b60792009-03-03 19:28:42 -080053<?cs if:android.whichdoc != "online" ?>
54
55<p>The sections below provide an overview of the SDK package. </p>
56
57<?cs else ?>
Dirk Dougherty4e4c9192009-05-12 15:32:35 -070058 <?cs if:ndk ?>
The Android Open Source Project88b60792009-03-03 19:28:42 -080059
Dirk Dougherty4e4c9192009-05-12 15:32:35 -070060<p>The Android NDK is a companion tool to the Android SDK that lets Android
61application developers build performance-critical portions of their apps in
62native code. It is designed for use <em>only</em> in conjunction with the
63Android SDK, so if you have not already installed the Android 1.5 SDK, please do
Dirk Doughertye6be85f2009-06-24 11:01:03 -070064so before downloading the NDK. Also, please read <a href="#overview">What is the
65Android NDK?</a> to get an understanding of what the NDK offers and whether it
66will be useful to you.</p>
Dirk Dougherty4e4c9192009-05-12 15:32:35 -070067
68<p>Select the download package that is appropriate for your development
Dirk Doughertye6be85f2009-06-24 11:01:03 -070069computer. </p>
70
Dirk Dougherty4e4c9192009-05-12 15:32:35 -070071 <table class="download">
72 <tr>
73 <th>Platform</th>
74 <th>Package</th>
75 <th>Size</th>
76 <th>MD5 Checksum</th>
77 </tr>
78 <tr>
79 <td>Windows</td>
80 <td>
Dirk Doughertye6be85f2009-06-24 11:01:03 -070081 <a href="http://dl.google.com/android/ndk/<?cs var:ndk.win_download ?>"><?cs var:ndk.win_download ?></a>
Dirk Dougherty4e4c9192009-05-12 15:32:35 -070082 </td>
83 <td><?cs var:ndk.win_bytes ?> bytes</td>
84 <td><?cs var:ndk.win_checksum ?></td>
85 </tr>
86 <tr class="alt-color">
87 <td>Mac OS X (intel)</td>
88 <td>
Dirk Doughertye6be85f2009-06-24 11:01:03 -070089 <a href="http://dl.google.com/android/ndk/<?cs var:ndk.mac_download ?>"><?cs var:ndk.mac_download ?></a>
Dirk Dougherty4e4c9192009-05-12 15:32:35 -070090 </td>
91 <td><?cs var:ndk.mac_bytes ?> bytes</td>
92 <td><?cs var:ndk.mac_checksum ?></td>
93 </tr>
94 <tr>
Dirk Doughertye6be85f2009-06-24 11:01:03 -070095 <td>Linux 32/64-bit (x86)</td>
Dirk Dougherty4e4c9192009-05-12 15:32:35 -070096 <td>
Dirk Doughertye6be85f2009-06-24 11:01:03 -070097 <a href="http://dl.google.com/android/ndk/<?cs var:ndk.linux_download ?>"><?cs var:ndk.linux_download ?></a>
Dirk Dougherty4e4c9192009-05-12 15:32:35 -070098 </td>
99 <td><?cs var:ndk.linux_bytes ?> bytes</td>
100 <td><?cs var:ndk.linux_checksum ?></td>
101 </tr>
Dirk Dougherty4e4c9192009-05-12 15:32:35 -0700102 </table>
103
104 <?cs else ?>
Dirk Dougherty82ed8f82009-04-20 17:54:49 -0700105<p>Before downloading, please read the <a href="requirements.html">
The Android Open Source Project88b60792009-03-03 19:28:42 -0800106System Requirements</a> document. As you start the download, you will also need to review and agree to
107the Terms and Conditions that govern the use of the Android SDK. </p>
108
109 <table class="download">
110 <tr>
111 <th>Platform</th>
112 <th>Package</th>
113 <th>Size</th>
114 <th>MD5 Checksum</th>
115 </tr>
116 <tr>
117 <td>Windows</td>
118 <td>
119 <a href="<?cs var:toroot ?>sdk/download.html?v=<?cs var:sdk.win_download ?>"><?cs var:sdk.win_download ?></a>
120 </td>
121 <td><?cs var:sdk.win_bytes ?> bytes</td>
122 <td><?cs var:sdk.win_checksum ?></td>
123 </tr>
124 <tr class="alt-color">
125 <td>Mac OS X (intel)</td>
126 <td>
127 <a href="<?cs var:toroot ?>sdk/download.html?v=<?cs var:sdk.mac_download ?>"><?cs var:sdk.mac_download ?></a>
128 </td>
129 <td><?cs var:sdk.mac_bytes ?> bytes</td>
130 <td><?cs var:sdk.mac_checksum ?></td>
131 </tr>
132 <tr>
133 <td>Linux (i386)</td>
134 <td>
135 <a href="<?cs var:toroot ?>sdk/download.html?v=<?cs var:sdk.linux_download ?>"><?cs var:sdk.linux_download ?></a>
136 </td>
137 <td><?cs var:sdk.linux_bytes ?> bytes</td>
138 <td><?cs var:sdk.linux_checksum ?></td>
139 </tr>
140 </table>
141
142<?cs /if ?>
Dirk Dougherty4e4c9192009-05-12 15:32:35 -0700143<?cs /if ?>
The Android Open Source Project88b60792009-03-03 19:28:42 -0800144
145 <?cs call:tag_list(root.descr) ?>
146
147<?cs /if ?>
148</div><!-- end jd-content -->
149
Dirk Dougherty19a4bd12009-04-24 11:30:32 -0700150<?cs if:!sdk.redirect ?>
151 <?cs include:"footer.cs" ?>
152<?cs /if ?>
153
The Android Open Source Project88b60792009-03-03 19:28:42 -0800154</div><!-- end doc-content -->
155
156<?cs include:"trailer.cs" ?>
157
158</body>
159</html>
160
161
162