Android开发环境搭建

#Android开发环境搭建

  1. 下载repo工具
mkdir ~/bin
PATH=~/bin:$PATH
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
## 如果上述 URL 不可访问,可以用下面的:
## curl https://storage-googleapis.proxy.ustclug.org/git-repo-downloads/repo > ~/bin/repo
chmod a+x ~/bin/repo
  1. 然后建立一个工作目录(名字任意)
mkdir WORKING_DIRECTORY
cd WORKING_DIRECTORY
  1. 初始化代码仓库
repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest
## 如果提示无法连接到 gerrit.googlesource.com,可以编辑 ~/bin/repo,把 REPO_URL 一行替换成下面的:
## REPO_URL = 'https://gerrit-googlesource.proxy.ustclug.org/git-repo'
  1. 选择特定版本初始化
这里写代码片
repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest -b android-4.0.1_r1
//android-2.3.1_r1
repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest -b android-2.3.1_r1
  1. 同步源代码
repo sync

install git

这里写代码片
sudo apt-get install git

参考文章:
知呼:如何在中国下载Android源码:
https://www.zhihu.com/question/20738613
AOSP科大
https://lug.ustc.edu.cn/wiki/mirrors/help/aosp

你可能感兴趣的:(Android开发专题)