blob: af80f13f1be6ba2e9ae78a5b571f49b87bac6685 [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>
Jean-Baptiste Querud8fbf202013-06-18 14:51:12 -0700128<tr>
129<td>Jelly Bean</td>
130<td>4.3</td>
131<td>API level 18</td>
132</tr>
Robert Ly35f2fda2013-01-29 16:27:05 -0800133</tbody>
134</table>
135<p>Starting with Cupcake, individual builds are identified with a short
136build code, e.g. FRF85B.</p>
137<p>The first letter is the code name of the release family, e.g. F is
138Froyo.</p>
139<p>The second letter is a branch code that allows Google to identify
140the exact code branch that the build was made from, and R is by
141convention the primary release branch.</p>
142<p>The next letter and two digits are a date code. The letter counts
143quarters, with A being Q1 2009. Therefore, F is Q2 2010. The two
144digits count days within the quarter, so F85 is June 24 2010.</p>
145<p>Finally, the last letter identifies individual versions related to
146the same date code, sequentially starting with A; A is actually
147implicit and usually omitted for brevity.</p>
148<p>The date code is not guaranteed to be the exact date at which a build
149was made, and it is common that minor variations added to an existing
150build re-use the same date code as that existing build.</p>
151
152<h2 id="source-code-tags-and-builds">Source Code Tags and Builds</h2>
153<p>Starting with Donut, the exact list of tags and builds is in the
154following table:</p>
155<table>
156<thead>
157<tr>
158<th>Build</th>
159<th>Tag</th>
160<th>Notes</th>
161</tr>
162</thead>
163<tbody>
164<tr>
165<td>DRC83</td>
166<td>android-1.6_r1.1</td>
167<td>earliest Donut version, ADP1, ADP2</td>
168</tr>
169<tr>
170<td>DRC92</td>
171<td>android-1.6_r1.2</td>
172<td></td>
173</tr>
174<tr>
175<td>DRD08</td>
176<td>android-1.6_r1.3</td>
177<td></td>
178</tr>
179<tr>
180<td>DRD20</td>
181<td>android-1.6_r1.4</td>
182<td></td>
183</tr>
184<tr>
185<td>DMD64</td>
186<td>android-1.6_r1.5</td>
187<td>latest Donut version</td>
188</tr>
189<tr>
190<td>ESD20</td>
191<td>android-2.0_r1</td>
192<td>earliest Eclair version</td>
193</tr>
194<tr>
195<td>ESD56</td>
196<td>android-2.0.1_r1</td>
197<td></td>
198</tr>
199<tr>
200<td>ERD79</td>
201<td>android-2.1_r1</td>
202<td>Nexus One</td>
203</tr>
204<tr>
205<td>ERE27</td>
206<td>android-2.1_r2</td>
207<td>Nexus One</td>
208</tr>
209<tr>
210<td>EPE54B</td>
211<td>android-2.1_r2.1p</td>
212<td>Nexus One</td>
213</tr>
214<tr>
215<td>ESE81</td>
216<td>android-2.1_r2.1s</td>
217<td></td>
218</tr>
219<tr>
220<td>EPF21B</td>
221<td>android-2.1_r2.1p2</td>
222<td>latest Eclair version</td>
223</tr>
224<tr>
225<td>FRF85B</td>
226<td>android-2.2_r1</td>
227<td>earliest Froyo version, Nexus One</td>
228</tr>
229<tr>
230<td>FRF91</td>
231<td>android-2.2_r1.1</td>
232<td>Nexus One</td>
233</tr>
234<tr>
235<td>FRG01B</td>
236<td>android-2.2_r1.2</td>
237<td></td>
238</tr>
239<tr>
240<td>FRG22D</td>
241<td>android-2.2_r1.3</td>
242<td></td>
243</tr>
244<tr>
245<td>FRG83</td>
246<td>android-2.2.1_r1</td>
247<td>Nexus One</td>
248</tr>
249<tr>
250<td>FRG83D</td>
251<td>android-2.2.1_r2</td>
252<td>Nexus One</td>
253</tr>
254<tr>
255<td>FRG83G</td>
256<td>android-2.2.2_r1</td>
257<td>Nexus One</td>
258</tr>
259<tr>
260<td>FRK76</td>
261<td>android-2.2.3_r1</td>
262<td></td>
263</tr>
264<tr>
265<td>FRK76C</td>
266<td>android-2.2.3_r2</td>
267<td>latest Froyo version</td>
268</tr>
269<tr>
270<td>GRH55</td>
271<td>android-2.3_r1</td>
272<td>earliest Gingerbread version, Nexus S</td>
273</tr>
274<tr>
275<td>GRH78</td>
276<td>android-2.3.1_r1</td>
277<td>Nexus S</td>
278</tr>
279<tr>
280<td>GRH78C</td>
281<td>android-2.3.2_r1</td>
282<td>Nexus S</td>
283</tr>
284<tr>
285<td>GRI40</td>
286<td>android-2.3.3_r1</td>
287<td>Nexus One, Nexus S</td>
288</tr>
289<tr>
290<td>GRI54</td>
291<td>android-2.3.3_r1.1</td>
292<td>Nexus S</td>
293</tr>
294<tr>
295<td>GRJ06D</td>
296<td>android-2.3.4_r0.9</td>
297<td>Nexus S 4G</td>
298</tr>
299<tr>
300<td>GRJ22</td>
301<td>android-2.3.4_r1</td>
302<td>Nexus One, Nexus S, Nexus S 4G</td>
303</tr>
304<tr>
305<td>GRJ90</td>
306<td>android-2.3.5_r1</td>
307<td>Nexus S 4G</td>
308</tr>
309<tr>
310<td>GRK39C</td>
311<td>android-2.3.6_r0.9</td>
312<td>Nexus S</td>
313</tr>
314<tr>
315<td>GRK39F</td>
316<td>android-2.3.6_r1</td>
317<td>Nexus One, Nexus S</td>
318</tr>
319<tr>
320<td>GWK74</td>
321<td>android-2.3.7_r1</td>
322<td>latest Gingerbread version, Nexus S 4G</td>
323</tr>
324<tr>
325<td>ITL41D</td>
326<td>android-4.0.1_r1</td>
327<td>earliest Ice Cream Sandwich version, Galaxy Nexus</td>
328</tr>
329<tr>
330<td>ITL41D</td>
331<td>android-4.0.1_r1.1</td>
332<td>Galaxy Nexus</td>
333</tr>
334<tr>
335<td>ITL41F</td>
336<td>android-4.0.1_r1.2</td>
337<td>Galaxy Nexus</td>
338</tr>
339<tr>
340<td>ICL53F</td>
341<td>android-4.0.2_r1</td>
342<td>Galaxy Nexus</td>
343</tr>
344<tr>
345<td>IML74K</td>
346<td>android-4.0.3_r1</td>
347<td>Nexus S</td>
348</tr>
349<tr>
350<td>IML77</td>
351<td>android-4.0.3_r1.1</td>
352<td></td>
353</tr>
354<tr>
355<td>IMM76</td>
356<td>android-4.0.4_r1</td>
357<td></td>
358</tr>
359<tr>
360<td>IMM76D</td>
361<td>android-4.0.4_r1.1</td>
362<td>Nexus S, Nexus S 4G, Galaxy Nexus</td>
363</tr>
364<tr>
365<td>IMM76I</td>
366<td>android-4.0.4_r1.2</td>
367<td>Galaxy Nexus</td>
368</tr>
369<tr>
370<td>IMM76K</td>
371<td>android-4.0.4_r2</td>
372<td>Galaxy Nexus</td>
373</tr>
374<tr>
375<td>IMM76L</td>
376<td>android-4.0.4_r2.1</td>
377<td>latest Ice Cream Sandwich version</td>
378</tr>
379<tr>
380<td>JRO03C</td>
381<td>android-4.1.1_r1</td>
382<td>earliest Jelly Bean version, Galaxy Nexus</td>
383</tr>
384<tr>
385<td>JRO03D</td>
386<td>android-4.1.1_r1.1</td>
387<td>Nexus 7</td>
388</tr>
389<tr>
390<td>JRO03E</td>
391<td>android-4.1.1_r2</td>
392<td>Nexus S</td>
393</tr>
394<tr>
395<td>JRO03H</td>
396<td>android-4.1.1_r3</td>
397<td></td>
398</tr>
399<tr>
400<td>JRO03L</td>
401<td>android-4.1.1_r4</td>
402<td>Nexus S</td>
403</tr>
404<tr>
405<td>JRO03O</td>
406<td>android-4.1.1_r5</td>
407<td>Galaxy Nexus</td>
408</tr>
409<tr>
410<td>JRO03R</td>
411<td>android-4.1.1_r6</td>
412<td>Nexus S 4G</td>
413</tr>
414<tr>
415<td>JRO03S</td>
416<td>android-4.1.1_r6.1</td>
417<td>Nexus 7</td>
418</tr>
Jean-Baptiste Queru5e560812013-06-04 09:16:38 -0700419
Robert Ly35f2fda2013-01-29 16:27:05 -0800420<tr>
421<td>JZO54K</td>
422<td>android-4.1.2_r1</td>
423<td>Nexus S, Galaxy Nexus, Nexus 7</td>
424</tr>
Jean-Baptiste Queru5e560812013-06-04 09:16:38 -0700425
426<tr>
427<td>JZO54L</td>
428<td>android-4.1.2_r2</td>
429<td></td>
430</tr>
431
Robert Ly35f2fda2013-01-29 16:27:05 -0800432<tr>
433<td>JOP40C</td>
434<td>android-4.2_r1</td>
435<td>Galaxy Nexus, Nexus 7, Nexus 4, Nexus 10</td>
436</tr>
Robert Ly40e3b6d2013-04-17 18:12:10 -0700437
Robert Ly35f2fda2013-01-29 16:27:05 -0800438<tr>
439<td>JOP40D</td>
440<td>android-4.2.1_r1</td>
Robert Ly40e3b6d2013-04-17 18:12:10 -0700441<td>Galaxy Nexus, Nexus 7, Nexus 4, Nexus 10</td>
442</tr>
443
444<tr>
445<td>JOP40F</td>
446<td>android-4.2.1_r1.1</td>
447<td>Nexus 10</td>
448</tr>
449
450<tr>
451<td>JOP40G</td>
452<td>android-4.2.1_r1.2</td>
453<td>Nexus 4</td>
454</tr>
455
456<tr>
457<td>JDQ39</td>
458<td>android-4.2.2_r1</td>
Jean-Baptiste Querud8fbf202013-06-18 14:51:12 -0700459<td>Galaxy Nexus, Nexus 7, Nexus 4, Nexus 10</td>
460</tr>
461
462<tr>
Jean-Baptiste Queru5e560812013-06-04 09:16:38 -0700463<td>JDQ39B</td>
464<td>android-4.2.2_r1.1</td>
465<td>Nexus 7</td>
466</tr>
467
468<tr>
469<td>JDQ39E</td>
470<td>android-4.2.2_r1.1</td>
471<td>Nexus 4</td>
472</tr>
473
474<tr>
Jean-Baptiste Queru28061d92013-06-20 18:50:51 -0700475<td>JWR66L</td>
476<td>android-4.3_r0.9</td>
477<td>Nexus 7</td>
478</tr>
479
480<tr>
Jean-Baptiste Querud8fbf202013-06-18 14:51:12 -0700481<td>JWR66N</td>
Jean-Baptiste Queru28061d92013-06-20 18:50:51 -0700482<td>android-4.3_r1</td>
Robert Ly35f2fda2013-01-29 16:27:05 -0800483<td>latest Jelly Bean version, Galaxy Nexus, Nexus 7, Nexus 4, Nexus 10</td>
484</tr>
Robert Ly40e3b6d2013-04-17 18:12:10 -0700485
Robert Ly35f2fda2013-01-29 16:27:05 -0800486</tbody>
487</table>
488<p>The branches froyo, gingerbread, ics-mr0, ics-mr1, jb-dev,
Jean-Baptiste Querud8fbf202013-06-18 14:51:12 -0700489jb-mr1-dev, jb-mr1.1-dev, jb-mr2-dev
Robert Ly35f2fda2013-01-29 16:27:05 -0800490represent development
491branches that do not exactly match configurations that were tested
492by Google. They might contain a variety of changes in addition to
493the official tagged releases, and those haven't been as thoroughly
494tested.</p>
495
496<h2 id="honeycomb-gpl-modules">Honeycomb GPL Modules</h2>
497<p>For Honeycomb, the entire platform source code isn't available.
498However, the parts of Honeycomb licensed under the GPL and LGPL
499are available under the following tags:</p>
500<table>
501<thead>
502<tr>
503<th>Build</th>
504<th>Tag</th>
505<th>Notes</th>
506</tr>
507</thead>
508<tbody>
509<tr>
510<td>HRI39</td>
511<td>android-3.0_r1</td>
512<td>earliest Honeycomb version</td>
513</tr>
514<tr>
515<td>HRI66</td>
516<td>android-3.0_r1.1</td>
517<td></td>
518</tr>
519<tr>
520<td>HWI69</td>
521<td>android-3.0_r1.2</td>
522<td></td>
523</tr>
524<tr>
Robert Ly40e3b6d2013-04-17 18:12:10 -0700525<td>HRI83</td>
Robert Ly35f2fda2013-01-29 16:27:05 -0800526<td>android-3.0_r1.3</td>
527<td></td>
528</tr>
529<tr>
530<td>HMJ37</td>
531<td>android-3.1_r1</td>
532<td></td>
533</tr>
534<tr>
535<td>HTJ85B</td>
536<td>android-3.2_r1</td>
537<td></td>
538</tr>
539<tr>
540<td>HTK55D</td>
541<td>android-3.2.1_r1</td>
542<td></td>
543</tr>
544<tr>
545<td>HTK75D</td>
546<td>android-3.2.1_r2</td>
547<td></td>
548</tr>
549<tr>
550<td>HLK75C</td>
551<td>android-3.2.2_r1</td>
552<td></td>
553</tr>
554<tr>
555<td>HLK75D</td>
556<td>android-3.2.2_r2</td>
557<td></td>
558</tr>
559<tr>
560<td>HLK75F</td>
561<td>android-3.2.4_r1</td>
562<td></td>
563</tr>
564<tr>
565<td>HLK75H</td>
566<td>android-3.2.6_r1</td>
567<td>latest Honeycomb version</td>
568</tr>
569</tbody>
570</table>
571<p>There is no manifest that contains exactly those. However, there
572are manifests that allow building those components. The following
573commands work for 3.0_r1.1, and using other versions can be done by
574switching the git checkout paramater, and if necessary the -m parameter in
575repo init. The git checkout command outputs an error for the non-GPL
576projects, where it can't find the tag in question.</p>
577<pre><code>$ repo init -b master -m base-for-3.0-gpl.xml
578$ repo sync
579$ repo forall -c git checkout android-3.0_r1.1
580</code></pre>
581