下载Android源码(5.1.1)

Win10环境:

1/ 安装Vmware Workstation

2/ 创建虚拟机,下载安装Ubuntu16.04

3/ 安装OpenJDK ( http://www.linuxidc.com/Linux/2017-11/148695.htm )

   $ sudo apt-get update
   $ sudo apt-get install openjdk-8-jdk
     安装完后,用java -version检查

4/ 安装工具

sudo apt-get install bison g++-multilib git gperf libxml2-utils make python-networkx zlib1g-dev:i386 zip
5/ 下载repo文件,放到~/bin/下

链接:https://pan.baidu.com/s/1hsChJbm 密码:tzs3

6/ 授予执行权限

chmod a+x ~/bin/repo

7/ 配置用户信息

git config --global user.name "Your Name"

git config --global user.email "[email protected]"


8/ 开始下载

repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-5.1.1_r6

8/出错再次下载

repo sync -j4

你可能感兴趣的:(ubuntu,android)