准备材料
一台联网的linux或者mac
下载repo工具
命令:
mkdir ~/bin
PATH=~/bin:$PATH
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
chmod a+x ~/bin/repo
修改地址
由于google被墙了,建议使用清华源
方法一:把下面这条命令复制到初始化环境变量的脚本中,linux:~/.bashrc mac:~/.bash_profile 文件中
export REPO_URL='https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/'
方法二:修改repo脚本,把url替换成清华源的
vi ~/bin/repo
把 REPO_URL后面地址替换成:
'https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/'
保存退出即可。
初始化仓库
进入保存Android源码的文件夹,没有就创建一个 mkdir 文件夹名称
初始化仓库:
repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-7.1.1_r28
-b选项是指定Android的版本,可以下载自己想要的版本,版本连接:https://source.android.com/source/build-numbers#source-code-tags-and-builds
初始化完成后会在代码的根目录下有一个.repo的文件夹
注意:如果执行repo命令报错repo不认识,可以把repo导入到环境变量中 PATH=~/bin:$PATH,或者是用路径执行:~/bin/repo init ...
同步代码
repo sync -c --no-tags -j4
同步完成后,整个安卓的源码就下载完成了
注意:只需要看framework代码的童鞋不需要同步整套代码,只需同步framework仓即可。
repo sync frameworks/base/ -c --no-tags -j4