diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2008-12-17 18:03:49 -0800 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2008-12-17 18:03:49 -0800 |
commit | dcc08f073b6873c69ab891d4f69f7c568e282df7 (patch) | |
tree | cbaa218be3f46078555b6bfb36c48659096a747a /tools/droiddoc/templates-sdk/sdkpage.cs | |
parent | d3aa4000e42fd1036e0e3286843c5132f905d754 (diff) | |
download | build-dcc08f073b6873c69ab891d4f69f7c568e282df7.zip build-dcc08f073b6873c69ab891d4f69f7c568e282df7.tar.gz build-dcc08f073b6873c69ab891d4f69f7c568e282df7.tar.bz2 |
Code drop from //branches/cupcake/...@124589
Diffstat (limited to 'tools/droiddoc/templates-sdk/sdkpage.cs')
-rw-r--r-- | tools/droiddoc/templates-sdk/sdkpage.cs | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/tools/droiddoc/templates-sdk/sdkpage.cs b/tools/droiddoc/templates-sdk/sdkpage.cs new file mode 100644 index 0000000..e274237 --- /dev/null +++ b/tools/droiddoc/templates-sdk/sdkpage.cs @@ -0,0 +1,90 @@ +<?cs include:"macros.cs" ?> +<html> +<?cs include:"head_tag.cs" ?> +<body class="gc-documentation"> +<a name="top"></a> +<?cs call:custom_masthead() ?> + +<?cs call:sdk_nav() ?> + + +<div class="g-unit" id="doc-content" > + +<div id="jd-content" style="min-width:870px"> + +<h1><?cs var:sdk.version ?></h1> +<p><em> +<?cs var:sdk.date ?> - +<a href="RELEASENOTES.html">Release Notes</a> +</em></p> + +<div id="qv-wrapper"> +<div id="qv"> +<h2>Get Started</h2> +<p><a href="requirements.html">System and Sofware Requirements</a></p> +<p><a href="installing.html">Guide to Installing the SDK</a></p> + +<h2>Upgrade</h2> +<p><a href="upgrading.html">Upgrading the SDK</a></p> +<p><a href="migrating/changes-overview.html">API changes overview</a></p> +<p><a href="migrating/changes.html">API differences report</a></p> + +<h2>Using Eclipse?</h2> +<p>Android provides an Eclipse plugin to help make programming and debugging easier.</p> +<p><a href="<?cs var:toroot ?>guide/developing/tools/adt.html">Install Eclipse plugin</a></p> +</div> +</div> + + +<p>Before downloading, please read the <a href="terms.html">Terms</a> + that govorn the use of the Android SDK.</p> + +<p class="special-note"><strong>Please note:</strong> The Android SDK is under active development. + Please keep this in mind as you explore its capabilities. If you discover any issues, we + welcome you to notify us of them via our Issue Tracker.</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:sdk.win_download ?>"><?cs var:sdk.win_download ?></a> + </td> + <td><?cs var:sdk.win_bytes ?></td> + <td><?cs var:sdk.win_checksum ?></td> +</tr> +<tr class="alt-color"> + <td>Mac OS X (intel)</td> + <td> +<a href="http://dl.google.com/android/<?cs var:sdk.mac_download ?>"><?cs var:sdk.mac_download ?></a> + </td> + <td><?cs var:sdk.mac_bytes ?></td> + <td><?cs var:sdk.mac_checksum ?></td> +</tr> +<tr> + <td>Linux (i386)</td> + <td> +<a href="http://dl.google.com/android/<?cs var:sdk.linux_download ?>"><?cs var:sdk.linux_download ?></a> + </td> + <td><?cs var:sdk.linux_bytes ?></td> + <td><?cs var:sdk.linux_checksum ?></td> +</tr> +</table> + + +</div><!-- end jd-content --> + +<?cs include:"footer.cs" ?> +</div><!-- end doc-content --> +</div><!-- end body-content --> +<?cs include:"analytics.cs" ?> +</body> +</html> + + + |