download_android_repo.sh 416 B

12345678910111213141516
  1. #!bin/sh
  2. mkdir ~/bin
  3. PATH=~/bin:$PATH
  4. curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
  5. chmod a+x ~/bin/repo
  6. # 创建一个空目录用来保存android源代码
  7. mkdir ~/aosp
  8. cd ~/aosp
  9. # 指定从清华的镜像,只下6.0.1版本Android
  10. repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-6.0.1_r46
  11. #同步源码树,并发设置为8,不要太大
  12. repo sync -j8