1.下载源码
某墙的原因,这里采用的是清华大学的镜像:https://mirrors.tuna.tsinghua.edu.cn/help/AOSP/
1.1 新建用于存放下载脚本文件的目录,第一行命令创建一个名为Source的文件夹,存储所有下载的资源(强迫症,喜欢整理)
mkdir /home/user/Source
cd /home/user/Source
mkdir ~/bin
PATH=~/bin:$PATH
1.2 下载Repo
git clone https://aosp.tuna.tsinghua.edu.cn/android/git-repo.git/
cp git-repo/repo ~/bin/
1.3 修改Repo文件
gedit ~/bin/repo
REPO_URL = ‘https://gerrit.googlesource.com/git-repo’
改为
REPO_URL = ‘https://gerrit-google.tuna.tsinghua.edu.cn/git-repo’
1.4 创建用于存放Android源代码的目录
mkdir android_source
cd android_source
1.5 同步源代码,这里下载的是6.0的版本,-j4是开启4线程,设备好的同学可以设置为8线程,报错的话继续第二行命令
repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-6.0.1_r79
repo sync -j4
p.s:由于首次同步需要下载 24GB 数据,过程中任何网络故障都可能造成同步失败,建议直接使用初始化包进行初始化。
下载初始包
#下载重试不限次数,防止网络异常中断
wget -c -t 0 https://mirrors.tuna.tsinghua.edu.cn/aosp-monthly/aosp-latest.tar
tar -vxzf aosp-latest.tar
cd aosp
#这时ls的话什么也看不到,因为只有一个隐藏的.repo目录
repo sync
选择版本同步
repo init -u https://aos