美文网首页
aosp源码下载

aosp源码下载

作者: zch4wb | 来源:发表于2020-05-28 23:43 被阅读0次

    repo管理的manifest总库,可以查git仓库有哪些
    https://android.googlesource.com/platform/manifest

    国内镜像
    git://mirrors.ustc.edu.cn/aosp/platform/manifest
    https://aosp.tuna.tsinghua.edu.cn/platform/manifest

    分支名查询地址
    https://source.android.com/setup/start/build-numbers#source-code-tags-and-builds

    变换方法
    https://android.googlesource.com/platform/frameworks/base

    直接一步到位,命令简单,容易中途失败

    git clone -b android-8.0.0_r46 https://aosp.tuna.tsinghua.edu.cn/platform/frameworks/base
    

    多步法,git协议头速度快,fetch断了可以断点续传

    mkdir aosp
    cd aosp
    
    mkdir frameworks\base
    cd frameworks\base
    git init
    git remote add origin git://mirrors.ustc.edu.cn/aosp/platform/frameworks/base
    git fetch origin android-8.0.0_r46
    
    git checkout -b b8.0.0_r46 FETCH_HEAD
    

    相关文章

      网友评论

          本文标题:aosp源码下载

          本文链接:https://www.haomeiwen.com/subject/xiltzhtx.html