diff options
author | Dirk Dougherty <nobody@android.com> | 2009-05-12 15:32:35 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-05-12 15:32:35 -0700 |
commit | 4e4c919539c5fb2f790143dde9c318501457ce43 (patch) | |
tree | 6cc20522858f34222b75b23f5e8856c64ea1a905 /tools/droiddoc/templates-sdk | |
parent | 9e35a86b833c8bd520c9f889be3f2859a5ed7b45 (diff) | |
download | build-4e4c919539c5fb2f790143dde9c318501457ce43.zip build-4e4c919539c5fb2f790143dde9c318501457ce43.tar.gz build-4e4c919539c5fb2f790143dde9c318501457ce43.tar.bz2 |
AI 148759: Add download page for NDK 1.5 r1.
BUG=1790234
Automated import of CL 148759
Diffstat (limited to 'tools/droiddoc/templates-sdk')
-rw-r--r-- | tools/droiddoc/templates-sdk/sdkpage.cs | 66 |
1 files changed, 63 insertions, 3 deletions
diff --git a/tools/droiddoc/templates-sdk/sdkpage.cs b/tools/droiddoc/templates-sdk/sdkpage.cs index 4a933e9..8bf30d1 100644 --- a/tools/droiddoc/templates-sdk/sdkpage.cs +++ b/tools/droiddoc/templates-sdk/sdkpage.cs @@ -31,9 +31,13 @@ </div> <div id="jd-content"> - <p><em> - <?cs var:sdk.date ?> - </em></p> + <p><em><?cs + if:ndk ?><?cs + var:ndk.date ?><?cs + else ?><?cs + var:sdk.date ?><?cs + /if ?></em> + </p> <?cs if:sdk.not_latest_version ?> <div class="special"> @@ -48,7 +52,62 @@ <p>The sections below provide an overview of the SDK package. </p> <?cs else ?> + <?cs if:ndk ?> + +<p>The Android NDK is a companion tool to the Android SDK that lets Android +application developers build performance-critical portions of their apps in +native code. It is designed for use <em>only</em> in conjunction with the +Android SDK, so if you have not already installed the Android 1.5 SDK, please do +so before downloading the NDK. Also, please read <a href="">What is the Android +NDK?</a> to get an understanding of what the NDK offers and whether it will be +useful to you.</p> + +<p>Select the download package that is appropriate for your development +computer. Note that separate download packages are provided for 32- and 64-bit +Linux platforms.</p> + + <table class="download"> + <tr> + <th>Platform</th> + <th>Package</th> + <th>Size</th> + <th>MD5 Checksum</th> + </tr> + <tr> + <td>Windows</td> + <td> + <a href="http://dl.google.com/android/<?cs var:ndk.win_download ?>"><?cs var:ndk.win_download ?></a> + </td> + <td><?cs var:ndk.win_bytes ?> bytes</td> + <td><?cs var:ndk.win_checksum ?></td> + </tr> + <tr class="alt-color"> + <td>Mac OS X (intel)</td> + <td> + <a href="http://dl.google.com/android/<?cs var:ndk.mac_download ?>"><?cs var:ndk.mac_download ?></a> + </td> + <td><?cs var:ndk.mac_bytes ?> bytes</td> + <td><?cs var:ndk.mac_checksum ?></td> + </tr> + <tr> + <td>Linux 32-bit (i386)</td> + <td> + <a href="http://dl.google.com/android/<?cs var:ndk.linux_download ?>"><?cs var:ndk.linux_download ?></a> + </td> + <td><?cs var:ndk.linux_bytes ?> bytes</td> + <td><?cs var:ndk.linux_checksum ?></td> + </tr> + <tr class="alt-color"> + <td>Linux 64-bit (x86_64)</td> + <td> + <a href="http://dl.google.com/android/<?cs var:ndk.linux_64_download ?>"><?cs var:ndk.linux_64_download ?></a> + </td> + <td><?cs var:ndk.linux_64_bytes ?> bytes</td> + <td><?cs var:ndk.linux_64_checksum ?></td> + </tr> + </table> + <?cs else ?> <p>Before downloading, please read the <a href="requirements.html"> System Requirements</a> document. As you start the download, you will also need to review and agree to the Terms and Conditions that govern the use of the Android SDK. </p> @@ -87,6 +146,7 @@ the Terms and Conditions that govern the use of the Android SDK. </p> </table> <?cs /if ?> +<?cs /if ?> <?cs call:tag_list(root.descr) ?> |