summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorScott Main <smain@google.com>2009-09-01 18:48:34 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2009-09-01 18:48:34 -0700
commit4e0951c9f31c5b5a6026552ede3f47aa038b525e (patch)
treef0411b809e4060de5ebf4811e2e74c9eab9deefb /docs
parent04f6da353d4e79f49ba1d4897ed617e91acc3f77 (diff)
parent4e60d012c95f50ddd2a1ba6202e4fec3c9cfd3df (diff)
downloadframeworks_base-4e0951c9f31c5b5a6026552ede3f47aa038b525e.zip
frameworks_base-4e0951c9f31c5b5a6026552ede3f47aa038b525e.tar.gz
frameworks_base-4e0951c9f31c5b5a6026552ede3f47aa038b525e.tar.bz2
am 4e60d012: docs only. add syntax samples for all attributes and revise targetSdkVersion information.
Merge commit '4e60d012c95f50ddd2a1ba6202e4fec3c9cfd3df' into eclair * commit '4e60d012c95f50ddd2a1ba6202e4fec3c9cfd3df': docs only.
Diffstat (limited to 'docs')
-rw-r--r--docs/html/guide/topics/manifest/uses-sdk-element.jd17
1 files changed, 12 insertions, 5 deletions
diff --git a/docs/html/guide/topics/manifest/uses-sdk-element.jd b/docs/html/guide/topics/manifest/uses-sdk-element.jd
index adcdc28..ee8d03d 100644
--- a/docs/html/guide/topics/manifest/uses-sdk-element.jd
+++ b/docs/html/guide/topics/manifest/uses-sdk-element.jd
@@ -3,7 +3,10 @@ page.title=&lt;uses-sdk&gt;
<dl class="xml">
<dt>syntax:</dt>
-<dd><pre class="stx">&lt;uses-sdk android:<a href="#min">minSdkVersion</a>="<i>integer</i>" /&gt;</pre></dd>
+<dd><pre>
+&lt;uses-sdk android:<a href="#min">minSdkVersion</a>="<i>integer</i>"
+ android:<a href="#max">maxSdkVersion</a>="<i>integer</i>"
+ android:<a href="#target">targetSdkVersion</a>="<i>integer</i>" /&gt;</pre></dd>
<dt>contained in:</dt>
<dd><code><a href="{@docRoot}guide/topics/manifest/manifest-element.html">&lt;manifest&gt;</a></code></dd>
@@ -64,12 +67,16 @@ and minor versions).</p>
<dt><a name="target"></a>{@code android:targetSdkVersion}</dt>
<dd>An integer designating the API Level that the application is targetting.
- <p>With this attribute set, the application says that is is be able to run on
+ <p>With this attribute set, the application says that it is able to run on
older versions (down to {@code minSdkVersion}), but was explicitly tested to work
with the version specified here.
- Specifying this version allows the platform to disable compatibility
- code that is not required or enable newer features that are not
- available to older applications.</p>
+ Specifying this target version allows the platform to disable compatibility
+ settings that are not required for the target version (which may otherwise be turned on
+ in order to maintain forward-compatibility) or enable newer features that are not
+ available to older applications. This does not mean that you can program different
+ features for different versions of the platform&mdash;it simply informs the platform that you
+ have tested against the target version and the platform should not perform any extra
+ work to maintain forward-compatibility with the target version.</p>
<p>Introduced in: API Level 4</p>
</dd>