博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
快速下载android源码
阅读量:5897 次
发布时间:2019-06-19

本文共 852 字,大约阅读时间需要 2 分钟。

众所周知的原因,android源码被墙了,还好国内有不少镜像,这里使用清华提供的镜像.

以下内容转自:

Android 镜像使用帮助

参考 Google 教程 , https://android.googlesource.com/ 全部使用 git://aosp.tuna.tsinghua.edu.cn/android/ 代替即可。

本站资源有限,每个 IP 限制并发数为 4, 请勿使用 repo sync -j8 这样的方式同步。

替换已有的AOSP源代码的remote

如果你之前已经通过某种途径获得了AOSP的源码(或者你只是 init 这一步完成后),但是你希望以后通过TUNA同步,只需要将.repo/manifests.xml中的 aosp 这个 remote fetch 改为 git://aosp.tuna.tsinghua.edu.cn/android/

<manifest>

 

<remote name="aosp"

- fetch="https://android.googlesource.com"

+ fetch="git://aosp.tuna.tsinghua.edu.cn/android/"

review="android-review.googlesource.com" />

 

<remote name="github"

这个方法也可以用来在同步Cyanogenmod代码的时候从TUNA同步部分代码

FAQ

1. 镜像的是什么?

  • - 是按照 google 指南建立的镜像 git 仓库

2. 为何不能通过浏览器访问?

  • - 暂时没有 gitweb, 而且反正是 git bare 仓库,没有可以直接看到的内容

3. 出现curl: (22) The requested URL returned error: 404 Not Found Server does not provide clone.bundle; ignoring.怎么办?

  • - 无视即可

转载地址:http://yaasx.baihongyu.com/

你可能感兴趣的文章
前嗅ForeSpider教程:运行设置(一)
查看>>
2019
查看>>
CornerStone使用教程
查看>>
客户端检测
查看>>
python设计模式-状态模式
查看>>
Javascript 中的深浅拷贝
查看>>
Three.js 选择拾取对象学习总结
查看>>
Java多线程学习——公平锁
查看>>
【C++】 3_进化后的 const 分析
查看>>
SQLServer之通过视图修改数据
查看>>
Java基础【二】 - 值传递和引用传递
查看>>
C++ Primer 第一章 学习笔记及习题答案
查看>>
CAT 3.0 开源发布,支持多语言客户端及多项性能提升
查看>>
TypeScript踩坑(持续更新)
查看>>
LeetCode 102 ——二叉树的层次遍历
查看>>
JavaScript继承总结
查看>>
(Ajax)axios源码简析(一)——axios入口文件
查看>>
Django的 select_related 和 prefetch_related 函数对 QuerySet 查询的优化
查看>>
react性能优化
查看>>
关于如何在部署环境修改process.env & 本地测试
查看>>