我按照一些指南如何下载Android的源代码。
http://omappedia.org/wiki/Android_Getting_Started#Accessing_Source_Code 和 http://source.android.com/source/downloading.html
我可以下载repo并使其可执行。但之后我使用这个命令:
repo init -u https://android.googlesource.com/platform/manifest
或
repo init -u git://git.omapzoom.org/platform/omapmanifest.git -b froyo
但是这两个命令都会出现以下错误:
致命:分支'稳定'尚未签署
任何人都知道如何解决这个问题,所以我可以下载源代码吗?
我已经尝试重新安装repo。建议通过此链接Android Repo init failed
我支持代理,但我使用命令让代理工作。
答案 0 :(得分:1)
解决了在repo文件中编辑REPO_URL定义,将https更改为http。
答案 1 :(得分:1)
不仅将repo文件中的REPO_URL定义从https更改为http,还需要更改命令。例如:
repo init -u http://android.googlesource.com/platform/manifest
如果仍然出现错误,请使用命令bellow
尝试最新的repo工具repo init -u http://android.googlesource.com/platform/manifest --repo-url=https://android.googlesource.com/tools/repo
或
repo init -u http://android.googlesource.com/platform/manifest --repo-url=http://android.googlesource.com/tools/repo