blob: cf33d518c1ff0afdc242423bdb40e16eaf738f03 [file] [log] [blame]
Robert Ly35f2fda2013-01-29 16:27:05 -08001page.title=Codenames, Tags, and Build Numbers
2@jd:body
3
4<!--
5 Copyright 2010 The Android Open Source Project
6
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18-->
19<div id="qv-wrapper">
20 <div id="qv">
21 <h2>In this document</h2>
22 <ol id="auto-toc">
23 </ol>
24 </div>
25</div>
26
27<p>At a high level, Android development happens around families of
28releases, which use code names ordered alphabetically after tasty
29treats.</p>
30
31<h2 id="platform-code-names-versions-api-levels-and-ndk-releases">Platform Codenames, Versions, API Levels, and NDK Releases</h2>
32<p>The code names match the following version numbers, along with
33API levels and NDK releases provided for convenience:</p>
34<table>
35<thead>
36<tr>
37<th>Code name</th>
38<th>Version</th>
39<th>API level</th>
40</tr>
41</thead>
42<tbody>
43<tr>
44<td>(no code name)</td>
45<td>1.0</td>
46<td>API level 1</td>
47</tr>
48<tr>
49<td>(no code name)</td>
50<td>1.1</td>
51<td>API level 2</td>
52</tr>
53<tr>
54<td>Cupcake</td>
55<td>1.5</td>
56<td>API level 3, NDK 1</td>
57</tr>
58<tr>
59<td>Donut</td>
60<td>1.6</td>
61<td>API level 4, NDK 2</td>
62</tr>
63<tr>
64<td>Eclair</td>
65<td>2.0</td>
66<td>API level 5</td>
67</tr>
68<tr>
69<td>Eclair</td>
70<td>2.0.1</td>
71<td>API level 6</td>
72</tr>
73<tr>
74<td>Eclair</td>
75<td>2.1</td>
76<td>API level 7, NDK 3</td>
77</tr>
78<tr>
79<td>Froyo</td>
80<td>2.2.x</td>
81<td>API level 8, NDK 4</td>
82</tr>
83<tr>
84<td>Gingerbread</td>
85<td>2.3 - 2.3.2</td>
86<td>API level 9, NDK 5</td>
87</tr>
88<tr>
89<td>Gingerbread</td>
90<td>2.3.3 - 2.3.7</td>
91<td>API level 10</td>
92</tr>
93<tr>
94<td>Honeycomb</td>
95<td>3.0</td>
96<td>API level 11</td>
97</tr>
98<tr>
99<td>Honeycomb</td>
100<td>3.1</td>
101<td>API level 12, NDK 6</td>
102</tr>
103<tr>
104<td>Honeycomb</td>
105<td>3.2.x</td>
106<td>API level 13</td>
107</tr>
108<tr>
109<td>Ice Cream Sandwich</td>
110<td>4.0.1 - 4.0.2</td>
111<td>API level 14, NDK 7</td>
112</tr>
113<tr>
114<td>Ice Cream Sandwich</td>
115<td>4.0.3 - 4.0.4</td>
116<td>API level 15, NDK 8</td>
117</tr>
118<tr>
119<td>Jelly Bean</td>
120<td>4.1.x</td>
121<td>API level 16</td>
122</tr>
123<tr>
124<td>Jelly Bean</td>
125<td>4.2.x</td>
126<td>API level 17</td>
127</tr>
128</tbody>
129</table>
130<p>Starting with Cupcake, individual builds are identified with a short
131build code, e.g. FRF85B.</p>
132<p>The first letter is the code name of the release family, e.g. F is
133Froyo.</p>
134<p>The second letter is a branch code that allows Google to identify
135the exact code branch that the build was made from, and R is by
136convention the primary release branch.</p>
137<p>The next letter and two digits are a date code. The letter counts
138quarters, with A being Q1 2009. Therefore, F is Q2 2010. The two
139digits count days within the quarter, so F85 is June 24 2010.</p>
140<p>Finally, the last letter identifies individual versions related to
141the same date code, sequentially starting with A; A is actually
142implicit and usually omitted for brevity.</p>
143<p>The date code is not guaranteed to be the exact date at which a build
144was made, and it is common that minor variations added to an existing
145build re-use the same date code as that existing build.</p>
146
147<h2 id="source-code-tags-and-builds">Source Code Tags and Builds</h2>
148<p>Starting with Donut, the exact list of tags and builds is in the
149following table:</p>
150<table>
151<thead>
152<tr>
153<th>Build</th>
154<th>Tag</th>
155<th>Notes</th>
156</tr>
157</thead>
158<tbody>
159<tr>
160<td>DRC83</td>
161<td>android-1.6_r1.1</td>
162<td>earliest Donut version, ADP1, ADP2</td>
163</tr>
164<tr>
165<td>DRC92</td>
166<td>android-1.6_r1.2</td>
167<td></td>
168</tr>
169<tr>
170<td>DRD08</td>
171<td>android-1.6_r1.3</td>
172<td></td>
173</tr>
174<tr>
175<td>DRD20</td>
176<td>android-1.6_r1.4</td>
177<td></td>
178</tr>
179<tr>
180<td>DMD64</td>
181<td>android-1.6_r1.5</td>
182<td>latest Donut version</td>
183</tr>
184<tr>
185<td>ESD20</td>
186<td>android-2.0_r1</td>
187<td>earliest Eclair version</td>
188</tr>
189<tr>
190<td>ESD56</td>
191<td>android-2.0.1_r1</td>
192<td></td>
193</tr>
194<tr>
195<td>ERD79</td>
196<td>android-2.1_r1</td>
197<td>Nexus One</td>
198</tr>
199<tr>
200<td>ERE27</td>
201<td>android-2.1_r2</td>
202<td>Nexus One</td>
203</tr>
204<tr>
205<td>EPE54B</td>
206<td>android-2.1_r2.1p</td>
207<td>Nexus One</td>
208</tr>
209<tr>
210<td>ESE81</td>
211<td>android-2.1_r2.1s</td>
212<td></td>
213</tr>
214<tr>
215<td>EPF21B</td>
216<td>android-2.1_r2.1p2</td>
217<td>latest Eclair version</td>
218</tr>
219<tr>
220<td>FRF85B</td>
221<td>android-2.2_r1</td>
222<td>earliest Froyo version, Nexus One</td>
223</tr>
224<tr>
225<td>FRF91</td>
226<td>android-2.2_r1.1</td>
227<td>Nexus One</td>
228</tr>
229<tr>
230<td>FRG01B</td>
231<td>android-2.2_r1.2</td>
232<td></td>
233</tr>
234<tr>
235<td>FRG22D</td>
236<td>android-2.2_r1.3</td>
237<td></td>
238</tr>
239<tr>
240<td>FRG83</td>
241<td>android-2.2.1_r1</td>
242<td>Nexus One</td>
243</tr>
244<tr>
245<td>FRG83D</td>
246<td>android-2.2.1_r2</td>
247<td>Nexus One</td>
248</tr>
249<tr>
250<td>FRG83G</td>
251<td>android-2.2.2_r1</td>
252<td>Nexus One</td>
253</tr>
254<tr>
255<td>FRK76</td>
256<td>android-2.2.3_r1</td>
257<td></td>
258</tr>
259<tr>
260<td>FRK76C</td>
261<td>android-2.2.3_r2</td>
262<td>latest Froyo version</td>
263</tr>
264<tr>
265<td>GRH55</td>
266<td>android-2.3_r1</td>
267<td>earliest Gingerbread version, Nexus S</td>
268</tr>
269<tr>
270<td>GRH78</td>
271<td>android-2.3.1_r1</td>
272<td>Nexus S</td>
273</tr>
274<tr>
275<td>GRH78C</td>
276<td>android-2.3.2_r1</td>
277<td>Nexus S</td>
278</tr>
279<tr>
280<td>GRI40</td>
281<td>android-2.3.3_r1</td>
282<td>Nexus One, Nexus S</td>
283</tr>
284<tr>
285<td>GRI54</td>
286<td>android-2.3.3_r1.1</td>
287<td>Nexus S</td>
288</tr>
289<tr>
290<td>GRJ06D</td>
291<td>android-2.3.4_r0.9</td>
292<td>Nexus S 4G</td>
293</tr>
294<tr>
295<td>GRJ22</td>
296<td>android-2.3.4_r1</td>
297<td>Nexus One, Nexus S, Nexus S 4G</td>
298</tr>
299<tr>
300<td>GRJ90</td>
301<td>android-2.3.5_r1</td>
302<td>Nexus S 4G</td>
303</tr>
304<tr>
305<td>GRK39C</td>
306<td>android-2.3.6_r0.9</td>
307<td>Nexus S</td>
308</tr>
309<tr>
310<td>GRK39F</td>
311<td>android-2.3.6_r1</td>
312<td>Nexus One, Nexus S</td>
313</tr>
314<tr>
315<td>GWK74</td>
316<td>android-2.3.7_r1</td>
317<td>latest Gingerbread version, Nexus S 4G</td>
318</tr>
319<tr>
320<td>ITL41D</td>
321<td>android-4.0.1_r1</td>
322<td>earliest Ice Cream Sandwich version, Galaxy Nexus</td>
323</tr>
324<tr>
325<td>ITL41D</td>
326<td>android-4.0.1_r1.1</td>
327<td>Galaxy Nexus</td>
328</tr>
329<tr>
330<td>ITL41F</td>
331<td>android-4.0.1_r1.2</td>
332<td>Galaxy Nexus</td>
333</tr>
334<tr>
335<td>ICL53F</td>
336<td>android-4.0.2_r1</td>
337<td>Galaxy Nexus</td>
338</tr>
339<tr>
340<td>IML74K</td>
341<td>android-4.0.3_r1</td>
342<td>Nexus S</td>
343</tr>
344<tr>
345<td>IML77</td>
346<td>android-4.0.3_r1.1</td>
347<td></td>
348</tr>
349<tr>
350<td>IMM76</td>
351<td>android-4.0.4_r1</td>
352<td></td>
353</tr>
354<tr>
355<td>IMM76D</td>
356<td>android-4.0.4_r1.1</td>
357<td>Nexus S, Nexus S 4G, Galaxy Nexus</td>
358</tr>
359<tr>
360<td>IMM76I</td>
361<td>android-4.0.4_r1.2</td>
362<td>Galaxy Nexus</td>
363</tr>
364<tr>
365<td>IMM76K</td>
366<td>android-4.0.4_r2</td>
367<td>Galaxy Nexus</td>
368</tr>
369<tr>
370<td>IMM76L</td>
371<td>android-4.0.4_r2.1</td>
372<td>latest Ice Cream Sandwich version</td>
373</tr>
374<tr>
375<td>JRO03C</td>
376<td>android-4.1.1_r1</td>
377<td>earliest Jelly Bean version, Galaxy Nexus</td>
378</tr>
379<tr>
380<td>JRO03D</td>
381<td>android-4.1.1_r1.1</td>
382<td>Nexus 7</td>
383</tr>
384<tr>
385<td>JRO03E</td>
386<td>android-4.1.1_r2</td>
387<td>Nexus S</td>
388</tr>
389<tr>
390<td>JRO03H</td>
391<td>android-4.1.1_r3</td>
392<td></td>
393</tr>
394<tr>
395<td>JRO03L</td>
396<td>android-4.1.1_r4</td>
397<td>Nexus S</td>
398</tr>
399<tr>
400<td>JRO03O</td>
401<td>android-4.1.1_r5</td>
402<td>Galaxy Nexus</td>
403</tr>
404<tr>
405<td>JRO03R</td>
406<td>android-4.1.1_r6</td>
407<td>Nexus S 4G</td>
408</tr>
409<tr>
410<td>JRO03S</td>
411<td>android-4.1.1_r6.1</td>
412<td>Nexus 7</td>
413</tr>
414<tr>
415<td>JZO54K</td>
416<td>android-4.1.2_r1</td>
417<td>Nexus S, Galaxy Nexus, Nexus 7</td>
418</tr>
419<tr>
420<td>JOP40C</td>
421<td>android-4.2_r1</td>
422<td>Galaxy Nexus, Nexus 7, Nexus 4, Nexus 10</td>
423</tr>
Robert Ly40e3b6d2013-04-17 18:12:10 -0700424
Robert Ly35f2fda2013-01-29 16:27:05 -0800425<tr>
426<td>JOP40D</td>
427<td>android-4.2.1_r1</td>
Robert Ly40e3b6d2013-04-17 18:12:10 -0700428<td>Galaxy Nexus, Nexus 7, Nexus 4, Nexus 10</td>
429</tr>
430
431<tr>
432<td>JOP40F</td>
433<td>android-4.2.1_r1.1</td>
434<td>Nexus 10</td>
435</tr>
436
437<tr>
438<td>JOP40G</td>
439<td>android-4.2.1_r1.2</td>
440<td>Nexus 4</td>
441</tr>
442
443<tr>
444<td>JDQ39</td>
445<td>android-4.2.2_r1</td>
Robert Ly35f2fda2013-01-29 16:27:05 -0800446<td>latest Jelly Bean version, Galaxy Nexus, Nexus 7, Nexus 4, Nexus 10</td>
447</tr>
Robert Ly40e3b6d2013-04-17 18:12:10 -0700448
Robert Ly35f2fda2013-01-29 16:27:05 -0800449</tbody>
450</table>
451<p>The branches froyo, gingerbread, ics-mr0, ics-mr1, jb-dev,
Robert Ly40e3b6d2013-04-17 18:12:10 -0700452jb-mr1-dev, jb-mr1.1-dev
Robert Ly35f2fda2013-01-29 16:27:05 -0800453represent development
454branches that do not exactly match configurations that were tested
455by Google. They might contain a variety of changes in addition to
456the official tagged releases, and those haven't been as thoroughly
457tested.</p>
458
459<h2 id="honeycomb-gpl-modules">Honeycomb GPL Modules</h2>
460<p>For Honeycomb, the entire platform source code isn't available.
461However, the parts of Honeycomb licensed under the GPL and LGPL
462are available under the following tags:</p>
463<table>
464<thead>
465<tr>
466<th>Build</th>
467<th>Tag</th>
468<th>Notes</th>
469</tr>
470</thead>
471<tbody>
472<tr>
473<td>HRI39</td>
474<td>android-3.0_r1</td>
475<td>earliest Honeycomb version</td>
476</tr>
477<tr>
478<td>HRI66</td>
479<td>android-3.0_r1.1</td>
480<td></td>
481</tr>
482<tr>
483<td>HWI69</td>
484<td>android-3.0_r1.2</td>
485<td></td>
486</tr>
487<tr>
Robert Ly40e3b6d2013-04-17 18:12:10 -0700488<td>HRI83</td>
Robert Ly35f2fda2013-01-29 16:27:05 -0800489<td>android-3.0_r1.3</td>
490<td></td>
491</tr>
492<tr>
493<td>HMJ37</td>
494<td>android-3.1_r1</td>
495<td></td>
496</tr>
497<tr>
498<td>HTJ85B</td>
499<td>android-3.2_r1</td>
500<td></td>
501</tr>
502<tr>
503<td>HTK55D</td>
504<td>android-3.2.1_r1</td>
505<td></td>
506</tr>
507<tr>
508<td>HTK75D</td>
509<td>android-3.2.1_r2</td>
510<td></td>
511</tr>
512<tr>
513<td>HLK75C</td>
514<td>android-3.2.2_r1</td>
515<td></td>
516</tr>
517<tr>
518<td>HLK75D</td>
519<td>android-3.2.2_r2</td>
520<td></td>
521</tr>
522<tr>
523<td>HLK75F</td>
524<td>android-3.2.4_r1</td>
525<td></td>
526</tr>
527<tr>
528<td>HLK75H</td>
529<td>android-3.2.6_r1</td>
530<td>latest Honeycomb version</td>
531</tr>
532</tbody>
533</table>
534<p>There is no manifest that contains exactly those. However, there
535are manifests that allow building those components. The following
536commands work for 3.0_r1.1, and using other versions can be done by
537switching the git checkout paramater, and if necessary the -m parameter in
538repo init. The git checkout command outputs an error for the non-GPL
539projects, where it can't find the tag in question.</p>
540<pre><code>$ repo init -b master -m base-for-3.0-gpl.xml
541$ repo sync
542$ repo forall -c git checkout android-3.0_r1.1
543</code></pre>
544