当前位置:   article > 正文

Ubuntu下载Android源码_ubuntu下载android源代码

ubuntu下载android源代码

由于第三方网站的不稳定,因此下载Android源码以供日常学习。本文只为记录。

第一种方式:https://source.android.google.cn/source/downloading 使用该网站指导。

第二种方式:https://mirrors.tuna.tsinghua.edu.cn/help/AOSP/  该网站指导,相较于第一种简单一些。

下载repo:

  1. mkdir ~/bin
  2. PATH=~/bin:$PATH
  3. curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
  4. chmod a+x ~/bin/repo

如果没有curl,需要先安装curl。

执行命令:sudo apt install curl

下载代码命令:

  1. wget -c https://mirrors.tuna.tsinghua.edu.cn/aosp-monthly/aosp-latest.tar # 下载初始化包,使用清华镜像服务器
  2. tar xf aosp-latest.tar
  3. cd AOSP # 解压得到的 AOSP 工程目录
  4. # 这时 ls 的话什么也看不到,因为只有一个隐藏的 .repo 目录
  5. repo sync # 正常同步一遍即可得到完整目录
  6. # 或 repo sync -l 仅checkout代码

/usr/bin/env: "python"  sudo apt-get --reinstall install python-minimal

  1. sudo apt-get install git
  2. git config –global user.email “×××@××.com”
  3. git config –global user.name “×××”
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/649225
推荐阅读
相关标签
  

闽ICP备14008679号