安装晚cygwin后,运行它。会出现一个类linux的环境。输入
$mkdir /home/android //创建工作目录
$cd /home/android
$mkdir bin
//下载安装repo版本管理工具:
$curl http://android.git.kernel.org/repo> /home/android /bin/repo
$cd bin
$chmod a+x repo
准备下载Android:
$cd /home/android
$python ./bin/repo init -u git://android.git.kernel.org/platform/manifest.git –b cupcake
$git config --global user.email "xxxxx@xxxxxxx"
$git config --global user.name "xxxxxx"
邮箱地址填有效邮箱即可,我试过,其实这步跳过也没有问题。
//下载源码:
$python repo sync
唯一和linux下不同的地方是该环境似乎没有内嵌支持python,因此需要用命令行python来调用repo脚本
时间:2009-05-29 22:42
来源:it168
作者:it168
原文链接