Android12——源码编译
支持Ubuntu 20 和 Ubuntu 22
- 安装Python
sudo apt update
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt install python2
sudo apt install python3.8
#查看python是否安装成功
python2 --version
python3.8 --version
#切换默认python版本 最后面的数字可以是任意的、唯一的就行
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 1
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 2
#设置python默认使用版本 Android12直接默认python3.8
sudo update-alternatives --config python
- 安装Jdk
查找openjdk,找到自己想要的版本
sudo apt search openjdk
安装openjdk #这里根据自己需要安装不同的版本
sudo apt install openjdk-8-jdk
sudo apt install openjdk-11-jdk
- 安装Git
sudo apt-get install git
#配置git账户
git config --global user.email "xxxxxxx@gmail.com"
git config --global user.name "xxxxx"
- 安装Curl
sudo apt-get install curl
- 下载Repo
mkdir ~/bin
PATH=~/bin:$PATH
curl -sSL 'https://gerrit-googlesource.proxy.ustclug.org/git-repo/+/master/repo?format=TEXT' |base64 -d > ~/bin/repo
chmod a+x ~/bin/repo
- 创建目录
mkdir Androi12
cd Android12
- 初始化仓库
#设置清华源地址:
export REPO_URL='https://mirrors.tuna.tsinghua.edu.cn/git/git-repo'
repo init -u https://mirrors.tuna.tsinghua.edu.cn/git/AOSP/platform/manifest -b android-12.0.0_r30
- 同步
#-j8 表示8个线程 这个与电脑有关
repo sync -j8
- 编译依赖库
sudo apt-get install git-core gnupg flex bison build-essential zip curl zlib1g-dev gcc-multilib g++-multilib libc6-dev-i386 libncurses5 lib32ncurses5-dev x11proto-core-dev libx11-dev lib32z1-dev libgl1-mesa-dev libxml2-utils xsltproc unzip fontconfig
- 编译
source build/envsetup.sh
# 这个在lunch列表里没有,是个隐藏的
lunch sdk_phone_x86_64 #这个是模拟手机
lunch aosp_car_x86_64-userdebug #这个是Car
# -j8 8个线程编译,太多电脑会卡,可以减少
make -j8
- 运行
emulator -verbose -show-kernel -cores 4
到此为止,你应该就能看到AOSP模拟器界面,下面开始Android Framework之旅吧!