Android源码下载
Posted dfqin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android源码下载相关的知识,希望对你有一定的参考价值。
官网有下载地址和步骤,但是需要翻墙,搞了太亚马逊服务器配了梯子,可以很快就不能用了,网上单独购买的VPN都有流量现在,所以后面使用清华的镜像搞定,在此做个记录:
1、先进入清华镜像网站 https://mirrors.tuna.tsinghua.edu.cn/help/AOSP/
2、网站上已经有操作步骤,我们按照上面步骤操作,第一步是安装repo,但是我发现后面下载有问题,所以安装网页的提示使用了repo镜像 https://mirrors.tuna.tsinghua.edu.cn/help/git-repo/
//下载
curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo -o repo
chmod +x repo
//配置使用清华镜像
export REPO_URL='https://mirrors.tuna.tsinghua.edu.cn/git/git-repo'
3、选用了传统的初始化方法,初始化特定版本仓库,先创建代码目录,在目录中执行下面命令,具体的版本号可以在官网查看(没梯子的又尴尬了) https://source.android.com/source/build-numbers#source-code-tags-and-builds
repo init -u https://mirrors.tuna.tsinghua.edu.cn/git/AOSP/platform/manifest -b android-4.0.1_r1
4、同步源码,差不多等半个多小时就下载好了
repo sync
参考:
http://t.zoukankan.com/Leo_wl-p-5217770.html
以上是关于Android源码下载的主要内容,如果未能解决你的问题,请参考以下文章