【Android安全】Windows 环境下载 AOSP 源码

本文介绍了如何在Windows系统中,通过Python脚本自动克隆AndroidOpenSourceProject(AOSP)的manifest项目,并支持不同源地址。作者指导读者设置Git路径,解析XML配置,实现多分支的源代码下载。
摘要由CSDN通过智能技术生成

准备环境
安装 git
安装 Python
硬盘剩余容量最好大于 800G

在这里插入图片描述

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

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

在这里插入图片描述

这时 目录下会出现一个 manifest 目录

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

cd manifest
// 使用 git branch -a 查看所有分支,找到想要的分支
git branch -a
// 这里以android-14.0.0_r9 为例
git checkout android-14.0.0_r9 

在这里插入图片描述
在这里插入图片描述
使用 Python 执行脚本进行源代码下载
将下面的代码复制,创建文件 python_download.py,进行对应修改,并保存。

import xml.dom.minidom
import os
from subprocess import call
 
# 1. 修改为源码要保存的路径
rootdir = "G:/AOSP_source/AOSP_14.0.0_r9"
 
# 2. 设置 git 安装的路径
git = "D:/Academic/Git/program/bin/git.exe"

# 3. 修改为第一步中 manifest 中 default.xml 保存的路径
dom = xml.dom.minidom.parse("G:/AOSP_source/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)

执行 Python 脚本,开始下载

python python_download.py

在这里插入图片描述


参见:https://github.com/jeanboydev/Android-ReadTheFuckingSourceCode/blob/master/article/android/framework/Android-Windows%E7%8E%AF%E5%A2%83%E4%B8%8B%E8%BD%BD%E6%BA%90%E7%A0%81.md

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值