Chinaunix首页 | 论坛 | 博客
  • 博客访问: 467792
  • 博文数量: 153
  • 博客积分: 3010
  • 博客等级: 中校
  • 技术积分: 1724
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-08 11:55
文章分类

全部博文(153)

文章存档

2011年(1)

2010年(55)

2009年(88)

2008年(9)

我的朋友

分类: LINUX

2009-01-13 17:27:25


Since downloading the newly release Android code 'cupcake' several days ago, the new features and functionalities are not experienced yet. After building successfully yesterday and attempting to launch the emulator, emulator reported that 'you must specify a VM name'.

Via searching the Android developer forum and other web resources, only one answer:
 # make sdk;
 # cd sdk/tools
 # android --create --target 1 --name myvm
 # emulator -vm myvm

Unfortunately, it failed as no video input devices when typing the commands above. Maybe the emulator can be launched successfully in someone's PC.

No other choices, I searched again in the Android developer forum and luckily found another solution:
 # . ./build/envsetup.sh
 # lunch 1
 # make
 # emulator

Emulator was launched finally. Let's continue to experience the new features and functionalities ......

阅读(683) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

barblus2009-02-13 13:52:15

why "lunch 1", can you tell me ? thanks