简记Ubuntu下载 Android源码
Posted chaoer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简记Ubuntu下载 Android源码相关的知识,希望对你有一定的参考价值。
1.下载Ubuntu系统,推荐16.04以上版本;
2. git : 使用repo工具的时候会用到git,要预先安装git,使用命令:sudo apt-get install git
3. 安装git后,对git进行配置,设置git电子邮件和用户名
(1) git config --global user.email "你的电子邮件"
(2) git config --global user.name "你的名字"
4. 安装curl (开源文件传输工具) , 使用命令: sudo apt-get install curl -y
5. 重要环节 : 下载repo
下载repo之后,将repo的路径设为环境变量,并且将权限改成可执行
mkdir ~/bin
PATH=~/bin:$PATH
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
chmod a+x ~/bin/repo
6. 接下来新建一个目录,用于放置android源码,并进入该目录如下:
(1) mkdir android
(2) cd android
7. 使用repo初始化
repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest
如果提示无法连接到 gerrit.googlesource.com,可以编辑 ~/bin/repo,把 REPO_URL 一行替换成:
REPO_URL = ‘https://mirrors.tuna.tsinghua.edu.cn/git/git-repo‘
如果你只想下载特定的android版本,可以使用如下命令:
repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest -b Android版本 (比如:android-7.1.1_r13)
8. 下载代码,命令如下 (注:这个过程很耗时间)
repo sync
以上是关于简记Ubuntu下载 Android源码的主要内容,如果未能解决你的问题,请参考以下文章
如何使用Android Studio开发/调试Android源码
Ubuntu 18.04.1 LTS安装cocos2d-x 3.17简记