Android 源码下载
-
Android JDK安装;
-
命令行运行下面命令:
mkdir ~/bin PATH=~bin:$PATH curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo chmod a+x ~bin/repo
-
修改REPO_URL为清华大学镜像:
将~/bin/repo文件中 REPO_URL = 'https://gerrit.googlesource.com/git-repo' 替换为 REPO_URL = 'https://gerrit-googlesource.lug.ustc.edu.cn/git-repo'
-
初始化Repo Client:
mkdir WORK_DIR cd WORK_DIR repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-6.0.1_r17
-
下载代码:
repo sync
由于下载过程时间较长且经常中断,建议使用下面repo_sync.sh脚本:
repo sync while [ $? -ne 0 ] do repo sync done
-
漫长等待.....直到全部下载完成。
网友评论