blob: 013cc94dbcf8673666bb46dc732ac407b7a9aa6e [file] [log] [blame]
Scott Mainaf09b672009-07-31 13:11:07 -07001page.title=Android API Levels
2@jd:body
3
Dirk Doughertya6602f12009-08-27 16:26:43 -07004<div id="qv-wrapper">
5<div id="qv">
Scott Mainaf09b672009-07-31 13:11:07 -07006
Dirk Doughertya6602f12009-08-27 16:26:43 -07007 <h2>In this document</h2>
8<ol>
Dirk Dougherty50bfb392009-12-15 18:42:17 -08009 <li><a href="#intro">What is API Level?</a></li>
Scott Main16a6e862009-09-25 10:38:25 -070010 <li><a href="#uses">Uses of API Level in Android</a></li>
Dirk Doughertya6602f12009-08-27 16:26:43 -070011 <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>
Scott Main16a6e862009-09-25 10:38:25 -070015 <li><a href="#platform">Selecting a platform version and API Level</a></li>
Dirk Doughertya6602f12009-08-27 16:26:43 -070016 <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>
Scott Main16a6e862009-09-25 10:38:25 -070020 <li><a href="#provisional">Using a Provisional API Level</a></li>
Dirk Dougherty6b13bc02009-10-30 19:05:53 -070021 <li><a href="#filtering">Filtering the Documentation</a></li>
Dirk Doughertya6602f12009-08-27 16:26:43 -070022</ol>
Scott Mainaf09b672009-07-31 13:11:07 -070023
Dirk Doughertya6602f12009-08-27 16:26:43 -070024 <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>
Scott Mainaf09b672009-07-31 13:11:07 -070028
Dirk Doughertya6602f12009-08-27 16:26:43 -070029</div>
30</div>
Scott Mainaf09b672009-07-31 13:11:07 -070031
Dirk Doughertya6602f12009-08-27 16:26:43 -070032<p>As you develop your application on Android, it's useful to understand the
33platform's general approach to API change management. It's also important to
34understand the API Level identifier and the role it plays in ensuring your
35application's compatibility with devices on which it may be installed. </p>
Scott Mainaf09b672009-07-31 13:11:07 -070036
Dirk Doughertya6602f12009-08-27 16:26:43 -070037<p>The sections below provide information about API Level and how it affects
38your applications. </p>
Scott Mainaf09b672009-07-31 13:11:07 -070039
Dirk Doughertya6602f12009-08-27 16:26:43 -070040<p>For information about how to use the "Filter by API Level" control
41available in the API reference documentation, see
42<a href="#filtering">Filtering the documentation</a> at the
43end of this document. </p>
Scott Mainaf09b672009-07-31 13:11:07 -070044
Dirk Doughertya6602f12009-08-27 16:26:43 -070045<h2 id="intro">What is API Level?</h2>
Scott Mainaf09b672009-07-31 13:11:07 -070046
Dirk Doughertya6602f12009-08-27 16:26:43 -070047<p>API Level is an integer value that uniquely identifies the framework API
48revision offered by a version of the Android platform.</p>
Scott Mainaf09b672009-07-31 13:11:07 -070049
Dirk Doughertya6602f12009-08-27 16:26:43 -070050<p>The Android platform provides a framework API that applications can use to
51interact 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
59enforcements included in the system</li>
60</ul>
61
62<p>Each successive version of the Android platform can include updates to the
63Android application framework API that it delivers. </p>
64
65<p>Updates to the framework API are designed so that the new API remains
66compatible with earlier versions of the API. That is, most changes in the API
67are additive and introduce new or replacement functionality. As parts of the API
68are upgraded, the older replaced parts are deprecated but are not removed, so
69that existing applications can still use them. In a very small number of cases,
70parts of the API may be modified or removed, although typically such changes are
71only needed to ensure API robustness and application or system security. All
72other API parts from earlier revisions are carried forward without
73modification.</p>
74
75<p>The framework API that an Android platform delivers is specified using an
76integer identifier called "API Level". Each Android platform version supports
77exactly 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
79API 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
82Android platform.</p>
Scott Mainaf09b672009-07-31 13:11:07 -070083
84<table>
85 <tr><th>Platform Version</th><th>API Level</th></tr>
Dirk Dougherty301431d2011-02-19 17:22:29 -080086 <tr><td>Android 3.0</td><td>11</td></tr>
Dirk Doughertyfefa95a2011-02-07 17:32:11 -080087 <tr><td>Android 2.3.3</td><td>10</td></tr>
Dirk Dougherty50f8445e2010-11-11 11:52:05 -080088 <tr><td>Android 2.3</td><td>9</td></tr>
Dirk Dougherty0d1b0812010-04-07 17:05:16 -070089 <tr><td>Android 2.2</td><td>8</td></tr>
Dirk Doughertycf6bbab2010-01-07 10:48:19 -080090 <tr><td>Android 2.1</td><td>7</td></tr>
Dirk Doughertybca9f1b2009-11-18 23:06:16 -080091 <tr><td>Android 2.0.1</td><td>6</td></tr>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -070092 <tr><td>Android 2.0</td><td>5</td></tr>
Dirk Doughertya6602f12009-08-27 16:26:43 -070093 <tr><td>Android 1.6</td><td>4</td></tr>
Scott Mainaf09b672009-07-31 13:11:07 -070094 <tr><td>Android 1.5</td><td>3</td></tr>
Dirk Doughertya6602f12009-08-27 16:26:43 -070095 <tr><td>Android 1.1</td><td>2</td></tr>
96 <tr><td>Android 1.0</td><td>1</td></tr>
Scott Mainaf09b672009-07-31 13:11:07 -070097</table>
98
99
Dirk Doughertya6602f12009-08-27 16:26:43 -0700100<h2 id="uses">Uses of API Level in Android</h2>
Scott Mainaf09b672009-07-31 13:11:07 -0700101
Dirk Doughertya6602f12009-08-27 16:26:43 -0700102<p>The API Level identifier serves a key role in ensuring the best possible
103experience for users and application developers:
Scott Mainaf09b672009-07-31 13:11:07 -0700104
Dirk Doughertya6602f12009-08-27 16:26:43 -0700105<ul>
106<li>It lets the Android platform describe the maximum framework API revision
107that it supports</li>
108<li>It lets applications describe the framework API revision that they
109require</li>
110<li>It lets the system negotiate the installation of applications on the user's
Dirk Dougherty4c8a16a2009-09-10 10:45:41 -0700111device, such that version-incompatible applications are not installed.</li>
Dirk Doughertya6602f12009-08-27 16:26:43 -0700112</ul>
113
114<p>Each Android platform version stores its API Level identifier internally, in
115the Android system itself. </p>
116
117<p>Applications can use a manifest element provided by the framework API &mdash;
118<code>&lt;uses-sdk&gt;</code> &mdash; to describe the minimum and maximum API
119Levels under which they are able to run, as well as the preferred API Level that
Dirk Doughertybca9f1b2009-11-18 23:06:16 -0800120they are designed to support. The element offers three key attributes:</p>
Dirk Doughertya6602f12009-08-27 16:26:43 -0700121
122<ul>
123<li><code>android:minSdkVersion</code> &mdash; Specifies the minimum API Level
124on which the application is able to run. The default value is "1".</li>
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700125<li><code>android:targetSdkVersion</code> &mdash; Specifies the API Level
126on which the application is designed to run. In some cases, this allows the
127application to use manifest elements or behaviors defined in the target
Dirk Doughertyeeb0b252009-10-22 16:08:32 -0700128API Level, rather than being restricted to using only those defined
129for the minimum API Level.</li>
Dirk Doughertya6602f12009-08-27 16:26:43 -0700130<li><code>android:maxSdkVersion</code> &mdash; Specifies the maximum API Level
Dirk Dougherty7500f342009-12-01 16:45:14 -0800131on which the application is able to run. <strong>Important:</strong> Please read the <a
132href="{@docRoot}guide/topics/manifest/uses-sdk-element.html"><code>&lt;uses-sdk&gt;</code></a>
133documentation before using this attribute. </li>
Dirk Doughertya6602f12009-08-27 16:26:43 -0700134</ul>
135
136<p>For example, to specify the minimum system API Level that an application
137requires in order to run, the application would include in its manifest a
138<code>&lt;uses-sdk&gt;</code> element with a <code>android:minSdkVersion</code>
139attribute. The value of <code>android:minSdkVersion</code> would be the integer
140corresponding to the API Level of the earliest version of the Android platform
141under which the application can run. </p>
142
Dirk Dougherty7500f342009-12-01 16:45:14 -0800143<p>When the user attempts to install an application, or when revalidating an
144appplication after a system update, the Android system first checks the
145<code>&lt;uses-sdk&gt;</code> attributes in the application's manifest and
146compares the values against its own internal API Level. The system allows the
147installation to begin only if these conditions are met:</p>
Dirk Doughertya6602f12009-08-27 16:26:43 -0700148
149<ul>
150<li>If a <code>android:minSdkVersion</code> attribute is declared, its value
151must be less than or equal to the system's API Level integer. If not declared,
152the system assumes that the application requires API Level 1. </li>
153<li>If a <code>android:maxSdkVersion</code> attribute is declared, its value
154must be equal to or greater than the system's API Level integer.
Dirk Dougherty4c8a16a2009-09-10 10:45:41 -0700155If not declared, the system assumes that the application
Dirk Dougherty7500f342009-12-01 16:45:14 -0800156has no maximum API Level. Please read the <a
157href="{@docRoot}guide/topics/manifest/uses-sdk-element.html"><code>&lt;uses-sdk&gt;</code></a>
158documentation for more information about how the system handles this attribute.</li>
Dirk Doughertya6602f12009-08-27 16:26:43 -0700159</ul>
160
161<p>When declared in an application's manifest, a <code>&lt;uses-sdk&gt;</code>
162element might look like this: </p>
163
164<pre>&lt;manifest&gt;
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700165 &lt;uses-sdk android:minSdkVersion="5" /&gt;
Dirk Doughertya6602f12009-08-27 16:26:43 -0700166 ...
167&lt;/manifest&gt;</pre>
168
169<p>The principal reason that an application would declare an API Level in
170<code>android:minSdkVersion</code> is to tell the Android system that it is
171using APIs that were <em>introduced</em> in the API Level specified. If the
172application were to be somehow installed on a platform with a lower API Level,
Dirk Dougherty4c8a16a2009-09-10 10:45:41 -0700173then it would crash at run-time when it tried to access APIs that don't exist.
Dirk Doughertya6602f12009-08-27 16:26:43 -0700174The system prevents such an outcome by not allowing the application to be
175installed if the lowest API Level it requires is higher than that of the
176platform version on the target device.</p>
177
178<p>For example, the {@link android.appwidget} package was introduced with API
179Level 3. If an application uses that API, it must declare a
180<code>android:minSdkVersion</code> attribute with a value of "3". The
181application will then be installable on platforms such as Android 1.5 (API Level
1823) and Android 1.6 (API Level 4), but not on the Android 1.1 (API Level 2) and
183Android 1.0 platforms (API Level 1).</p>
184
185<p>For more information about how to specify an application's API Level
186requirements, see the <a
187href="{@docRoot}guide/topics/manifest/uses-sdk-element.html"><code>&lt;uses-sdk&gt;</code></a>
188 section of the manifest file documentation.</p>
Scott Mainaf09b672009-07-31 13:11:07 -0700189
190
Dirk Doughertya6602f12009-08-27 16:26:43 -0700191<h2 id="considerations">Development Considerations</h2>
Scott Mainaf09b672009-07-31 13:11:07 -0700192
Dirk Doughertya6602f12009-08-27 16:26:43 -0700193<p>The sections below provide information related to API level that you should
194consider when developing your application.</p>
195
196<h3 id="fc">Application forward compatibility</h3>
197
198<p>Android applications are generally forward-compatible with new versions of
199the Android platform.</p>
200
201<p>Because almost all changes to the framework API are additive, an Android
202application developed using any given version of the API (as specified by its
203API Level) is forward-compatible with later versions of the Android platform and
204higher API levels. The application should be able to run on all later versions
205of the Android platform, except in isolated cases where the application uses a
206part of the API that is later removed for some reason. </p>
207
208<p>Forward compatibility is important because many Android-powered devices
209receive over-the-air (OTA) system updates. The user may install your
210application and use it successfully, then later receive an OTA update to a new
211version of the Android platform. Once the update is installed, your application
212will run in a new run-time version of the environment, but one that has the API
Dirk Dougherty4c8a16a2009-09-10 10:45:41 -0700213and system capabilities that your application depends on. </p>
Dirk Doughertya6602f12009-08-27 16:26:43 -0700214
215<p>In some cases, changes <em>below</em> the API, such those in the underlying
216system itself, may affect your application when it is run in the new
217environment. For that reason it's important for you, as the application
218developer, to understand how the application will look and behave in each system
219environment. To help you test your application on various versions of the Android
220platform, the Android SDK includes multiple platforms that you can download.
221Each platform includes a compatible system image that you can run in an AVD, to
222test your application. </p>
223
224<h3 id="bc">Application backward compatibility</h3>
225
226<p>Android applications are not necessarily backward compatible with versions of
227the Android platform older than the version against which they were compiled.
228</p>
229
230<p>Each new version of the Android platform can include new framework APIs, such
231as those that give applications access to new platform capabilities or replace
232existing API parts. The new APIs are accessible to applications when running on
233the new platform and, as mentioned above, also when running on later versions of
234the platform, as specified by API Level. Conversely, because earlier versions of
235the platform do not include the new APIs, applications that use the new APIs are
236unable to run on those platforms.</p>
237
238<p>Although it's unlikely that an Android-powered device would be downgraded to
239a previous version of the platform, it's important to realize that there are
240likely to be many devices in the field that run earlier versions of the
Dirk Dougherty4c8a16a2009-09-10 10:45:41 -0700241platform. Even among devices that receive OTA updates, some might lag and
242might not receive an update for a significant amount of time. </p>
Dirk Doughertya6602f12009-08-27 16:26:43 -0700243
244<h3 id="platform">Selecting a platform version and API Level</h3>
245
246<p>When you are developing your application, you will need to choose
247the platform version against which you will compile the application. In
248general, you should compile your application against the lowest possible
249version of the platform that your application can support.
250
251<p>You can determine the lowest possible platform version by compiling the
252application against successively lower build targets. After you determine the
253lowest version, you should create an AVD using the corresponding platform
254version (and API Level) and fully test your application. Make sure to declare a
255<code>android:minSdkVersion</code> attribute in the application's manifest and
256set its value to the API Level of the platform version. </p>
257
258<h3 id="apilevel">Declaring a minimum API Level</h3>
259
260<p>If you build an application that uses APIs or system features introduced in
261the latest platform version, you should set the
262<code>android:minSdkVersion</code> attribute to the API Level of the latest
263platform version. This ensures that users will only be able to install your
264application if their devices are running a compatible version of the Android
265platform. In turn, this ensures that your application can function properly on
266their devices. </p>
267
268<p>If your application uses APIs introduced in the latest platform version but
269does <em>not</em> declare a <code>android:minSdkVersion</code> attribute, then
270it will run properly on devices running the latest version of the platform, but
271<em>not</em> on devices running earlier versions of the platform. In the latter
272case, the application will crash at runtime when it tries to use APIs that don't
273exist on the earlier versions.</p>
274
275<h3 id="testing">Testing against higher API Levels</h3>
276
277<p>After compiling your application, you should make sure to test it on the
278platform specified in the application's <code>android:minSdkVersion</code>
279attribute. To do so, create an AVD that uses the platform version required by
280your application. Additionally, to ensure forward-compatibility, you should run
281and test the application on all platforms that use a higher API Level than that
282used by your application. </p>
283
284<p>The Android SDK includes multiple platform versions that you can use,
285including the latest version, and provides an updater tool that you can use to
286download other platform versions as necessary. </p>
287
288<p>To access the updater, use the <code>android</code> command-line tool,
289located in the &lt;sdk&gt;/tools directory. You can launch the Updater by using
290the <code>android</code> command without specifying any options. You can
291also simply double-click the android.bat (Windows) or android (OS X/Linux) file.
292In ADT, you can also access the updater by selecting
293<strong>Window</strong>&nbsp;>&nbsp;<strong>Android SDK and AVD
294Manager</strong>.</p>
295
296<p>To run your application against different platform versions in the emulator,
297create an AVD for each platform version that you want to test. For more
298information about AVDs, see <a
Robert Ly293b8502011-01-05 00:34:26 -0800299href="{@docRoot}guide/developing/devices/index.html">Creating and Managing Virtual Devices</a>. If
Dirk Doughertya6602f12009-08-27 16:26:43 -0700300you are using a physical device for testing, ensure that you know the API Level
301of the Android platform it runs. See the table at the top of this document for
302a list of platform versions and their API Levels. </p>
303
Scott Main16a6e862009-09-25 10:38:25 -0700304<h2 id="provisional">Using a Provisional API Level</h2>
305
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700306<p>In some cases, an "Early Look" Android SDK platform may be available. To let
307you begin developing on the platform although the APIs may not be final, the
308platform's API Level integer will not be specified. You must instead use the
309platform's <em>provisional API Level</em> in your application manifest, in order
310to build applications against the platform. A provisional API Level is not an
311integer, but a string matching the codename of the unreleased platform version.
312The provisional API Level will be specified in the release notes for the Early
313Look SDK release notes and is case-sensitive.</p>
Scott Main16a6e862009-09-25 10:38:25 -0700314
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700315<p>The use of a provisional API Level is designed to protect developers and
316device users from inadvertently publishing or installing applications based on
317the Early Look framework API, which may not run properly on actual devices
318running the final system image.</p>
Scott Main16a6e862009-09-25 10:38:25 -0700319
Dirk Doughertyee58d1b2009-10-16 15:25:15 -0700320<p>The provisional API Level will only be valid while using the Early Look SDK
321and can only be used to run applications in the emulator. An application using
322the provisional API Level can never be installed on an Android device. At the
323final release of the platform, you must replace any instances of the provisional
324API Level in your application manifest with the final platform's actual API
325Level integer.</p>
Scott Main16a6e862009-09-25 10:38:25 -0700326
327
Dirk Doughertya6602f12009-08-27 16:26:43 -0700328<h2 id="filtering">Filtering the Reference Documentation by API Level</h2>
329
330<p>Reference documentation pages on the Android Developers site offer a "Filter
Dirk Dougherty4c8a16a2009-09-10 10:45:41 -0700331by API Level" control in the top-right area of each page. You can use the
332control to show documentation only for parts of the API that are actually
333accessible to your application, based on the API Level that it specifies in
334the <code>android:minSdkVersion</code> attribute of its manifest file. </p>
Dirk Doughertya6602f12009-08-27 16:26:43 -0700335
Dirk Dougherty00dc5752009-10-27 18:02:29 -0700336<p>To use filtering, select the checkbox to enable filtering, just below the
337page search box. Then set the "Filter by API Level" control to the same API
338Level as specified by your application. Notice that APIs introduced in a later
339API Level are then grayed out and their content is masked, since they would not
340be accessible to your application. </p>
Dirk Doughertya6602f12009-08-27 16:26:43 -0700341
Dirk Dougherty4c8a16a2009-09-10 10:45:41 -0700342<p>Filtering by API Level in the documentation does not provide a view
343of what is new or introduced in each API Level &mdash; it simply provides a way
Dirk Doughertya6602f12009-08-27 16:26:43 -0700344to view the entire API associated with a given API Level, while excluding API
345elements introduced in later API Levels.</p>
346
Dirk Dougherty00dc5752009-10-27 18:02:29 -0700347<p>If you decide that you don't want to filter the API documentation, just
348disable the feature using the checkbox. By default, API Level filtering is
349disabled, so that you can view the full framework API, regardless of API Level.
350</p>
Dirk Doughertya6602f12009-08-27 16:26:43 -0700351
Dirk Dougherty4c8a16a2009-09-10 10:45:41 -0700352<p>Also note that the reference documentation for individual API elements
Dirk Dougherty00dc5752009-10-27 18:02:29 -0700353specifies the API Level at which each element was introduced. The API Level
Dirk Dougherty4c8a16a2009-09-10 10:45:41 -0700354for packages and classes is specified as "Since &lt;api level&gt;" at the
355top-right corner of the content area on each documentation page. The API Level
356for class members is specified in their detailed description headers,
357at the right margin. </p>