前言

Android 官网(该方法不适合 Windows 渠道):source.android.com/source/down…

(补白自 2021 年 6 月 22 日起,安卓操作系统不再支持在 Windows 或 MacOS 上进行构建,如果要编译源码推荐先装置Ubuntu系统)

可是我就想在 Windows 系统下 看看源代码,当然可以!

准备环境

  1. 装置 git
  2. 装置 Python
  3. 自备梯子
  4. 硬盘剩下容量最好大于 150G

1. 装置 git

官网:git-scm.com/downloads/

图形化东西:tortoisegit.org/

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

2. 装置 Python

官网:www.python.org/downloads/

装置参阅:jingyan.baidu.com/article/c91…

只需要装置好运转环境即可

3. 自备梯子

没有梯子?那就运用清华源: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

Windows 环境下载 Android 12源码

这时 E:/androidSourceCode/ 目录下会呈现一个 manifest 目录,进入此目录,里面除了 git 的装备目录外,clone 下来了一个 default.xml 文件。

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

去这儿source.android.com/source/buil…

找到想要的版别分支,并仿制。

Windows 环境下载 Android 12源码

cd manifest
//没有梯子,运用 git branch -a 查看所有分支,找到想要的分支
git branch -a
git checkout android-12.0.0_r34 //这儿以 12.0 最终一个版别下载

Windows 环境下载 Android 12源码

Windows 环境下载 Android 12源码

3. 运用 Python 履行脚本进行源代码下载

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

import xml.dom.minidom
import os
from subprocess import call
# 1. 修改为源码要保存的途径
rootdir = "E:/androidSourceCode/Android12"
# 2. 设置 git 装置的途径
git = "C:/Develop/Git/bin/git.exe"
# 3. 修改为第一步中 manifest 中 default.xml 保存的途径
dom = xml.dom.minidom.parse("D:/androidSourceCode/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 客户端

Windows 环境下载 Android 12源码

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

Windows 环境下载 Android 12源码

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

Windows 环境下载 Android 12源码

静静地等待下载完成吧。(我大约下载了一天一夜 ,12源码大约170G)