android 源码下载及编译 Posted on 2019-03-24 | In Android | Visitors: Android 源码下载1234567891011121314151617181920mkdir ~/binPATH=~/bin:$PATHcurl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo# 如果上述 URL 不可访问,可以用下面的:# curl -sSL 'https://gerrit-googlesource.proxy.ustclug.org/git-repo/+/master/repo?format=TEXT' |base64 -d > ~/bin/repochmod a+x ~/bin/repomkdir WORKING_DIRECTORYcd WORKING_DIRECTORY# 初始化仓库: 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'# 如果需要某个特定的 Android 版本(Android 版本列表):repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest -b android-4.0.1_r1# 同步源码树(以后只需执行这条命令来同步):repo sync Android 源码编译自己动手编译Android源码(超详细)