From 4e60d012c95f50ddd2a1ba6202e4fec3c9cfd3df Mon Sep 17 00:00:00 2001
From: Scott Main
<uses-sdk android:minSdkVersion="integer" />
+<uses-sdk android:minSdkVersion="integer"
+ android:maxSdkVersion="integer"
+ android:targetSdkVersion="integer" />
<manifest>
With this attribute set, the application says that is is be able to run on +
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.
+ 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—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.Introduced in: API Level 4