Cygwin中下载Android源码步骤

1、 准备Cygwin环境 ,其中要有curl、wget、python等基本工具。

2、准备源码存放目录

mkdir  /home/android(以下都是基于这个目录操作)

cd android

mkdir bin

curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > /home/android/bin/repo    (要注意文件目录,其中https已谷歌官方的为准)

cd bin

chmod a+x repo

 python ./repo init -u https://android.googlesource.com/platform/manifest    (唯一和linux不同的地方是该环境似乎没有内嵌支持python,因此需要用命令行python来调用repo脚本。借鉴网友成果

 python ./repo init -u https://android.googlesource.com/platform/manifest -b android-4.2.1_r1.2

 python ./repo sync

参考:http://dev.10086.cn/cmdn/wiki/index.php?doc-view-3681.html

        http://blog.csdn.net/billowszpt/article/details/6290094

以下是图片

Cygwin中下载Android源码步骤_第1张图片

Cygwin中下载Android源码步骤_第2张图片


经过4,5个小时下载完毕

Cygwin中下载Android源码步骤_第3张图片

你可能感兴趣的:(cygwin,下载android源码)