通过清华TUNA镜像源下载Android源码

【通过清华TUNA镜像源下载Android源码】非淡泊无以明志,非宁静无以致远。这篇文章主要讲述通过清华TUNA镜像源下载Android源码相关的知识,希望能为你提供帮助。
建议参考官方教程:https://mirrors.tuna.tsinghua.edu.cn/help/AOSP/以下为自己测试时执行的步骤: 1、下载repo $ curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo -o repo2、修改权限并拷贝到 PATH 中 $ chmod a+x repo $ sudo mv repo /usr/bin/3、使用tuna镜像源更新(需重启模拟终端) $ vi ~/.bashrc export REPO_URL=‘https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/‘4、初始化仓库 $ repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest a.过程中如遇到Git错误,设置git config即可 git config --global user.email "[email  protected]" git config --global user.name "Your Name" b.如果需要指定android版本 $ repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android版本5、同步源码(代码比较大,耗时比较久) $ repo sync

    推荐阅读