android 源代码下载

  1. 安装repe

    按照google官方的设置repo的下载路径和环境变量

    $ mkdir ~/bin
    $ PATH=~/bin:$PATH
    

    google 版本:

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

    很多时候这个不能工作了,需要下面这个

    $ curl "http://php.webtutor.pl/en/wp-content/uploads/2011/09/repo" > ~/bin/repo
    

    下载好之后需要

    $ chmod a+x ~/bin/repo
    
  2. 下载源代码

    • 设置下载路径

      $ mkdir WORKING_DIRECTORY
      $ cd WORKING_DIRECTORY
      
    • 按照google官方的地址

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

      这个也存在不能工作的问题,就用这个清华版本的

      $repo init -u git://aosp.tuna.tsinghua.edu.cn/android/platform/manifest
      

      初始化好之后就该下载代码了

      $ repo sync
      

      这个时候可能会提示一个错误说

      fatal: '../platform/abi/cpp.git' does not appear to be a git repository
      fatal: Could not read from remote repository.
      

      需要修改.repo文件夹下的manifest.xml

      <remote  name="aosp"
         fetch=".."
         review="https://android-review.googlesource.com/" />
      

      改成

      <remote  name="aosp"
         fetch="git://aosp.tuna.tsinghua.edu.cn/android/"
         review="https://android-review.googlesource.com/" />
      

      也就是fetch字段的值

剩下的就是漫长等待了

你可能感兴趣的:(android 源代码下载)