系统相关
首页 > 系统相关> > windows下载Android源码

windows下载Android源码

作者:互联网

1.查看最新源码分支

git clone https://aosp.tuna.tsinghua.edu.cn/platform/manifest
cd .\manifest\
git tag
git checkout android-12.0.0_r2

2.克隆所有仓库

python sync.py

import xml.dom.minidom
import os
from subprocess import call
 
# 保存源码路径
rootdir = "C:/Users/wdp/Desktop/source/android-12.0.0_r2"
 
# git路径
git = "C:/Program Files/Git/bin/git.exe"
 
dom = xml.dom.minidom.parse("C:/Users/wdp/Desktop/source/manifest/default.xml")
root = dom.documentElement
 
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)

标签:node,git,dom,windows,rootdir,源码,Android,os
来源: https://blog.csdn.net/wangadping/article/details/120734239