summaryrefslogtreecommitdiffstats
path: root/docs/html/guide/developing/devices/emulator.jd
blob: 08fb89d4d836e17b6e39afd15d5e7055dd2b1e8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
page.title=Using the Android Emulator
@jd:body

<div id="qv-wrapper">
<div id="qv">

  <h2>In this document</h2>
    <ol>
      <li><a href="#overview">Overview</a></li>
      <li><a href="#starting">Starting and Stopping the Emulator</a></li>
      <li><a href="#starting">Android Virtual Devices and the Emulator</a></li>
      <li><a href="#controlling">Controlling the Emulator</a></li>
      <li><a href="#startup-options">Emulator Startup Options</a></li>
      <li><a href="#diskimages">Working with Emulator Disk Images</a>
	      <ol>
	        <li><a href="#defaultimages">Default Images</a></li>
	        <li><a href="#runtimeimages">Runtime Images: User Data and SD Card</a></li>
	        <li><a href="#temporaryimages">Temporary Images</a></li>
	      </ol>
	    </li>
      <li><a href="#emulatornetworking">Emulator Networking</a>
	      <ol>
          <li><a href="#networkaddresses">Network Address Space</a></li>
          <li><a href="#networkinglimitations">Local Networking Limitations</a></li>
          <li><a href="#redirections">Using Network Redirections</a></li>
          <li><a href="#dns">Configuring the Emulator's DNS Settings</a></li>
          <li><a href="#proxy">Using the Emulator with a Proxy</a></li>
          <li><a href="#connecting">Interconnecting Emulator Instances</a></li>
          <li><a href="#calling">Sending a Voice Call or SMS to Another Emulator Instance</a></li>
        </ol>
      </li>
    </ol>
</div>
</div>


<img src="/images/emulator-wvga800l.png" alt="Image of the Android Emulator"
width="367" height="349" style="margin-left:2em;float:right;"/>
<p>The Android SDK includes a virtual mobile device emulator
that runs on your computer. The emulator lets you prototype, develop, and test
Android applications without using a physical device. </p>

<p>The Android emulator mimics all of the hardware and software features
of a typical mobile device, except that it cannot place actual phone
calls. It provides a variety of navigation and control keys, which you can "press"
using your mouse or keyboard to generate events for your application. It also
provides a screen in which your application is displayed, together with any other
Android applications running. </p>

<p>To let you model and test your application more easily, the emulator utilizes
Android Virtual Device (AVD) configurations. AVDs let you define certain hardware
aspects of your emulated phone and allow you to create many configurations to test
many Android platforms and hardware permutations. Once your application is running on
the emulator, it can use the services of the Android platform to invoke other
applications, access the network, play audio and video, store and retrieve data,
notify the user, and render graphical transitions and themes. </p>

<p>The emulator also includes a variety of debug capabilities, such as a console 
from which you can log kernel output, simulate application interrupts (such as 
arriving SMS messages or phone calls), and simulate latency effects and dropouts 
on the data channel.</p>





<h2  id="overview">Overview</h2>

<p>The Android emulator is a QEMU-based application that provides a virtual ARM
mobile device on which you can run your Android applications. It runs a full
Android system stack, down to the kernel level, that includes a set of
preinstalled applications (such as the dialer) that you can access from your
applications. You can choose what version of the Android system you want to
run in the emulator by configuring AVDs, and you can also customize the
mobile device skin and key mappings. When launching the emulator and at runtime,
you can use a variety of commands and options to control the its behaviors.
</p>

<p>The Android system image distributed in the SDK contains ARM machine code for
the Android Linux kernel, the native libraries, the Dalvik VM, and the various
Android package files (such as for for the Android framework and preinstalled
applications). The emulator's QEMU layers provide dynamic binary translation of
the ARM machine code to the OS and processor architecture of your development
machine. </p>

<p>Adding custom capabilities to the underlying QEMU services, the Android
emulator supports many hardware features likely to be found on mobile devices,
including: </p>

<ul>
  <li>An ARMv5 CPU and the corresponding memory-management unit (MMU)</li>
  <li>A 16-bit LCD display</li>
  <li>One or more keyboards (a Qwerty-based keyboard and associated Dpad/Phone
buttons)</li>
  <li>A sound chip with output and input capabilities</li>
  <li>Flash memory partitions (emulated through disk image files on the
development machine)</li>
  <li>A GSM modem, including a simulated SIM Card</li>
</ul>

<p>The sections below provide more information about the emulator and how to use
it for developing Android applications.</p>


<a name="avds"></a>

<h2>Android Virtual Devices and the Emulator</h2>

<p>To use the emulator, you first must create one or more AVD configurations. In each
configuration, you specify an Android platform to run in the emulator and the set of hardware
options and emulator skin you want to use. Then, when you launch the emulator, you specify
the AVD configuration that you want to load. </p>

<p>To specify the AVD you want to load when starting the emulator, you use the
<code>-avd</code> argument, as shown in the previous section. </p>

<p>Each AVD functions as an independent device, with its own private storage for
user data, SD card, and so on. When you launch the emulator with an AVD configuration,
it automatically loads the user data and SD card data from the AVD directory. By default,
the emulator stores the user data, SD card data, and cache in the AVD directory.</p>

<p>To create and manage AVDs you use the android tool, a command-line utility
included in the SDK. For complete information about how to set up AVDs, see <a
href="{@docRoot}guide/developing/tools/avd.html">Android Virtual Devices</a>.</p>

<a name="starting"></a>

<h2>Starting and Stopping the Emulator</h2>

<p>During development and testing of your application, you install and run your
application in the Android emulator. You can launch the emulator as a standalone
application, from a command line, or you can use it as part of your Eclipse
development environment. In either case, you specify the AVD configuration to
load and any startup options you want to use, as described in this document.
</p>

<p>You can run your application on a single instance of the emulator or,
depending on your needs, you can start multiple emulator instances and run your
application in more than one emulated device. You can use the emulator's
built-in commands to simulate GSM phone calling or SMS between emulator
instances, and you can set up network redirections that allow emulators to send
data to one another. For more information, see <a href="#telephony">Telephony
Emulation</a>, <a href="#sms">SMS Emulation</a>, and
<a href="#emulatornetworking">Emulator Networking</a></p>

<p>To start an instance of the emulator from the command line, change to the
<code>tools/</code> folder of the SDK. Enter <code>emulator</code> command
like this: </p>

<pre>emulator -avd &lt;avd_name&gt;</pre>

<p>This initializes the emulator and loads an AVD configuration (see the next
section for more information about AVDs). You will see the emulator window
appear on your screen. </p>

<p>If you are working in Eclipse, the ADT plugin for Eclipse installs your
application and starts the emulator automatically, when you run or debug
the application. You can specify emulator startup options in the Run/Debug
dialog, in the Target tab. When the emulator is running, you can issue
console commands as described later in this document.</p>

<p>If you are not working in Eclipse, see <a href="#apps">Installing Applications
on the Emulator</a> for information about how to install your application.</p>

<p>To stop an emulator instance, just close the emulator's window.</p>







<a name="controlling"></a>


<h2>Controlling the Emulator</h2>

<p>You can use emulator <a href="#startup-options">startup options</a> and <a
href="#console">console commands</a> to control the behaviors and
characteristics of the emulated environment itself.
</p>

<p>When the emulator is running, you can interact with the emulated mobile
device just as you would an actual mobile device, except that you use your mouse
pointer to &quot;touch&quot; the touchscreen and your keyboard keys to
&quot;press&quot; the simulated device keys. </p>

<p>The table below summarizes the mappings between the emulator keys and and
the keys of your keyboard. </p>

<table  border="0" style="clear:left;">
  <tr>
    <th>Emulated Device Key </th>
    <th>Keyboard Key </th>
  </tr>
  <tr>
    <td>Home</td>
    <td>HOME</td>
  </tr>
  <tr>
    <td>Menu (left softkey)</td>
    <td>F2 <em>or</em> Page-up button</td>
  </tr>
  <tr>
    <td>Star (right softkey)</td>
    <td>Shift-F2 <em>or </em>Page Down</td>
  </tr>
  <tr>
    <td>Back</td>
    <td>ESC</td>
  </tr>
  <tr>
    <td>Call/dial button </td>
    <td>F3</td>
  </tr>
  <tr>
    <td>Hangup/end call button</td>
    <td>F4</td>
  </tr>
  <tr>
    <td>Search</td>
    <td>F5 </td>
  </tr>
  <tr>
    <td>Power button</td>
    <td>F7 </td>
  </tr>
  <tr>
    <td>Audio volume up button</td>
    <td>KEYPAD_PLUS, Ctrl-5</td>
  </tr>

  <tr>
    <td>Audio volume down button</td>
    <td>KEYPAD_MINUS, Ctrl-F6</td>
  </tr>
  <tr>
    <td>Camera button</td>
    <td>Ctrl-KEYPAD_5, Ctrl-F3</td>
  </tr>
  <tr>
    <td>Switch to previous layout orientation (for example, portrait, landscape)</td>
    <td>KEYPAD_7, Ctrl-F11</td>
  </tr>
  <tr>
    <td>Switch to next layout orientation (for example, portrait, landscape)</td>
    <td>KEYPAD_9, Ctrl-F12</td>
  </tr>
  <tr>
    <td>Toggle cell networking on/off</td>
    <td>F8</td>
  </tr>
  <tr>
    <td>Toggle code profiling</td>
    <td>F9 (only with <code>-trace</code> startup option)</td>
  </tr>
  <tr>
    <td>Toggle fullscreen mode</td>
    <td>Alt-Enter</td>
  </tr>
  <tr>
    <td>Toggle trackball mode</td>
    <td>F6</td>
  </tr>
  <tr>
    <td>Enter trackball mode temporarily (while key is pressed)</td>
    <td>Delete</td>
  </tr>
  <tr>
    <td>DPad left/up/right/down</td>
    <td>KEYPAD_4/8/6/2</td>
  </tr>
  <tr>
    <td>DPad center click</td>
    <td>KEYPAD_5</td>
  </tr>
  <tr>
    <td>Onion alpha increase/decrease</td>
    <td>KEYPAD_MULTIPLY(*) / KEYPAD_DIVIDE(/)</td>
  </tr>
</table>

<p>Note that, to use keypad keys, you must first disable NumLock on your development computer. </p>

<h2 id="emulator">Emulator Startup Options</h2>

<p>The emulator supports a variety of options that you can specify
when launching the emulator, to control its appearance or behavior.
Here's the command-line usage for launching the emulator with options: </p>

<pre>emulator -avd &lt;avd_name&gt; [-&lt;option&gt; [&lt;value&gt;]] ... [-&lt;qemu args&gt;]</pre>

<p>The table below summarizes the available options.</p>

<table>
<tr>
  <th width="10%" >Category</th>
  <th width="20%" >Option</th>
    <th width="30%" >Description</th>
    <th width="40%" >Comments</th>
</tr>

<tr>
  <td rowspan="9">Help</td>
  <td><code>-help</code></td>
  <td>Print a list of all emulator options.</td>
  <td>&nbsp;</td>
</tr>
<tr>
  <td><code>-help-all</code></td>
  <td>Print help for all startup options.</td>
  <td>&nbsp;</td>
</tr>
<tr>
  <td><code>-help-&lt;option&gt;</code></td>
  <td>Print help for a specific startup option.</td>
  <td>&nbsp;</td>
</tr>
<tr>
  <td><code>-help-debug-tags</code></td>
  <td>Print a list of all tags for <code>-debug &lt;tags&gt;</code>.</td>
  <td>&nbsp;</td>
</tr>
<tr>
  <td><code>-help-disk-images</code></td>
  <td>Print help for using emulator disk images.</td>
  <td>&nbsp;</td>
</tr>
<tr>
  <td><code>-help-environment</code></td>
  <td>Print help for emulator environment variables.</td>
  <td>&nbsp;</td>
</tr><tr>
  <td><code>-help-keys</code></td>
  <td>Print the current mapping of keys.</td>
  <td>&nbsp;</td>
</tr>
<tr>
  <td><code>-help-keyset-file</code></td>
  <td>Print help for defining a custom key mappings file.</td>
  <td>&nbsp;</td>
</tr>
<tr>
  <td><code>-help-virtual-device</code></td>
  <td>Print help for Android Virtual Device usage.</td>
  <td>&nbsp;</td>
</tr>
<tr>
  <td>AVD</td>
  <td><code>-avd &lt;avd_name&gt;</code> or <br>
      <code>@&lt;avd_name&gt;</code></td>
  <td><strong>Required</strong>. Specifies the AVD to load for this emulator
      instance.</td>
  <td>You must create an AVD configuration before launching the emulator. For
      information, see <a href="{@docRoot}guide/developing/tools/avd.html">Android
      Virtual Devices</a>.</td>
<tr>
  <td rowspan="7">Disk Images</td>
  <td><code>-cache&nbsp;&lt;filepath&gt;</code></td>
  <td>Use &lt;filepath&gt; as the working cache partition image. </td>
  <td>Optionally, you can specify a path relative to the current working directory.
  If no cache file is specified, the emulator's default behavior is to use a temporary file instead.
  <p>For more information on disk images, use <code>-help-disk-images</code>.</p>
</td></tr>
<tr>
  <td><code>-data&nbsp;&lt;filepath&gt;</code></td>
  <td>Use &lt;filepath&gt; as the working user-data disk image. </td>
  <td>Optionally, you can specify a path relative to the current working directory.
  If <code>-data</code> is not used, the emulator looks for a file named &quot;userdata-qemu.img&quot;
  in the storage area of the AVD being used (see <code>-avd</code>).
</td></tr>
<!--
<tr>
  <td><code>-datadir &lt;dir&gt;</code></td>
  <td>Search for the user-data disk image specified in <code>-data</code> in &lt;dir&gt;</td>
  <td><code>&lt;dir&gt;</code> is a path relative to the current working directory.

<p>If you do not specify <code>-datadir</code>, the emulator looks for the user-data image
in the storage area of the AVD being used (see <code>-avd</code>)</p><p>For more information
on disk images, use <code>-help-disk-images</code>.</p>
</td></tr>
-->
<!-- 
<tr>
  <td><code>-image&nbsp;&lt;filepath&gt;</code></td>
  <td>Use &lt;filepath&gt; as the system image.</td>
  <td>Optionally, you can specify a path relative to the current working directory.
   Default is &lt;system&gt;/system.img.</td>
</tr>
-->
<tr>
  <td><code>-initdata&nbsp;&lt;filepath&gt;</code></td>
  <td>When resetting the user-data image (through <code>-wipe-data</code>), copy the contents
  of this file to the new user-data disk image. By default, the emulator copies the <code>&lt;system&gt;/userdata.img</code>.</td>
  <td>Optionally, you can specify a path relative to the current working directory. See also <code>-wipe-data</code>.
  <p>For more information on disk images, use <code>-help-disk-images</code>.</p></td>
</tr>
<!--
<tr>
  <td><code>-kernel&nbsp;&lt;filepath&gt;</code></td>
  <td>Use &lt;filepath&gt; as the emulated kernel.</td>
  <td>Optionally, you can specify a path relative to the current working directory. </td>
</tr>
-->
<tr>
  <td><code>-nocache</code></td>
  <td>Start the emulator without a cache partition.</td>
  <td>See also <code>-cache &lt;file&gt;</code>.</td>
</tr>
<tr>
  <td><code>-ramdisk&nbsp;&lt;filepath&gt;</code></td>
  <td>Use &lt;filepath&gt; as the ramdisk image.</td>
  <td>Default value is <code>&lt;system&gt;/ramdisk.img</code>.
  <p>Optionally, you can specify a path relative to the current working directory. 
  For more information on disk images, use <code>-help-disk-images</code>.</p>
</td>
</tr>
<tr>
  <td><code>-sdcard&nbsp;&lt;filepath&gt;</code></td>
  <td>Use &lt;file&gt; as the SD card image.</td>
  <td>Default value is <code>&lt;system&gt;/sdcard.img</code>.
  <p>Optionally, you can specify a path relative to the current working directory. For more information on disk images, use <code>-help-disk-images</code>.</p>
</td>
</tr>
<!--
<tr>
 <td><code>-system&nbsp;&lt;dirpath&gt;</code></td>
 <td>Search for system, ramdisk and user data images in &lt;dir&gt;.</td>
 <td><code>&lt;dir&gt;</code> is a directory path relative to the current 
  working directory.</td>
</tr>
-->
<tr>
  <td><code>-wipe-data</code></td>
  <td>Reset the current user-data disk image (that is, the file specified by <code>-datadir</code> and 
  <code>-data</code>, or the default file). The emulator deletes all data from the user data image file, 
  then copies the contents of the file at <code>-inidata</code> data to the image file before starting. 
  </td>
  <td>See also <code>-initdata</code>. 
  <p>For more information on disk images, use <code>-help-disk-images</code>.</p>
</td>
</tr>
<tr>
  <td rowspan="9">Debug</td>
  <td><code>-debug &lt;tags&gt;</code></td>
  <td>Enable/disable debug messages for the specified debug tags.</td>
  <td><code>&lt;tags&gt;</code> is a space/comma/column-separated list of debug component names. 
  Use <code>-help-debug-tags</code> to print a list of debug component names that you can use. </td>
</tr>
<tr>
  <td><code>-debug-&lt;tag&gt;</code></td>
  <td>Enable/disable debug messages for the specified debug tag.</td>
  <td rowspan="2">Use <code>-help-debug-tags</code> to print a list of debug component names that you can use in <code>&lt;tag&gt;</code>. </td>
</tr>
<tr>
  <td><code>-debug-no-&lt;tag&gt;</code></td>
  <td>Disable debug messages for the specified debug tag.</td>
</tr>
<tr>
  <td><code>-logcat &lt;logtags&gt;</code></td>
  <td>Enable logcat output with given tags.</td>
  <td>If the environment variable ANDROID_LOG_TAGS is defined and not
    empty, its value will be used to enable logcat output by default.</td>
</tr>
<tr>
  <td><code>-shell</code></td>
  <td>Create a root shell console on the current terminal.</td>
  <td>You can use this command even if the adb daemon in the emulated system is broken. 
  Pressing Ctrl-c from the shell stops the emulator instead of the shell.</td>
</tr>
<tr>
  <td><code>-shell-serial&nbsp;&lt;device&gt;</code></td>
  <td>Enable the root shell (as in <code>-shell</code> and specify the QEMU character 
  device to use for communication with the shell.</td>
  <td>&lt;device&gt; must be a QEMU device type. See the documentation for '-serial <em>dev</em>' at 
  <a href="http://www.nongnu.org/qemu/qemu-doc.html#SEC10">http://www.bellard.org/qemu/qemu-doc.html#SEC10</a> 
  for a list of device types.

<p>Here are some examples: </p>
<ul>
  <li><code>-shell-serial stdio</code> is identical to <code>-shell</code></li>
  <li><code>-shell-serial tcp::4444,server,nowait</code> lets you communicate with the shell over TCP port 4444</li>
  <li><code>-shell-serial fdpair:3:6</code> lets a parent process communicate with the shell using fds 3 (in) and 6 (out)</li>
  <li><code>-shell-serial fdpair:0:1</code> uses the normal stdin and stdout fds, except that QEMU won't tty-cook the data.</li>
  </ul>
</td>
</tr>
<tr>
  <td><code>-show-kernel &lt;name&gt;</code></td>
  <td>Display kernel messages.</td>
  <td>&nbsp;</td>
</tr>
<tr>
  <td><code>-trace &lt;name&gt;</code></td>
  <td>Enable code profiling (press F9 to start), written to a specified file.</td>
  <td>&nbsp;</td>
</tr>
<tr>
  <td><code>-verbose</code></td>
  <td>Enable verbose output.</td>
  <td>Equivalent to <code>-debug-init</code>. 
<p>You can define the default verbose output options used by emulator instances in the Android environment variable 
ANDROID_VERBOSE. Define the options you want to use in a comma-delimited list, specifying only the stem of each option: 
<code>-debug-&lt;tags&gt;.</code> </p>
<p>Here's an example showing ANDROID_VERBOSE defined with the <code>-debug-init</code> and <code>-debug-modem</code> options: 
<p><code>ANDROID_VERBOSE=init,modem</code></p>
<p>For more information about debug tags, use <code>&lt;-help-debug-tags&gt;</code>.</p>
</td>
</tr>
<tr>
  <td rowspan="6">Media</td>
  <td><code>-audio &lt;backend&gt;</code></td>
  <td>Use the specified audio backend.</td>
  <td>&nbsp;</td>
</tr>
<tr>
  <td><code>-audio-in &lt;backend&gt;</code></td>
  <td>Use the specified audio-input backend.</td>
  <td>&nbsp;</td>
</tr>
<tr>
  <td><code>-audio-out &lt;backend&gt;</code></td>
  <td>Use the specified audio-output backend.</td>
  <td>&nbsp;</td>
</tr>
<!--<tr>
  <td><code>-mic &lt;device or file&gt;</code></td>
  <td>Use device or WAV file for audio input.</td>
  <td>&nbsp;</td>
</tr>
-->
<tr>
  <td><code>-noaudio</code></td>
  <td>Disable audio support in the current emulator instance.</td>
  <td>&nbsp;</td>
</tr>
<tr>
  <td><code>-radio &lt;device&gt;</code></td>
  <td>Redirect radio modem interface to a host character device.</td>
  <td>&nbsp;</td></tr>
<tr>
  <td><code>-useaudio</code></td>
  <td>Enable audio support in the current emulator instance.</td>
  <td>Enabled by default. </td>
</tr>

<tr>
  <td rowspan="7">Network</td>
  <td><code>-dns-server &lt;servers&gt;</code></td>
  <td>Use the specified DNS server(s). </td>
  <td>The value of <code>&lt;servers&gt;</code> must be a comma-separated list of up to 4 DNS server names or
  IP addresses.</td>
</tr>
<tr>
  <td><code>-http-proxy &lt;proxy&gt;</code></td>
  <td>Make all TCP connections through a specified HTTP/HTTPS proxy</td>
  <td>The value of <code>&lt;proxy&gt;</code> can be one of the following:<br>
     <code>http://&lt;server&gt;:&lt;port&gt;</code><br>
     <code>http://&lt;username&gt;:&lt;password&gt;@&lt;server&gt;:&lt;port&gt;</code>
  <p>The <code>http://</code> prefix can be omitted. If the <code>-http-proxy &lt;proxy&gt;</code> command is not supplied,
  the emulator looks up the <code>http_proxy</code> environment variable and automatically uses any value matching
  the <code>&lt;proxy&gt;</code> format described above.</p></td>
</tr>
<tr>
  <td><code>-netdelay &lt;delay&gt;</code></td>
  <td>Set network latency emulation to &lt;delay&gt;.</td>
  <td>Default value is <code>none</code>. See the table in <a href="#netdelay">Network Delay Emulation</a> for 
  supported <code>&lt;delay&gt;</code> values. </td>
</tr>
<tr>
  <td><code>-netfast</code></td>
  <td>Shortcut for <code>-netspeed full -netdelay none</code></td>
  <td>&nbsp;</td></tr>
<tr>
  <td><code>-netspeed &lt;speed&gt;</code></td>
  <td>Set network speed emulation to &lt;speed&gt;.</td>
  <td>Default value is <code>full</code>. See the table in <a href="#netspeed">Network Speed Emulation</a> for 
  supported <code>&lt;speed&gt;</code> values. </td>
</tr>
<tr>
  <td><code>-port &lt;port&gt;</code></td>
  <td>Set the console port number for this emulator instance to <code>&lt;port&gt;</code>.</td>
  <td>The console port number must be an even integer between 5554 and 5584, inclusive. <code>&lt;port&gt;</code>+1 
  must also be free and will be reserved for ADB.</td>
</tr>
<tr>
  <td><code>-report-console &lt;socket&gt;</code></td>
  <td>Report the assigned console port for this emulator instance to a remote third party 
  before starting the emulation. </td>
  <td><code>&lt;socket&gt;</code> must use one of these formats:

<p><code>tcp:&lt;port&gt;[,server][,max=&lt;seconds&gt;]</code></br>
<code>unix:&lt;port&gt;[,server][,max=&lt;seconds&gt;]</code></p>

<p>Use <code>-help-report-console</code></p> to view more information about this topic. </td>
</tr>
<tr>
  <td rowspan="8">System</td>
  <td><code>-cpu-delay &lt;delay&gt;</code></td>
  <td>Slow down emulated CPU speed by &lt;delay&gt; </td>
  <td>Supported values for &lt;delay&gt; are integers between 0 and 1000.

<p>Note that the &lt;delay&gt; does not correlate to clock speed or other absolute metrics 
&mdash; it simply represents an abstract, relative delay factor applied non-deterministically 
in the emulator. Effective performance does not always 
scale in direct relationship with &lt;delay&gt; values.</p>
</td>
</tr>
<tr>
  <td><code>-gps &lt;device&gt;</code></td>
  <td>Redirect NMEA GPS to character device.</td>
  <td>Use this command to emulate an NMEA-compatible GPS unit connected to
  an external character device or socket. The format of <code>&lt;device&gt;</code> must be QEMU-specific 
  serial device specification. See the documentation for 'serial -dev' at 
  <a href="http://www.bellard.org/qemu/qemu-doc.html#SEC10">http://www.bellard.org/qemu/qemu-doc.html#SEC10</a>.
</td>
</tr>
<tr>
  <td><code>-nojni</code></td>
  <td>Disable JNI checks in the Dalvik runtime.</td><td>&nbsp;</td></tr>
<tr>
  <td><code>-qemu</code></td>
  <td>Pass arguments to qemu.</td>
  <td>&nbsp;</td></tr>
<tr>
  <td><code>-qemu -h</code></td>
  <td>Display qemu help.</td>
  <td></td></tr>
<tr>
  <td><code>-radio &lt;device&gt;</code></td>
  <td>Redirect radio mode to the specified character device.</td>
  <td>The format of <code>&lt;device&gt;</code> must be QEMU-specific 
  serial device specification. See the documentation for 'serial -dev' at 
<a href="http://www.bellard.org/qemu/qemu-doc.html#SEC10">http://www.bellard.org/qemu/qemu-doc.html#SEC10</a>.
</td>
</tr>
<tr>
 <td><code>-timezone &lt;timezone&gt;</code></td>
 <td>Set the timezone for the emulated device to &lt;timezone&gt;, instead of the host's timezone.</td>
 <td><code>&lt;timezone&gt;</code> must be specified in zoneinfo format. For example:
<p>"America/Los_Angeles"<br>
"Europe/Paris"</p>
</td>
</tr>
<tr>
 <td><code>-version</code></td>
 <td>Display the emulator's version number.</td>
 <td>&nbsp;</td>
</tr>
<tr>
  <td rowspan="12">UI</td>
  <td><code>-dpi-device &lt;dpi&gt;</code></td>
  <td>Scale the resolution of the emulator to match the screen size
  of a physical device.</td>
  <td>The default value is 165. See also <code>-scale</code>.</td>
</tr>
<tr>
  <td><code>-no-boot-anim</code></td>
  <td>Disable the boot animation during emulator startup.</td>
  <td>Disabling the boot animation can speed the startup time for the emulator.</td>
</tr>
<tr>
  <td><code>-no-window</code></td>
  <td>Disable the emulator's graphical window display.</td>
  <td>&nbsp;</td>
</tr>
<tr>
  <td><code>-scale &lt;scale&gt;</code></td>
  <td>Scale the emulator window. </td>
  <td><code>&lt;scale&gt;</code> is a number between 0.1 and 3 that represents the desired scaling factor. You can 
  also specify scale as a DPI value if you add the suffix "dpi" to the scale value. A value of "auto" 
  tells the emulator to select the best window size.</td>
</tr>
<tr>
  <td><code>-raw-keys</code></td>
  <td>Disable Unicode keyboard reverse-mapping.</td>
  <td>&nbsp;</td></tr>
<tr>
  <td><code>-noskin</code></td>
  <td>Don't use any emulator skin.</td>
  <td>&nbsp;</td></tr>
<tr>
  <td><code>-keyset &lt;file&gt;</code></td>
  <td>Use the specified keyset file instead of the default.</td>
  <td>The keyset file defines the list of key bindings between the emulator and the host keyboard. 
  For more information, use <code>-help-keyset</code> to print information about this topic.
</td>
</tr>
<tr>
  <td><code>-onion &lt;image&gt;</code></td>
  <td>Use overlay image over screen.</td>
  <td>No support for JPEG. Only PNG is supported.</td></tr>
<tr>
  <td><code>-onion-alpha &lt;percent&gt;</code></td>
  <td>Specify onion skin translucency  value (as percent).
  <td>Default is 50.</td>
</tr>
<tr>
  <td><code>-onion-rotation &lt;position&gt;</code></td>
  <td>Specify onion skin rotation.
  <td><code>&lt;position&gt;</code> must be one of the values 0, 1, 2, 3.</td>
</tr>
<tr>
  <td><code>-skin &lt;skinID&gt;</code></td>
  <td>This emulator option is deprecated. </td>
  <td>Please set skin options using AVDs, rather than by using this emulator
option. Using this option may yield unexpected and in some cases misleading
results, since the density with which to render the skin may not be defined.
AVDs let you associate each skin with a default density and override the default
as needed. For more information, see <a
href="{@docRoot}guide/developing/tools/avd.html">Android Virtual Devices</a>.
</td>
</tr>
<tr>
  <td><code>-skindir &lt;dir&gt;</code></td>
  <td>This emulator option is deprecated. </td>
  <td>See comments for <code>-skin</code>, above.</td></tr>
</table>











<a name="diskimages"></a>

<h2>Working with Emulator Disk Images</h2>

<p>The emulator uses mountable disk images stored on your development machine to
simulate flash (or similar) partitions on an actual device. For example, it uses
disk image containing an emulator-specific kernel, the Android system, a
ramdisk image, and writeable images for user data and simulated SD card.</p>

<p>To run properly, the emulator requires access to a specific set of disk image
files. By default, the Emulator always looks for the disk images in the 
private storage area of the AVD in use. If no images exist there when 
the Emulator is launched, it creates the images in the AVD directory based on 
default versions stored in the SDK. </p>

<p class="note"><strong>Note:</strong> The default storage location for 
AVDs is in <code>~/.android/avd</code> on OS X and Linux, <code>C:\Documents and 
Settings\&lt;user&gt;\.android\</code> on Windows XP, and 
<code>C:\Users\&lt;user&gt;\.android\</code>
on Windows Vista.</p>

<p>To let you use alternate or custom versions of the image files, the emulator
provides startup options that override the default locations and filenames of
the image files. When you use the options, the emulator searches for the image
file under the image name or location that you specify; if it can not locate the
image, it reverts to using the default names and location.</p>

<p>The emulator uses three types of image files: default image files, runtime
image files, and temporary image files. The sections below describe how to
override the location/name of each type of file. </p>

<a name="defaultimages"></a>
<h3>Default Images</h3>

<p>When the emulator launches but does not find an existing user data image in
the active AVD's storage area, it creates a new one from a default version
included in the SDK. The default user data image is read-only. The image 
files are read-only.</p>

<p>The emulator provides the <code>-system &lt;dir&gt;</code> startup option to
let you override the location under which the emulator looks for the default
user data image. </p>

<p>The emulator also provides a startup option that lets you override the name
of the default user data image, as described in the table below. When you use the 
option, the emulator looks in the default directory, or in a custom location
(if you specified <code>-system &lt;dir&gt;</code>). </p>


<table>
<tr>
  <th width="10%" >Name</th>
    <th width="30%" >Description</th>
    <th width="40%" >Comments</th>
</tr>

<!--
<tr>
  <td><code>kernel-qemu.img</code></td>
  <td>The emulator-specific Linux kernel image</td>
  <td>Override using <code>-kernel &lt;file&gt;</code></td>
</tr>

<tr>
  <td><code>ramdisk.img</code></td>
  <td>The ramdisk image used to boot the system.</td>
  <td>Override using <code>-ramdisk &lt;file&gt;</code></td>
</tr>

<tr>
  <td><code>system.img</code></td>
  <td>The <em>initial</em> Android system image.</td>
  <td>Override using <code>-image &lt;file&gt;</code></td>
</tr>
-->
<tr>
  <td><code>userdata.img</code></td>
  <td>The <em>initial</em> user-data disk image</td>
  <td>Override using <code>-initdata &lt;file&gt;</code>. Also see
<code>-data &lt;file&gt;</code>, below.</td>
</tr>

</table>

<a name="runtimeimages"></a>
<h3>Runtime Images: User Data and SD Card</h3>

<p>At runtime, the emulator reads and writes data on two disk images: a
user-data image and (optionally) an SD card image. This emulates the user-data
partition and removable storage media on actual device. </p>

<p>The emulator provides a default user-data disk image. At startup, the emulator 
creates the default image as a copy of the system user-data image (user-data.img), 
described above. The emulator stores the new image with the files of the active AVD.</p>

<!--
<p>The emulator provides a startup option, <code>-datadir &lt;dir&gt;</code>, 
that you can use to override the location under which the emulator looks for the runtime
image files. </p>
-->

<p>The emulator provides startup options to let you override the actual names and storage 
locations of the runtime images to load, as described in the table below. When you use one 
of these options, the emulator looks for the specified file(s) in the current working directory,
in the AVD directory, or in a custom location (if you specified a path with the filename). </p>

<table>
<tr>
  <th width="10%" >Name</th>
    <th width="30%" >Description</th>
    <th width="40%" >Comments</th>
</tr>
<tr>
  <td><code>userdata-qemu.img</code></td>
  <td>An image to which the emulator writes runtime user-data for a unique user.</td>
  <td>Override using <code>-data &lt;filepath&gt;</code>, where <code>&lt;filepath&gt;</code> is the
path the image, relative to the current working directory. If you supply a filename only, 
the emulator looks for the file in the current working directory. If the file at <code>&lt;filepath&gt;</code> does
not exist, the emulator creates an image from the default userdata.img, stores it under the name you
specified, and persists user data to it at shutdown. </td>
</tr>

<tr>
  <td><code>sdcard.img</code></td>
  <td>An image representing an SD card inserted into the emulated device.</td>
  <td>Override using <code>-sdcard &lt;filepath&gt;</code>, where <code>&lt;filepath&gt;</code> is the
path the image, relative to the current working directory. If you supply a filename only, 
the emulator looks for the file in the current working directory. </td>
</tr>

</table>

<h4>User-Data Image</h4>

<p>Each emulator instance uses a writeable user-data image to store user- and
session-specific data. For example, it uses the image to store a unique user's
installed application data, settings, databases, and files. </p>

<p>At startup, the emulator attempts to load a user-data image stored during 
a previous session. It looks for the file in the current working directory, 
in the AVD directory as described above, and at the custom location/name 
that you specified at startup. </p>

<ul>
<li>If it finds a user-data image, it mounts the image and makes it available 
to the system for reading/writing of user data. </li>
<li>If it does not find one, it creates an image by copying the system user-data
image (userdata.img), described above. At device power-off, the system persists
the user data to the image, so that it will be available in the next session. 
Note that the emulator stores the new disk image at the location/name that you
specify in <code>-data</code> startup option.</li>
</ul>

<p class="note"><strong>Note:</strong> Because of the AVD configurations used in the emulator,
each emulator instance now gets its own dedicated storage. There is no need 
to use the <code>-d</code> option to specify an instance-specific storage area.</p>

<h4>SD Card</h4>

<P>Optionally, you can create a writeable disk image that the emulator can use
to simulate removeable storage in an actual device. For information about how to create an 
emulated SD card and load it in the emulator, see <a href="#sdcard">SD Card Emulation</a></p>

<p>You can also use the android tool to automatically create an SD Card image
for you, when creating an AVD. For more information, see <a 
href="{@docRoot}guide/developing/tools/avd.html#options">Command-line options for AVDs</a>.

<a name="temporaryimages"></a>
<h3>Temporary Images</h3>

<p>The emulator creates two writeable images at startup that it deletes at
device power-off. The images are: </p>

<ul>
  <li>A writable copy of the Android system image</li>
  <li>The <code>/cache</code> partition image</li>
</ul>

<p>The emulator does not permit renaming the temporary system image or
persisting it at device power-off. </p>

<p>The <code>/cache</code> partition image is initially empty, and is used by
the browser to cache downloaded web pages and images. The emulator provides an 
<code>-cache &lt;file&gt;</code>, which specifies the name of the file at which 
to persist the <code>/cache</code> image at device power-off. If <code>&lt;file&gt;
</code> does not exist, the emulator creates it as an empty file. </p>

<p>You can also disable the use of the cache partition by specifying the
<code>-nocache</code> option at startup. </p>


<a name="emulatornetworking"></a>
<h2>Emulator Networking</h2>

<p>The emulator provides versatile networking capabilities that you can use to
set up complex modeling and testing environments for your application. The
sections below introduce the emulator's network architecture and capabilities.
</p>

<a name="networkaddresses"></a>
<h3>Network Address Space</h3>

<p>Each instance of the emulator runs behind a virtual router/firewall service
that isolates it from your development machine's network interfaces and settings
and from the internet. An emulated device can not see your development machine
or other emulator instances on the network. Instead, it sees only that it is
connected through Ethernet to a router/firewall.</p>

<p>The virtual router for each instance manages the 10.0.2/24 network address
space &mdash; all addresses managed by the router are in the form of
10.0.2.&lt;xx&gt;, where &lt;xx&gt; is a number. Addresses within this space are
pre-allocated by the emulator/router as follows:</p>

<table>
  <tr>
    <th>Network Address</th>
    <th>Description</th>
  </tr>
  <tr>
    <td>10.0.2.1</td>
    <td>Router/gateway address </td>
  </tr>
  <tr>
    <td>10.0.2.2</td>
    <td>Special alias to your host loopback interface (i.e., 127.0.0.1 on your
development machine)</td>
  </tr>
  <tr>
    <td>10.0.2.3</td>
    <td>First DNS server</td>
  </tr>
  <tr>
    <td>10.0.2.4 / 10.0.2.5 / 10.0.2.6</td>
    <td>Optional second, third and fourth DNS server (if any) </td>
  </tr>
  <tr>
    <td>10.0.2.15</td>
    <td>The emulated device's own network/ethernet interface</td>
  </tr>
  <tr>
    <td>127.0.0.1</td>
    <td>The emulated device's own loopback interface </td>
  </tr>
</table>

<p>Note that the same address assignments are used by all running emulator
instances. That means that if you have two instances running concurrently on
your machine, each will have its own router and, behind that, each will have an
IP address of 10.0.2.15. The instances are isolated by a router and can
<em>not</em> see each other on the same network. For information about how to
let emulator instances communicate over TCP/UDP, see <a
href="#connecting">Connecting Emulator Instances</a>.</p>

<p>Also note that the address 127.0.0.1 on your development machine corresponds
to the emulator's own loopback interface. If you want to access services running
on your development machine's loopback interface (a.k.a. 127.0.0.1 on your
machine), you should use the special address 10.0.2.2 instead.</p>

<p>Finally, note that each emulated device's pre-allocated addresses are
specific to the Android emulator and will probably be very different on real
devices (which are also very likely to be NAT-ed, i.e., behind a
router/firewall)</p>

<a name="networkinglimitations"></a>
<h3>Local Networking Limitations</h3>

<p>Each emulator instance runs behind a virtual router, but unlike an actual
device connected to a physical router, the emulated device doesn't have access
to a physical network. Instead it runs as part of a normal application on your
development machine. This means that it is subject to the same networking
limitations as other applications on your machine:</p>

<ul>
  <li>Communication with the emulated device may be blocked by a firewall
program running on your machine.</li>
  <li>Communication with the emulated device may be blocked by another
(physical) firewall/router to which your machine is connected.</li>
</ul>

<p>The emulator's virtual router should be able to handle all outbound TCP and
UDP connections/messages on behalf of the emulated device, provided your
development machine's network environment allows it to do so. There are no
built-in limitations on port numbers or ranges except the one imposed by your
host operating system and network.</p>

<p>Depending on the environment, the emulator may not be able to support other
protocols (such as ICMP, used for "ping") might not be supported. Currently, the
emulator does not support IGMP or multicast. </p>

<a name="redirections"></a>
<h3>Using Network Redirections</h3>

<p>To communicate with an emulator instance behind its virtual router, you need
to set up network redirections on the virtual router. Clients can then connect
to a specified guest port on the router, while the router directs traffic
to/from that port to the emulated device's host port. </p>

<p>To set up the network redirections, you create a mapping of host and guest
ports/addresses on the the emulator instance. There are two ways to set up
network redirections: using emulator console commands and using the ADB tool, as
described below. </p>

<a name="consoleredir"></a>
<h4>Setting up Redirections through the Emulator Console</h4>

<p>Each emulator instance provides a control console the you can connect to, to
issue commands that are specific to that instance. You can use the
<code>redir</code> console command to set up redirections as needed for an
emulator instance. </p>

<p>First, determine the console port number for the target emulator instance.
For example, the console port number for the first emulator instance launched is
5554. Next, connect to the console of the target emulator instance, specifying
its console port number, as follows: </p>

<pre><code>telnet localhost 5554</code></pre>

<p>Once connected, use the <code>redir</code> command to work with redirections.
To add a redirection, use:</p>

<pre><code>add&nbsp;&lt;protocol&gt;:&lt;host-port&gt;:&lt;guest-port&gt;</code>
</pre>

<p>where <code>&lt;protocol&gt;</code> is either <code>tcp</code> or <code>udp</code>, 
and <code>&lt;host-port&gt;</code> and <code>&lt;guest-port&gt;</code> sets the 
mapping between your own machine and the emulated system, respectively. </p>

<p>For example, the following command sets up a redirection that will handle all
incoming TCP connections to your host (development) machine on 127.0.0.1:5000
and will pass them through to the emulated system's 10.0.2.15:6000.:</p>

<pre>redir add tcp:5000:6000</pre>

<p>To delete a redirection, you can use the <code>redir del</code> command. To
list all redirections for a specific instance, you can use <code>redir
list</code>. For more information about these and other console commands, see 
<a href="#console">Using the Emulator Console</a>. </p>

<p>Note that port numbers are restricted by your local environment. this typically
means that you cannot use host port numbers under 1024 without special
administrator privileges.  Also, you won't be able to set up a redirection for a
host port that is already in use by another process on your machine. In that
case, <code>redir</code> generates an error message to that effect. </p>

<a name="adbredir"></a>
<h4>Setting Up Redirections through ADB</h4>

<p>The Android Debug Bridge (ADB) tool provides port forwarding, an alternate
way for you to set up network redirections. For more information, see <a
href="{@docRoot}guide/developing/tools/adb.html#forwardports">Forwarding Ports</a> in the ADB
documentation.</p>

<p>Note that ADB does not currently offer any way to remove a redirection,
except by killing the ADB server.</p>

<a name="dns"></a>
<h3>Configuring the Emulator's DNS Settings</h3>

<p>At startup, the emulator reads the list of DNS servers that your system is
currently using. It then stores the IP addresses of up to four servers on this
list and sets up aliases to them on the emulated addresses 10.0.2.3, 10.0.2.4,
10.0.2.5 and 10.0.2.6 as needed.  </p>

<p>On Linux and OS X, the emulator obtains the DNS server addresses by parsing 
the file <code>/etc/resolv.conf</code>. On Windows, the emulator obtains the 
addresses by calling the <code>GetNetworkParams()</code> API. Note that this 
usually means that the emulator ignores the content of your "hosts" file 
(<code>/etc/hosts</code> on Linux/OS X, <code>%WINDOWS%/system32/HOSTS</code>
 on Windows).</P>

<p>When starting the emulator at the command line, you can also use the
<code>-dns-server &lt;serverList&gt;</code> option to manually specify the
addresses of DNS servers to use, where &lt;serverList&gt; is a comma-separated
list of server names or IP addresses. You might find this option useful if you
encounter DNS resolution problems in the emulated network (for example, an
"Unknown Host error" message that appears when using the web browser).</p>

<a name="proxy"></a>
<h3>Using the Emulator with a Proxy</h3>

<p>If your emulator must access the Internet through a proxy server, you can use
the <code>-http-proxy &lt;proxy&gt;</code> option when starting the emulator, to
set up the appropriate redirection. In this case, you specify proxy information
in <code>&lt;proxy&gt;</code> in one of these formats:</p>

<pre>http://&lt;machineName&gt;:&lt;port&gt;</pre>

<p>or</p>

<pre>http://&lt;username&gt;:&lt;password&gt;@&lt;machineName&gt;:&lt;port&gt;</pre>

<p>The <code>-http-proxy</code> option forces the emulator to use the specified
HTTP/HTTPS proxy for all outgoing TCP connections. Redirection for UDP is not
currently supported.</p>

<p>Alternatively, you can define the environment variable
<code>http_proxy</code> to the value you want to use for
<code>&lt;proxy&gt;</code>. In this case, you do not need to specify a value for
<code>&lt;proxy&gt;</code> in the <code>-http-proxy</code> command &mdash; the
emulator checks the value of the <code>http_proxy</code> environment variable at
startup and uses its value automatically, if defined. </p>

<p>You can use the <code>-verbose-proxy</code> option to diagnose proxy
connection problems.</p>

<a name="connecting"></a>
<h3>Interconnecting Emulator Instances</h3>

<p>To allow one emulator instance to communicate with another, you must set up
the necessary network redirections as illustrated below. </p>

<p>Assume that your environment is</p>

<ul>
  <li>A is you development machine</li>
  <li>B is your first emulator instance, running on A</li>
  <li>C is your second emulator instance, running on A too</li>
</ul>

<p>and you want to run a server on B, to which C will connect, here is how you
could set it up: </p>

<ol>
  <li>Set up the server on B, listening to
<code>10.0.2.15:&lt;serverPort&gt;</code></li>
  <li>On B's console, set up a redirection from
<code>A:localhost:&lt;localPort&gt;</code> to <code>
B:10.0.2.15:&lt;serverPort&gt;</code></li>
  <li>On C, have the client connect to <code>10.0.2.2:&lt;localPort&gt;</code></li>
</ol>

<p>For example, if you wanted to run an HTTP server, you can select
<code>&lt;serverPort&gt;</code> as 80 and <code>&lt;localPort&gt;</code> as
8080:</p>

<ul>
  <li>B listens on 10.0.2.15:80</li>
  <li>On B's console, issue <code>redir add tcp:8080:80</code></li>
  <li>C connects to 10.0.2.2:8080</li>
</ul>

<a name="calling"></a>
<h3>Sending a Voice Call or SMS to Another Emulator Instance</h3>

<p>The emulator automatically forwards simulated voice calls and SMS messages from one instance to another. To send a voice call or SMS, you use the dialer application and SMS application (if available) installed on one emulator </p>

<p>To initiate a simulated voice call to another emulator instance:</p>
<ol>
<li>Launch the dialer application on the originating emulator instance.</li>
<li>As the number to dial, enter the console port number of the instance you'd like to call. You can determine
  the console port number of the target instance by checking its window title, where the
  console port number is reported as "Android Emulator (&lt;port&gt;). </li>
<li>Press "Dial". A new inbound call appears in the target emulator instance. </li>
</ol>

<p>To send an SMS message to another emulator instance, launch the SMS application (if available). Specify the console port number of the target emulator instance as as the SMS address, enter the message text, and send the message. The message is delivered to the target emulator instance. </p>

<p>You can also connect to an emulator instance's console to simulate an incoming voice call or SMS. For more information, see <a href="#telephony">Telephony Emulation</a> and <a href="#sms">SMS Emulation</a>.

<a name="console"></a>

<h2>Using the Emulator Console</h2>

<p>Each running emulator instance includes a console facility that lets you dynamically query and control the simulated device environment. For example, you can use the console to dynamically manage port redirections and network characteristics and simulate telephony events. To access the console and enter commands, you use telnet to connect to the console's port number. </p>
<p>To connect to the console of any running emulator instance at any time, use this command: </p>

<pre>telnet localhost &lt;console-port&gt;</pre>

<p>An emulator instance occupies a pair of adjacent ports: a console port and an adb port. The port numbers differ by 1, with the adb port having the higher port number. The console of the first emulator instance running on a given machine uses console port 5554 and adb port 5555. Subsequent instances use port numbers increasing by two &mdash; for example, 5556/5557, 5558/5559, and so on. Up to 16 concurrent emulator instances can run a console facility. </p>

<p>To connect to the emulator console, you must specify a valid console port. If multiple emulator instances are running, you need to determine the console port of the emulator instance you want to connect to. You can find the instance's console port listed in the title of the instance window. For example, here's the window title for an instance whose console port is 5554:</p>

<p><code>Android Emulator (5554)</code></p>

<p>Alternatively, you can use the <code>adb devices</code> command, which prints a list of running emulator instances and their console port numbers. For more information, see <a href="{@docRoot}guide/developing/tools/adb.html#devicestatus">Querying for Emulator/Device Instances</a> in the adb documentation.</p>

<p class="note">Note: The emulator listens for connections on ports 5554-5587 and accepts connections only from localhost.</p>

<p>Once you are connected to the console, you can then enter <code>help [command]</code> to see a list of console commands and learn about specific commands. </p>

<p>To exit the console session, use <code>quit</code> or <code>exit</code>.</p>

<p>The sections below describe the major functional areas of the console.</p>

<a name="portredirection"></a>

<h3>Port Redirection</h3>
<p>You can use the console to add and remove port redirections while the emulator is running. After connecting to the console, you can manage port redirections in this way:</p>
<pre>redir &lt;list|add|del&gt; </pre>

<p>The <code>redir</code> command supports the subcommands listed in the table below. </p>

<table>
<tr>
  <th width="25%" >Subcommand
  <th width="30%" >Description</th>
  <th width="35%">Comments</th>
</tr>
  
  <tr>
    <td><code>list</code></td>
    <td>List the current port redirections.</td>
  <td>&nbsp;</td>
  </tr>

  
<tr>
 <td><code>add&nbsp;&lt;protocol&gt;:&lt;host-port&gt;:&lt;guest-port&gt;</code></td>
  <td>Add a new port redirection.</td>
<td><ul><li>&lt;protocol&gt; must be either &quot;tcp&quot; or &quot;udp&quot;</li>
<li>&lt;host-port&gt; is the port number to open on the host</li>
<li>&lt;guest-port&gt; is the port number to route data to on the emulator/device</li>
</ul></td>
</tr>
<tr>
  <td><code>del &lt;protocol&gt;:&lt;host-port&gt;</code></td>
  <td>Delete a port redirection.</td>
<td>See above for meanings of &lt;protocol&gt; and &lt;host-port&gt;.</td>
</tr>
</table>

<a name="geo"></a>
<h3>Geo Location Provider Emulation</h3>

<p>The console provides commands to let you set the geo position used by an emulator emulated device.
You can use the <code>geo</code> command to send a simple GPS fix to the emulator, without needing to
use NMEA 1083 formatting. The usage for the command is:</p>

<pre>geo &lt;fix|nmea&gt;</pre>

<p>The <code>geo</code> command supports the subcommands listed in the table below.</p>

<table>
<tr>
  <th width="25%" >Subcommand
  <th width="30%" >Description</th>
  <th width="35%">Comments</th>
</tr>
  
  <tr>
    <td><code>fix &lt;longitude&gt; &lt;latitude&gt; [&lt;altitude&gt;]</code></td>
    <td>Send a simple GPS fix to the emulator instance.</td>
  <td>Specify longitude and latitude in decimal degrees. Specify altitude in meters.</td>
  </tr>
<tr>
  <td><code>nmea &lt;sentence&gt;</code></td>
  <td>Send an NMEA 0183 sentence to the emulated device, as if it were sent from an emulated GPS modem.</td>
<td><code>&lt;sentence&gt;</code> must begin with '$GP'. Only '$GPGGA' and '$GPRCM' sentences are currently supported.</td>
</tr>
</table>

<p>You can issue the <code>geo</code> command to fix the GPS location as soon as an emulator instance is running.
The emulator creates a mock location provider that sends it to GPS-aware applications as soon as they start and
register location listeners. Any application can query the location manager to obtain the current GPS fix for the
emulated device by calling:

<pre>LocationManager.getLastKnownLocation("gps")</pre>

<p>For more information about the Location Manager, see {@link android.location.LocationManager} and its methods.</p>

<a name="events"></a>
<h3>Hardware Events Emulation</h3>

<p>You can use the <code>event</code> command to send various events to the emulator.The usage for the command is: </p>

<pre>event &lt;send|types|codes|text&gt;</pre>

<p>The <code>event</code> command supports the subcommands listed in the table below. </p>

<table>
<tr>
  <th width="25%" >Subcommand
  <th width="30%" >Description</th>
  <th width="35%">Comments</th>
</tr>
  
  <tr>
    <td><code>send &lt;type&gt;:&lt;code&gt;:&lt;value&gt; [...]</code></td>
    <td>Send one or more events to the Android kernel. </td>
  <td>You can use text names or integers for <code>&lt;type&gt;</code> and <code>&lt;value&gt;</code>.</td>
  </tr>
<tr>
  <td><code>types</code></td>
  <td>List all <code>&lt;type&gt;</code> string aliases supported by the <code>event</code> subcommands.</td>
<td>&nbsp;</td>
</tr>
<tr>
  <td><code>codes &lt;type&gt;</code></td>
  <td>List all <code>&lt;codes&gt;</code> string aliases supported by the <code>event</code> 
   subcommands for the specified <code>&lt;type&gt;</code>.</td>
<td>&nbsp;</td>
</tr>
<tr>
  <td><code>event text &lt;message&gt;</code></td>
  <td>Simulate keypresses to send the specified string of characters as a message,</td>
<td>The message must be a UTF-8 string. Unicode posts will be reverse-mapped according to the current device keyboard. Unsupported characters will be discarded silently.</td>
</tr>
</table>

<a name="power"></a>
<h3>Device Power Characteristics</h3>

<p>You can use the <code>power</code> command to control the simulated power state of the emulator instance.The usage for the command is: </p>

<pre>power &lt;display|ac|status|present|health|capacity&gt;</pre>

<p>The <code>event</code> command supports the subcommands listed in the table below. </p>

<table>
<tr>
  <th width="25%" >Subcommand </th>
  <th width="30%" >Description</th>
  <th width="35%">Comments</th>
</tr>
  
  <tr>
    <td><code>display</code></td>
    <td>Display battery and charger state.</td>
  <td>&nbsp;</td>
  </tr>
<tr>
  <td><code>ac &lt;on|off&gt;</code></td>
  <td>Set AC charging state to on or off. </td>
<td>&nbsp;</td>
</tr>
<tr>
  <td><code>status &lt;unknown|charging|discharging|not-charging|full&gt;</code></td>
  <td>Change battery status as specified.</td>
<td>&nbsp;</td>
</tr>

<tr>
  <td><code>present &lt;true|false&gt;</code></td>
  <td>Set battery presence state.</td>
<td>&nbsp;</td>
</tr>
<tr>
  <td><code>health &lt;unknown|good|overheat|dead|overvoltage|failure&gt;</code></td>
  <td>Set battery health state.</td>
<td>&nbsp;</td>
</tr>
<tr>
  <td><code>power health &lt;percent&gt;</code></td>
  <td>Set remaining battery capacity state (0-100).</td>
<td>&nbsp;</td>
</tr>
</table>

<a name="netstatus"></a>
<h3>Network Status</h3>

<p>You can use the console to check the network status and current delay and speed characteristics. To do so, connect to the console and use the <code>netstatus</code> command. Here's an example of the command and its output. </p>

<pre>network status
</pre>

<a name="netdelay"></a>
<h3>Network Delay Emulation</h3>

<p>The emulator lets you simulate various network latency levels, so that you can test your application in an environment more typical of the actual conditions in which it will run. You can set a latency level or range at emulator startup or you can use the console to change the latency dynamically, while the application is running in the emulator. </p>
<p>To set latency at emulator startup, use the  <code>-netdelay</code> emulator option with a supported <code>&lt;delay&gt;</code> value, as listed in the table below. Here are some examples:</p>
<pre>emulator -netdelay gprs
emulator -netdelay 40 100</pre>

<p>To make dynamic changes to  network delay while the emulator is running, connect to the console and use the <code>netdelay</code> command with a supported <code>&lt;delay&gt;</code> value from the table below.  </p>

<pre>network delay gprs</pre>

<p>The format of network &lt;delay&gt; is one of the following (numbers are milliseconds):</p>

<table style="clear:right;width:100%;">
<tr>
  <th width="30%" >Value</th>
  <th width="35%" >Description</th><th width="35%">Comments</th></tr>
  
  <tr><td><code>gprs</code></td><td>GPRS</td>
  <td>(min 150, max 550)</td>
  </tr>

<tr><td><code>edge</code></td><td>EDGE/EGPRS</td>
<td>(min 80, max 400)</td>
</tr>
<tr><td><code>umts</code></td><td>UMTS/3G</td>
<td>(min 35, max 200)</td>
</tr>
<tr><td><code>none</code></td><td>No latency</td><td>(min 0, max 0)</td></tr>
<tr><td><code>&lt;num&gt;</code></td>
<td>Emulate an exact latency  (milliseconds).</td>
<td>&nbsp;</td></tr>
<tr><td><code>&lt;min&gt;:&lt;max&gt;</code></td>
<td>Emulate an specified latency range (min, max milliseconds).</td>
<td>&nbsp;</td></tr>
</table>

<a name="netspeed"></a>
<h3>Network Speed Emulation</h3>

<p>The emulator also lets you simulate various network transfer rates. 
You can set a transfer rate or range at emulator startup or you can use the console to change the rate dynamically,
while the application is running in the emulator.</p>

<p>To set the network speed at emulator startup, use the  <code>-netspeed</code> emulator option with a supported
<code>&lt;speed&gt;</code> value, as listed in the table below. Here are some examples:</p>
<pre>emulator -netspeed gsm
emulator -netspeed 14.4 80</pre>

<p>To make dynamic changes to  network speed while the emulator is running, connect to the console and use the <code>netspeed</code> command with a supported <code>&lt;speed&gt;</code> value from the table below.  </p>

<pre>network speed 14.4 80</pre>

<p>The format of network <code>&lt;speed&gt;</code> is one of the following (numbers are
kilobits/sec):</p>
<table style="clear:right;width:100%;">
<tbody>
<tr>
  <th width="30%">Value</th>
  <th width="35%">Description</th><th width="35%">Comments</th></tr>
  
  <tr>
  <td><code>gsm</code></td>
  <td>GSM/CSD</td><td>(Up: 14.4, down: 14.4)</td></tr>
<tr>
  <td><code>hscsd</code></td>
  <td>HSCSD</td><td>(Up: 14.4, down: 43.2)</td></tr>
<tr>
  <td><code>gprs</code></td>
  <td>GPRS</td><td>(Up: 40.0, down: 80.0)</td></tr>
<tr>
  <td><code>edge</code></td>
  <td>EDGE/EGPRS</td>
  <td>(Up: 118.4, down: 236.8)</td>
</tr>
<tr>
  <td><code>umts</code></td>
  <td>UMTS/3G</td><td>(Up: 128.0, down: 1920.0)</td></tr>
<tr>
  <td><code>hsdpa</code></td>
  <td>HSDPA</td><td>(Up: 348.0, down: 14400.0)</td></tr>
<tr>
  <td><code>full</code></td>
  <td>no limit</td><td>(Up: 0.0, down: 0.0)</td></tr>
<tr>
  <td><code>&lt;num&gt;</code></td>
  <td>Set an exact rate used for both upload and download.</td><td></td></tr>
<tr>
  <td><code>&lt;up&gt;:&lt;down&gt;</code></td>
  <td>Set exact rates for upload and download separately.</td><td></td></tr>
</table>

<a name="telephony"></a>

<h3>Telephony Emulation</h3>

<p>The Android emulator includes its own GSM emulated modem that lets you simulate telephony functions in the emulator. For example, you can simulate inbound phone calls and establish/terminate data connections. The Android system handles simulated calls exactly as it would actual calls. The emulator does not support call audio in this release. </p>
<p>You can use the console to access the emulator's telephony functions. After connecting to the console, you can use</p>
<pre>gsm &lt;call|accept|busy|cancel|data|hold|list|voice|status&gt; </pre>
<p>to invoke telephony functions. </p>
<p>The <code>gsm</code> command supports the subcommands listed in the table below. </p>
<table>
  <tr>
    <th>Subcommand </th>
    <th width="25%">Description</th>
    <th>Comments</th>
  </tr>
  <tr>
    <td><code>call &lt;phonenumber&gt;</code></td>
    <td>Simulate an inbound phone call from &lt;phonenumber&gt;.</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td><code>accept &lt;phonenumber&gt;</code></td>
    <td>Accept an inbound call from &lt;phonenumber&gt; and change the call's state "active".</td>
    <td>You can change a call's state to "active" only if its current state is "waiting" or "held".</td>
  </tr>
  <tr>
    <td><code>busy &lt;phonenumber&gt;</code></td>
    <td>Close an outbound call to &lt;phonenumber&gt; and change the call's state to "busy".</td>
    <td>You can change a call's state to "busy" only if its current state is "waiting".</td>
  </tr>
  <tr>
    <td><code>cancel &lt;phonenumber&gt;</code></td>
    <td>Terminate an inbound or outbound phone call to/from &lt;phonenumber&gt;.</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td><code>data &lt;state&gt;</code></td>
    <td>Change the state of the GPRS data connection to &lt;state&gt;.</td>
    <td>Supported &lt;state&gt; values are:<br />
    <ul>
          <li><code>unregistered</code> -- No network available</li>
          <li><code>home</code> -- On local network, non-roaming</li>
          <li><code>roaming</code> -- On roaming network</li>
          <li><code>searching</code> -- Searching networks</li>
          <li><code>denied</code> -- Emergency calls only</li>
          <li><code>off</code> -- Same as 'unregistered'</li>
      <li><code>on</code> -- same as 'home'</li>
    </ul>
          </td>
  </tr>
  <tr>
    <td><code>hold</code></td>
    <td>Change the state of a call to "held". </td>
    <td>You can change a call's state to "held" only if its current state is	 "active" or "waiting". </td>
  </tr>
  <tr>
    <td><code>list</code></td>
    <td>List all inbound and outbound calls and their states.</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td><code>voice &lt;state&gt;</code></td>
    <td>Change the state of the GPRS voice connection to &lt;state&gt;.</td>
    <td>Supported &lt;state&gt; values are:<br />
    <ul>
    <li><code>unregistered</code> -- No network available</li>
    <li><code>home</code> -- On local network, non-roaming</li>
    <li><code>roaming</code> -- On roaming network</li>
    <li><code>searching</code> -- Searching networks</li>
    <li><code>denied</code> -- Emergency calls only</li>
    <li><code>off</code> -- Same as 'unregistered'</li>
    <li><code>on</code> -- Same as 'home'</li>
    </ul>
    </td>
  </tr>

  <tr>
    <td><code>status</code></td>
    <td>Report the current GSM voice/data state.</td>
    <td>Values are those described for the <code>voice</code> and <code>data</code> commands.</td>
  </tr>
</table>

<a name="sms"></a>

<h3>SMS Emulation</h3>

<p>The Android emulator console lets you generate an SMS message and direct it to an emulator instance. Once you connect to an emulator instance, you can generate an emulated incoming SMS using this command:</p>

<pre>sms send &lt;senderPhoneNumber&gt; &lt;textmessage&gt;</pre>

<p>where <code>&lt;senderPhoneNumber&gt;</code> contains an arbitrary numeric string. </p>

<p>The console forwards the SMS message to the Android framework, which passes it through to an application that handles that message type. </p>

<a name="vm"></a>

<h3>VM State</h3>

<p>You can use the <code>vm</code> command to control the VM on an emulator instance.The usage for the command is: </p>

<pre>vm &lt;start|stop|status&gt;</pre>

<p>The <code>vm</code> command supports the subcommands listed in the table below. </p>

<table>
<tr>
  <th width="25%" >Subcommand </th>
  <th width="30%" >Description</th>
  <th width="35%">Comments</th>
</tr>
<tr>
    <td><code>start</code></td>
    <td>Start the VM on the instance. </td>
  <td>&nbsp;</td>
</tr>
<tr>
    <td><code>stop</code></td>
    <td>Stop the VM on the instance. </td>
  <td>&nbsp;</td>
</tr>
<tr>
    <td><code>start</code></td>
    <td>Display the current status of the VM (running or stopped). </td>
  <td>&nbsp;</td>
</tr>
</table>


<a name="window"></a>

<h3>Emulator Window</h3>

<p>You can use the <code>window</code> command to manage the emulator window. The usage for the command is: </p>

<pre>window &lt;scale&gt;</pre>

<p>The <code>vm</code> command supports the subcommands listed in the table below. </p>

<table>
<tr>
  <th width="25%" >Subcommand
  <th width="30%" >Description</th>
  <th width="35%">Comments</th>
</tr>
<tr>
    <td><code>scale &lt;scale&gt;</code></td>
    <td>Scale the emulator window.</td>
  <td>&lt;scale&gt; must be a number between 0.1 and 3 that describes the desired scaling factor. You can 
  also specify scale as a DPI value if you add the suffix "dpi" to the scale value. A value of "auto" 
  tells the emulator to select the best window size.</td>
</tr>
</table>


<a name="terminating"></a>

<h3>Terminating an Emulator Instance</h3>

<p>You can terminate an emulator instance through the console, using the <code>kill</code> command.</p>


<a name="skins"></a>

<h2>Using Emulator Skins</h2>

<p>The Android SDK includes several Emulator skins that you can use to control the resolution and density of the emulated device's screen. To select a specific skin for running the emulator, create an AVD that uses that skin. Please do not use deprecated emulator options such as <code>-skin</code> to control the skin used by an emulator instance. For more information about AVDs, see <a
href="{@docRoot}guide/developing/tools/avd.html">Android Virtual Devices</a>.  </p>


<a name="multipleinstances"></a>

<h2>Running Multiple Emulator Instances</h2>

<p>Through the AVDs configurations used by the emulator, you can run multiple
instances of the emulator concurrently, each with its own AVD configuration and
storage area for user data, SD card, and so on. You no longer need to use the
<code>-d</code> option when launching the emulator, to point to an
instance-specific storage area. </p>

<a name="apps"></a>

<h2>Installing Applications on the Emulator</h2>

<p>If you don't have access to Eclipse or the ADT Plugin, you can install 
your application on the emulator <a href="{@docRoot}guide/developing/tools/adb.html#move">using 
the adb utility</a>. Before installing the application, you need to package it 
in a .apk file using the <a href="{@docRoot}guide/developing/tools/aapt.html">Android Asset Packaging Tool</a>. 
Once the application is installed, you can start the emulator from the command 
line, as described in this document, using any startup options necessary. 
When the emulator is running, you can also connect to the emulator instance's 
console to issue commands as needed.</p>

<p>As you update your code, you periodically package and install it on the emulator. 
The emulator preserves the application and its state data across restarts, 
in a user-data disk partition. To ensure that the application runs properly 
as you update it, you may need to delete the emulator's user-data partition. 
To do so, start the emulator with the <code>-wipe-data</code> option. 
For more information about the user-data partition and other emulator storage, 
see <a href="#diskimages">Working with Emulator Disk Images</a>.</p>

<a name="sdcard"></a>
<a name="creating"></a>

<h2>SD Card Emulation</h2>

<p>You can create a disk image and then load it to the emulator at startup, to
simulate the presence of a user's SD card in the device. To do this, you can use
the android tool to create a new SD card image with a new AVD, or you can use
the mksdcard utility included in the SDK. </p>

<p>The sections below describe how to create an SD card disk image, how to copy
files to it, and how to load it in the emulator at startup. </p>

<p>Note that you can only load disk image at emulator startup. Similarly, you
can not remove a simulated SD card from a running emulator. However, you can
browse, send files to, and copy/remove files from a simulated SD card either
with adb or the emulator. </p>

<p>The emulator supports emulated SDHC cards, so you can create an SD card image
of any size up to 128 gigabytes.</p>

<h3 id="creatinga">Creating an SD card image using the android tool</h3>

<p>The easiest way to create a new SD card is to use the android tool. When
creating an AVD, you simply specify the <code>-c</code> option, like this: </p>

<pre>android create avd -n &lt;avd_name&gt; -t &lt;targetID&gt; -c &lt;size&gt;[K|M]</pre>

<p>You can also use the <code>-c</code> option to specify a path to an SD card
image to use in the new AVD. For more information, see <a
href="{@docRoot}guide/developing/tools/avd.html">Android Virtual Devices</a>.
</p>

<h3 id="creatingm">Creating an SD card image using mksdcard</h3>

<p>You can use the mksdcard tool, included in the SDK, to create a FAT32 disk
image that you can load in the emulator at startup. You can access mksdcard in
the tools/ directory of the SDK and create a disk image like this: </p>

<pre>mksdcard &lt;size&gt; &lt;file&gt;</pre>

<p>For example:</p>

<pre>mksdcard 1024M sdcard1.iso</pre>

<p>For more information, see <a href="{@docRoot}guide/developing/tools/othertools.html">Other Tools</a>. </p>

<a name="copying"></a>
<h3>Copying Files to a Disk Image</h3>

<p>Once you have created the disk image, you can copy files to it prior to
loading it in the emulator. To copy files, you can mount the image as a loop
device and then copy the files to it, or you can use a utility such as mtools to
copy the files directly to the image. The mtools package is available for Linux,
Mac, and Windows.</p>

<a name="loading"></a>
<a name="step3" id="step3"></a>

<h3>Loading the Disk Image at Emulator Startup</h3>

<p>By default, the emulator loads the SD card image that is stored with the active
AVD (see the <code>-avd</code> startup option).</p>

<p>Alternatively, you ca start the emulator with the
<code>-sdcard</code> flag and specify the name and path of your image (relative
to the current working directory): </p>

<pre>emulator -sdcard &lt;filepath&gt;</pre>

<a name="troubleshooting"></a>

<h2>Troubleshooting Emulator Problems</h2>

<p>The adb utility sees the emulator as an actual physical device. For this reason, you might have to use the -d flag with some common adb commands, such as <code>install</code>. The -d flag lets you specify which of several connected devices to use as the target of a command. If you don't specify -d, the emulator will target the first device in its list. For more information about adb, see <a href="{@docRoot}guide/developing/tools/adb.html">Android Debug Bridge</a>.</p>

<p>For emulators running on Mac OS X, if you see an error &quot;Warning: No DNS servers found&quot; when starting the emulator, check to see whether you have an <code>/etc/resolv.conf</code> file. If not, please run the following line in a command window:</p>
    <pre>ln -s /private/var/run/resolv.conf /etc/resolv.conf</pre>

<p>See <a href="{@docRoot}resources/faq/index.html">Frequently Asked Questions</a> for more troubleshooting information. </p>

<a name="limitations"></a>
    <h2>Emulator Limitations</h2>
    <p>In this release, the  limitations of the emulator include: </p>
    <ul>
      <li>No support for placing or receiving actual phone calls. You can simulate phone calls (placed and received) through the emulator console, however. </li>
      <li>No support for USB connections</li>
      <li>No support for camera/video capture (input).</li>
      <li>No support for device-attached headphones</li>
      <li>No support for determining connected state</li>
      <li>No support for determining battery charge level and AC charging state</li>
      <li>No support for determining SD card insert/eject</li>
      <li>No support for Bluetooth</li>
    </ul>