【通过清华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
推荐阅读
- Android-Java-等待唤醒机制原理
- 不使用npm eject 修改create-react-app的wepack配置less-loader
- Spring boot 梳理 -@SpringBootApplication@EnableAutoConfiguration与(@EnableWebMVCWebMvcConfigurationSu(代
- Android Dragger2快速入门浅析
- Flask第九章(特殊装饰器 @app.before_request 和 @app.after_request 以及@app.errorhandler())
- JMeter记录篇7——JMeter Http协议录制&录制手机APP脚本
- 重写apply, call, bind方法
- Android欢迎页面2秒钟后自动跳转到主页面
- Android-Java-死锁