android源码下载方式
android
源码下载方式:
方式一:
1) 创建~/bin
$ mkdir ~/bin
$ PATH=~/bin:$PATH
2) 下载repo
$ curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo
$ chmod a+x ~/bin/repo
3) 创建保存Android源码文件
$ mkdir WORKING_DIRECTORY
$ cd WORKING_DIRECTORY
4) 下载Android源码(master主干)
$ repo init -u https://android.googlesource.com/platform/manifest
下载Android源码(branch分支)
$ repo init -u https://android.googlesource.com/platform/manifest -b android-4.0.1_r1
更多分支目录:
https://android.googlesource.com/platform/manifest
5) 启动同步下载
$ repo sync
上面是
官方提供
的下载方式
但最近使用这种方式出现网络连接超时,据说是被
hack
掉了
使用
git
方式下载:
git clone http://android.git.kernel.org/kernel/common.git,
最后,成功了
详见博客:
android.git.kernel.org[0:199.6.1.173]: errno=Connection refused
方式二:
把方式一的下载命令中的
git
修改为
http
(配置文件需一并修改),则可以顺利下载源码
具体修改步骤如下:
1
.
编辑~
/bin/repo
文件:
vi
~
/bin/repo
修改:REPO_URL='git://android.git.kernel.org/tools/repo.git'
改为:REPO_URL='
http
://android.git.kernel.org/tools/repo.git'
2
.
运行新的命令
repo init -u
http
://android.git.kernel.org/platform/manifest.git
3
.
修改文件~/WORKING_DIRECTORY/
.repo
/manifests/default.xml:
vi
~/WORKING_DIRECTORY/
.
repo/manifests/default.xml
修改:fetch="git://android.git.kernel.org/"
改为:fetch="
http
://android.git.kernel.org/"
4
.
运行同步命令,下载源码到本地
repo sync
成功!!!
Android —— Platform Codenames, Versions, API Levels, and NDK Releases
git
使用推荐:
VersionControl with Repo and Git
参考推荐:
Android Source Downloading and Building
(官方)
原文: android源码下载方式
版权所有: 本文系米扑博客原创、转载、摘录,或修订后发表,最后更新于 2011-09-04 11:10:54
侵权处理: 本个人博客,不盈利,若侵犯了您的作品权,请联系博主删除,莫恶意,索钱财,感谢!
转载注明: android源码下载方式 (米扑博客)