Home | History | Annotate | Download | only in appendix
      1 page.title=Android API Levels
      2 @jd:body
      3 
      4 <div id="qv-wrapper">
      5 <div id="qv">
      6 
      7   <h2>In this document</h2>
      8 <ol>
      9   <li><a href="#intro">What is API Level?</a></li>
     10   <li><a href="#uses">Uses of API Level in Android</a></li>
     11   <li><a href="#considerations">Development Considerations</a>
     12     <ol>
     13       <li><a href="#fc">Application forward compatibility</a></li>
     14       <li><a href="#bc">Application backward compatibility</a></li>
     15       <li><a href="#platform">Selecting a platform version and API Level</a></li>
     16       <li><a href="#apilevel">Declaring a minimum API Level</a></li>
     17       <li><a href="#testing">Testing against higher API Levels</a></li>
     18     </ol>
     19   </li>
     20   <li><a href="#provisional">Using a Provisional API Level</a></li>
     21   <li><a href="#filtering">Filtering the Documentation</a></li>
     22 </ol>
     23 
     24   <h2>See also</h2>
     25   <ol>
     26     <li><a href="{@docRoot}guide/topics/manifest/uses-sdk-element.html">&lt;uses-sdk&gt;</a> manifest element</li>
     27   </ol>
     28 
     29 </div>
     30 </div>
     31 
     32 <p>As you develop your application on Android, it's useful to understand the
     33 platform's general approach to API change management. It's also important to
     34 understand the API Level identifier and the role it plays in ensuring your 
     35 application's compatibility with devices on which it may be installed. </p>
     36 
     37 <p>The sections below provide information about API Level and how it affects
     38 your applications. </p>
     39 
     40 <p>For information about how to use the "Filter by API Level" control
     41 available in the API reference documentation, see 
     42 <a href="#filtering">Filtering the documentation</a> at the 
     43 end of this document. </p>
     44 
     45 <h2 id="intro">What is API Level?</h2>
     46 
     47 <p>API Level is an integer value that uniquely identifies the framework API
     48 revision offered by a version of the Android platform.</p>
     49 
     50 <p>The Android platform provides a framework API that applications can use to
     51 interact with the underlying Android system. The framework API consists of:</p>
     52 
     53 <ul>
     54 <li>A core set of packages and classes</li>
     55 <li>A set of XML elements and attributes for declaring a manifest file</li>
     56 <li>A set of XML elements and attributes for declaring and accessing resources</li>
     57 <li>A set of Intents</li>
     58 <li>A set of permissions that applications can request, as well as permission
     59 enforcements included in the system</li>
     60 </ul>
     61 
     62 <p>Each successive version of the Android platform can include updates to the
     63 Android application framework API that it delivers. </p>
     64 
     65 <p>Updates to the framework API are designed so that the new API remains
     66 compatible with earlier versions of the API. That is, most changes in the API
     67 are additive and introduce new or replacement functionality. As parts of the API
     68 are upgraded, the older replaced parts are deprecated but are not removed, so
     69 that existing applications can still use them. In a very small number of cases,
     70 parts of the API may be modified or removed, although typically such changes are
     71 only needed to ensure API robustness and application or system security. All
     72 other API parts from earlier revisions are carried forward without
     73 modification.</p>
     74 
     75 <p>The framework API that an Android platform delivers is specified using an
     76 integer identifier called "API Level". Each Android platform version supports
     77 exactly one API Level, although support is implicit for all earlier API Levels
     78 (down to API Level 1). The initial release of the Android platform provided 
     79 API Level 1 and subsequent releases have incremented the API Level.</p>
     80 
     81 <p>The following table specifies the API Level supported by each version of the
     82 Android platform.</p>
     83 
     84 <table>
     85   <tr><th>Platform Version</th><th>API Level</th><th>VERSION_CODE</th><th>Notes</th></tr>
     86   
     87     <tr><td><a href="{@docRoot}sdk/android-4.0.html">Android 4.0</a></td>
     88     <td><a href="{@docRoot}sdk/api_diff/14/changes.html" title="Diff Report">14</a></td>
     89     <td>{@link android.os.Build.VERSION_CODES#ICE_CREAM_SANDWICH}</td>
     90     <td><a href="{@docRoot}sdk/android-4.0-highlights.html">Platform
     91 Highlights</a></td></tr>
     92   
     93     <tr><td><a href="{@docRoot}sdk/android-3.2.html">Android 3.2</a></td>
     94     <td><a href="{@docRoot}sdk/api_diff/13/changes.html" title="Diff Report">13</a></td>
     95     <td>{@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}</td>
     96     <td><!-- <a href="{@docRoot}sdk/android-3.2-highlights.html">Platform Highlights</a>--></td></tr>
     97   
     98   <tr><td><a href="{@docRoot}sdk/android-3.1.html">Android 3.1.x</a></td>
     99     <td><a href="{@docRoot}sdk/api_diff/12/changes.html" title="Diff Report">12</a></td>
    100     <td>{@link android.os.Build.VERSION_CODES#HONEYCOMB_MR1}</td>
    101     <td><a href="{@docRoot}sdk/android-3.1-highlights.html">Platform Highlights</a></td></tr>
    102     
    103   <tr><td><a href="{@docRoot}sdk/android-3.0.html">Android 3.0.x</td>
    104     <td><a href="{@docRoot}sdk/api_diff/11/changes.html" title="Diff Report">11</a></td>
    105     <td>{@link android.os.Build.VERSION_CODES#HONEYCOMB}</td>
    106     <td><a href="{@docRoot}sdk/android-3.0-highlights.html">Platform Highlights</a></td></tr>
    107     
    108   <tr><td><a href="{@docRoot}sdk/android-2.3.3.html">Android 2.3.4<br>Android 2.3.3</td>
    109     <td><a href="{@docRoot}sdk/api_diff/10/changes.html" title="Diff Report">10</a></td>
    110     <td>{@link android.os.Build.VERSION_CODES#GINGERBREAD_MR1}</td>
    111     <td rowspan="2"><a href="{@docRoot}sdk/android-2.3-highlights.html">Platform Highlights</a></td></tr>
    112   
    113   <tr><td><a href="{@docRoot}sdk/android-2.3.html">Android 2.3.2<br>Android 2.3.1<br>Android 2.3</td>
    114     <td><a href="{@docRoot}sdk/api_diff/9/changes.html" title="Diff Report">9</a></td>
    115     <td>{@link android.os.Build.VERSION_CODES#GINGERBREAD}</td>
    116     </tr>
    117   
    118   <tr><td><a href="{@docRoot}sdk/android-2.2.html">Android 2.2.x</td>
    119     <td ><a href="{@docRoot}sdk/api_diff/8/changes.html" title="Diff Report">8</a></td>
    120     <td>{@link android.os.Build.VERSION_CODES#FROYO}</td>
    121     <td><a href="{@docRoot}sdk/android-2.2-highlights.html">Platform Highlights</a></td></tr>
    122   
    123   <tr><td><a href="{@docRoot}sdk/android-2.1.html">Android 2.1.x</td>
    124     <td><a href="{@docRoot}sdk/api_diff/7/changes.html" title="Diff Report">7</a></td>
    125     <td>{@link android.os.Build.VERSION_CODES#ECLAIR_MR1}</td>
    126     <td rowspan="3" ><a href="{@docRoot}sdk/android-2.0-highlights.html">Platform Highlights</a></td></tr>
    127     
    128   <tr><td><a href="{@docRoot}sdk/android-2.0.1.html">Android 2.0.1</td>
    129     <td><a href="{@docRoot}sdk/api_diff/6/changes.html" title="Diff Report">6</a></td>
    130     <td>{@link android.os.Build.VERSION_CODES#ECLAIR_0_1}</td>
    131     </tr>
    132     
    133   <tr><td><a href="{@docRoot}sdk/android-2.0.html">Android 2.0</td>
    134     <td><a href="{@docRoot}sdk/api_diff/5/changes.html" title="Diff Report">5</a></td>
    135     <td>{@link android.os.Build.VERSION_CODES#ECLAIR}</td>
    136     </tr>
    137     
    138   <tr><td><a href="{@docRoot}sdk/android-1.6.html">Android 1.6</td>
    139     <td><a href="{@docRoot}sdk/api_diff/4/changes.html" title="Diff Report">4</a></td>
    140     <td>{@link android.os.Build.VERSION_CODES#DONUT}</td>
    141     <td><a href="{@docRoot}sdk/android-1.6-highlights.html">Platform Highlights</a></td></tr>
    142     
    143   <tr><td><a href="{@docRoot}sdk/android-1.5.html">Android 1.5</td>
    144     <td><a href="{@docRoot}sdk/api_diff/3/changes.html" title="Diff Report">3</a></td>
    145     <td>{@link android.os.Build.VERSION_CODES#CUPCAKE}</td>
    146     <td><a href="{@docRoot}sdk/android-1.5-highlights.html">Platform Highlights</a></td></tr>
    147     
    148   <tr><td><a href="{@docRoot}sdk/android-1.1.html">Android 1.1</td>
    149     <td>2</td>
    150     <td>{@link android.os.Build.VERSION_CODES#BASE_1_1}</td><td></td></tr>
    151     
    152   <tr><td><a href="{@docRoot}sdk/android-1.0.html">Android 1.0</td>
    153     <td>1</td>
    154     <td>{@link android.os.Build.VERSION_CODES#BASE}</td>
    155     <td></td></tr>
    156 </table>
    157 
    158 
    159 <h2 id="uses">Uses of API Level in Android</h2>
    160 
    161 <p>The API Level identifier serves a key role in ensuring the best possible
    162 experience for users and application developers: 
    163 
    164 <ul>
    165 <li>It lets the Android platform describe the maximum framework API revision 
    166 that it supports</li>
    167 <li>It lets applications describe the framework API revision that they
    168 require</li>
    169 <li>It lets the system negotiate the installation of applications on the user's
    170 device, such that version-incompatible applications are not installed.</li>
    171 </ul>
    172 
    173 <p>Each Android platform version stores its API Level identifier internally, in
    174 the Android system itself. </p>
    175 
    176 <p>Applications can use a manifest element provided by the framework API &mdash;
    177 <code>&lt;uses-sdk&gt;</code> &mdash; to describe the minimum and maximum API
    178 Levels under which they are able to run, as well as the preferred API Level that
    179 they are designed to support. The element offers three key attributes:</p>
    180 
    181 <ul>
    182 <li><code>android:minSdkVersion</code> &mdash; Specifies the minimum API Level
    183 on which the application is able to run. The default value is "1".</li>
    184 <li><code>android:targetSdkVersion</code> &mdash; Specifies the API Level
    185 on which the application is designed to run. In some cases, this allows the
    186 application to use manifest elements or behaviors defined in the target
    187 API Level, rather than being restricted to using only those defined 
    188 for the minimum API Level.</li>
    189 <li><code>android:maxSdkVersion</code> &mdash; Specifies the maximum API Level
    190 on which the application is able to run. <strong>Important:</strong> Please read the <a
    191 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html"><code>&lt;uses-sdk&gt;</code></a>
    192 documentation before using this attribute.  </li>
    193 </ul>
    194 
    195 <p>For example, to specify the minimum system API Level that an application
    196 requires in order to run, the application would include in its manifest a
    197 <code>&lt;uses-sdk&gt;</code> element with a <code>android:minSdkVersion</code>
    198 attribute. The value of <code>android:minSdkVersion</code> would be the integer
    199 corresponding to the API Level of the earliest version of the Android platform
    200 under which the application can run. </p>
    201 
    202 <p>When the user attempts to install an application, or when revalidating an
    203 appplication after a system update, the Android system first checks the
    204 <code>&lt;uses-sdk&gt;</code> attributes in the application's manifest and
    205 compares the values against its own internal API Level. The system allows the
    206 installation to begin only if these conditions are met:</p>
    207 
    208 <ul>
    209 <li>If a <code>android:minSdkVersion</code> attribute is declared, its value
    210 must be less than or equal to the system's API Level integer. If not declared,
    211 the system assumes that the application requires API Level 1. </li>
    212 <li>If a <code>android:maxSdkVersion</code> attribute is declared, its value
    213 must be equal to or greater than the system's API Level integer. 
    214 If not declared, the system assumes that the application
    215 has no maximum API Level. Please read the <a
    216 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html"><code>&lt;uses-sdk&gt;</code></a>
    217 documentation for more information about how the system handles this attribute.</li>
    218 </ul>
    219 
    220 <p>When declared in an application's manifest, a <code>&lt;uses-sdk&gt;</code>
    221 element might look like this: </p>
    222 
    223 <pre>&lt;manifest&gt;
    224   &lt;uses-sdk android:minSdkVersion="5" /&gt;
    225   ...
    226 &lt;/manifest&gt;</pre>
    227 
    228 <p>The principal reason that an application would declare an API Level in
    229 <code>android:minSdkVersion</code> is to tell the Android system that it is
    230 using APIs that were <em>introduced</em> in the API Level specified. If the
    231 application were to be somehow installed on a platform with a lower API Level,
    232 then it would crash at run-time when it tried to access APIs that don't exist.
    233 The system prevents such an outcome by not allowing the application to be
    234 installed if the lowest API Level it requires is higher than that of the
    235 platform version on the target device.</p>
    236 
    237 <p>For example, the {@link android.appwidget} package was introduced with API
    238 Level 3. If an application uses that API, it must declare a
    239 <code>android:minSdkVersion</code> attribute with a value of "3". The
    240 application will then be installable on platforms such as Android 1.5 (API Level
    241 3) and Android 1.6 (API Level 4), but not on the Android 1.1 (API Level 2) and
    242 Android 1.0 platforms (API Level 1).</p>
    243 
    244 <p>For more information about how to specify an application's API Level
    245 requirements, see the <a
    246 href="{@docRoot}guide/topics/manifest/uses-sdk-element.html"><code>&lt;uses-sdk&gt;</code></a>
    247  section of the manifest file documentation.</p>
    248 
    249 
    250 <h2 id="considerations">Development Considerations</h2>
    251 
    252 <p>The sections below provide information related to API level that you should
    253 consider when developing your application.</p>
    254 
    255 <h3 id="fc">Application forward compatibility</h3>
    256 
    257 <p>Android applications are generally forward-compatible with new versions of
    258 the Android platform.</p>
    259 
    260 <p>Because almost all changes to the framework API are additive, an Android
    261 application developed using any given version of the API (as specified by its
    262 API Level) is forward-compatible with later versions of the Android platform and
    263 higher API levels. The application should be able to run on all later versions
    264 of the Android platform, except in isolated cases where the application uses a
    265 part of the API that is later removed for some reason. </p>
    266 
    267 <p>Forward compatibility is important because many Android-powered devices
    268 receive over-the-air (OTA) system updates. The user may install your
    269 application and use it successfully, then later receive an OTA update to a new
    270 version of the Android platform. Once the update is installed, your application
    271 will run in a new run-time version of the environment, but one that has the API
    272 and system capabilities that your application depends on. </p>
    273 
    274 <p>In some cases, changes <em>below</em> the API, such those in the underlying
    275 system itself, may affect your application when it is run in the new
    276 environment. For that reason it's important for you, as the application
    277 developer, to understand how the application will look and behave in each system
    278 environment. To help you test your application on various versions of the Android
    279 platform, the Android SDK includes multiple platforms that you can download.
    280 Each platform includes a compatible system image that you can run in an AVD, to
    281 test your application. </p>
    282 
    283 <h3 id="bc">Application backward compatibility</h3>
    284 
    285 <p>Android applications are not necessarily backward compatible with versions of
    286 the Android platform older than the version against which they were compiled.
    287 </p>
    288 
    289 <p>Each new version of the Android platform can include new framework APIs, such
    290 as those that give applications access to new platform capabilities or replace
    291 existing API parts. The new APIs are accessible to applications when running on
    292 the new platform and, as mentioned above, also when running on later versions of
    293 the platform, as specified by API Level. Conversely, because earlier versions of
    294 the platform do not include the new APIs, applications that use the new APIs are
    295 unable to run on those platforms.</p>
    296 
    297 <p>Although it's unlikely that an Android-powered device would be downgraded to
    298 a previous version of the platform, it's important to realize that there are
    299 likely to be many devices in the field that run earlier versions of the
    300 platform. Even among devices that receive OTA updates, some might lag and
    301 might not receive an update for a significant amount of time. </p>
    302 
    303 <h3 id="platform">Selecting a platform version and API Level</h3>
    304 
    305 <p>When you are developing your application, you will need to choose
    306 the platform version against which you will compile the application. In
    307 general, you should compile your application against the lowest possible
    308 version of the platform that your application can support. 
    309 
    310 <p>You can determine the lowest possible platform version by compiling the
    311 application against successively lower build targets. After you determine the
    312 lowest version, you should create an AVD using the corresponding platform
    313 version (and API Level) and fully test your application. Make sure to declare a
    314 <code>android:minSdkVersion</code> attribute in the application's manifest and
    315 set its value to the API Level of the platform version. </p>
    316 
    317 <h3 id="apilevel">Declaring a minimum API Level</h3>
    318 
    319 <p>If you build an application that uses APIs or system features introduced in
    320 the latest platform version, you should set the
    321 <code>android:minSdkVersion</code> attribute to the API Level of the latest
    322 platform version. This ensures that users will only be able to install your
    323 application if their devices are running a compatible version of the Android
    324 platform. In turn, this ensures that your application can function properly on
    325 their devices. </p>
    326 
    327 <p>If your application uses APIs introduced in the latest platform version but
    328 does <em>not</em> declare a <code>android:minSdkVersion</code> attribute, then
    329 it will run properly on devices running the latest version of the platform, but
    330 <em>not</em> on devices running earlier versions of the platform. In the latter
    331 case, the application will crash at runtime when it tries to use APIs that don't
    332 exist on the earlier versions.</p>
    333 
    334 <h3 id="testing">Testing against higher API Levels</h3>
    335 
    336 <p>After compiling your application, you should make sure to test it on the
    337 platform specified in the application's <code>android:minSdkVersion</code>
    338 attribute. To do so, create an AVD that uses the platform version required by
    339 your application. Additionally, to ensure forward-compatibility, you should run
    340 and test the application on all platforms that use a higher API Level than that
    341 used by your application. </p>
    342 
    343 <p>The Android SDK includes multiple platform versions that you can use,
    344 including the latest version, and provides an updater tool that you can use to
    345 download other platform versions as necessary. </p>
    346 
    347 <p>To access the updater, use the <code>android</code> command-line tool,
    348 located in the &lt;sdk&gt;/tools directory. You can launch the Updater by using
    349 the <code>android</code> command without specifying any options. You can
    350 also simply double-click the android.bat (Windows) or android (OS X/Linux) file.
    351 In ADT, you can also access the updater by selecting 
    352 <strong>Window</strong>&nbsp;>&nbsp;<strong>Android SDK and AVD
    353 Manager</strong>.</p>
    354 
    355 <p>To run your application against different platform versions in the emulator,
    356 create an AVD for each platform version that you want to test. For more
    357 information about AVDs, see <a
    358 href="{@docRoot}guide/developing/devices/index.html">Creating and Managing Virtual Devices</a>. If
    359 you are using a physical device for testing, ensure that you know the API Level
    360 of the Android platform it runs. See the table at the top of this document for
    361 a list of platform versions and their API Levels. </p>
    362 
    363 <h2 id="provisional">Using a Provisional API Level</h2>
    364 
    365 <p>In some cases, an "Early Look" Android SDK platform may be available. To let
    366 you begin developing on the platform although the APIs may not be final, the
    367 platform's API Level integer will not be specified. You must instead use the
    368 platform's <em>provisional API Level</em> in your application manifest, in order
    369 to build applications against the platform. A provisional API Level is not an
    370 integer, but a string matching the codename of the unreleased platform version.
    371 The provisional API Level will be specified in the release notes for the Early
    372 Look SDK release notes and is case-sensitive.</p>
    373 
    374 <p>The use of a provisional API Level is designed to protect developers and
    375 device users from inadvertently publishing or installing applications based on
    376 the Early Look framework API, which may not run properly on actual devices
    377 running the final system image.</p>
    378 
    379 <p>The provisional API Level will only be valid while using the Early Look SDK
    380 and can only be used to run applications in the emulator. An application using
    381 the provisional API Level can never be installed on an Android device. At the
    382 final release of the platform, you must replace any instances of the provisional
    383 API Level in your application manifest with the final platform's actual API
    384 Level integer.</p>
    385 
    386 
    387 <h2 id="filtering">Filtering the Reference Documentation by API Level</h2>
    388 
    389 <p>Reference documentation pages on the Android Developers site offer a "Filter
    390 by API Level" control in the top-right area of each page. You can use the 
    391 control to show documentation only for parts of the API that are actually 
    392 accessible to your application, based on the API Level that it specifies in 
    393 the <code>android:minSdkVersion</code> attribute of its manifest file. </p>
    394 
    395 <p>To use filtering, select the checkbox to enable filtering, just below the
    396 page search box. Then set the "Filter by API Level" control to the same API
    397 Level as specified by your application. Notice that APIs introduced in a later
    398 API Level are then grayed out and their content is masked, since they would not
    399 be accessible to your application. </p>
    400 
    401 <p>Filtering by API Level in the documentation does not provide a view
    402 of what is new or introduced in each API Level &mdash; it simply provides a way
    403 to view the entire API associated with a given API Level, while excluding API
    404 elements introduced in later API Levels.</p>
    405 
    406 <p>If you decide that you don't want to filter the API documentation, just
    407 disable the feature using the checkbox. By default, API Level filtering is
    408 disabled, so that you can view the full framework API, regardless of API Level.
    409 </p>
    410 
    411 <p>Also note that the reference documentation for individual API elements
    412 specifies the API Level at which each element was introduced. The API Level 
    413 for packages and classes is specified as "Since &lt;api level&gt;" at the 
    414 top-right corner of the content area on each documentation page. The API Level 
    415 for class members is specified in their detailed description headers, 
    416 at the right margin. </p>
    417