android学习笔记之源码下载

使用环境

1.需要Ubuntu 64bit,建议Ubuntu14.04 64-bit

安装Rope

1.打开终端输入

$ makdir ~/bin
$ PATH=~/bin:$PATH

2.完成后输入以下命令

$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
$ chmod a+x ~/bin/repo

下载源码

1.建立android源码存放目录

$ mkdir AOSP
$ cd AOSP

2.初始化git信息

$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"

3.初始化源码信息

$ repo init -u https://android.googlesource.com/platform/manifest -b android-6.0.1_r11

4.同步下载

$ repo sync -j8

你可能感兴趣的:(android学习笔记之源码下载)