Windows 环境下载 Android 源码

前言

Android 官网(该方式不适合 Windows 平台):https://source.android.com/source/downloading.html

可是我就想在 Windows 中使用 Source Insight 看看源代码,当然可以!

准备环境

  1. 安装 git
  2. 安装 Python
  3. 自备梯子
  4. 硬盘剩余容量最好大于 100G

1. 安装 git

官网:https://git-scm.com/downloads/

图形化工具:https://tortoisegit.org/

什么?不会安装 git,那还看什么源码!自行百度!

2. 安装 Python

官网:https://www.python.org/downloads/

安装参考:http://jingyan.baidu.com/article/c910274be14d64cd361d2dd8.html

只需要安装好运行环境即可

3. 自备梯子

没有梯子?那就使用清华源:https://mirrors.tuna.tsinghua.edu.cn/help/AOSP/

下载源码

1. 打开 Git Bash,用 git 克隆源代码仓库

git clone https://android.googlesource.com/platform/manifest.git//没有梯子使用清华源git clone https://aosp.tuna.tsinghua.edu.cn/platform/manifest.git

这时 D:/android_source_code/ 目录下会出现一个 manifest 目录,进入此目录,里面除了 git 的配置目录外,clone 下来了一个 default.xml 文件。

2. 切换到想要的源码版本分支

去这里 https://source.android.com/source/build-numbers.html#source-code-tags-and-builds

找到想要的版本分支,并复制。

cd manifest//没有梯子,使用 git branch -a 查看所有分支,找到想要的分支git branch -agit checkout android-6.0.1_r79 //这里以 6.0 最后一个版本下载

3. 使用 Python 执行脚本进行源代码下载

将下面的代码复制,创建文件 python_download.py,并保存。

import xml.dom.minidomimport osfrom subprocess import call # 1. 修改为源码要保存的路径rootdir = "D:/android_source_code/Android_6_0_1" # 2. 设置 git 安装的路径git = "C:/Develop/Git/bin/git.exe"# 3. 修改为第一步中 manifest 中 default.xml 保存的路径dom = xml.dom.minidom.parse("D:/android_source_code/manifest/default.xml")root = dom.documentElement #prefix = git + " clone https://android.googlesource.com/"# 4. 没有梯子使用清华源下载prefix = git + " clone https://aosp.tuna.tsinghua.edu.cn/"suffix = ".git"  if not os.path.exists(rootdir):      os.mkdir(rootdir)  for node in root.getElementsByTagName("project"):      os.chdir(rootdir)      d = node.getAttribute("path")      last = d.rfind("/")      if last != -1:          d = rootdir + "/" + d[:last]          if not os.path.exists(d):              os.makedirs(d)          os.chdir(d)      cmd = prefix + node.getAttribute("name") + suffix      call(cmd)

4. 执行 Python 脚本开始下载

打开 Python 客户端

打开上一步保存的 python_download.py 脚本文件


点击 Run->Run Module 来运行脚本,或直接按F5运行。

静静地等待下载完成吧。

更多文章:https://github.com/jeanboydev/Android-ReadTheFuckingSourceCode

我的公众号

欢迎你「扫一扫」下面的二维码,关注我的公众号,可以接受最新的文章推送,有丰厚的抽奖活动和福利等着你哦!?

如果你有什么疑问或者问题,可以 点击这里 提交 issue,也可以发邮件给我 [email protected]。

同时欢迎你 来一起交流学习,群里有很多大牛和学习资料,相信一定能帮助到你!

更多相关文章

  1. kotlin 配置开发环境
  2. Android应用程序安装与Launcher启动机制
  3. Android(安卓)安装时提示 INSTALL_PARSE_FAILED_MANIFEST_MALFOR
  4. [Android系列—] 1. Android(安卓)开发环境搭建与Hello World
  5. Android(安卓)Architecture Components 部分源码代码分析
  6. 使用Adobe Flash Builder Burrito创建AIR For Google Android应
  7. [Android|深度学习移植]--基于ncnn的RK3399上的mtcnn人脸检测的
  8. 【WEB服务器】i-jetty环境搭配与编译 .
  9. Android获取设备已安装的应用

随机推荐

  1. Android绘图机制与处理技巧-更新中
  2. Android(安卓)内存管理 &Memory Leak & O
  3. Android(安卓)KitKat 4.4 Wifi移植AP模式
  4. Socket Android手机客户端与PC服务端局域
  5. Android(安卓)M 新的运行时权限开发者需
  6. 学习Android的几大主攻方向
  7. Android原生分享到微博、微信等平台的实
  8. 对Android及移动互联网的大局观看法!
  9. Android壁纸机制(Android(安卓)Q与老版本
  10. Android中AsyncTask详解,源码剖析(API 23)