Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android系統教程 >> Android開發教程 >> android源碼下載方式

android源碼下載方式

編輯:Android開發教程

android源碼下載方式:

方式一:

1) 創建~/bin

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

2) 下載repo

$ curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo$ chmod a+x 

~/bin/repo

3) 創建保存Android源碼文件

$ mkdir WORKING_DIRECTORY$ cd WORKING_DIRECTORY

4 ) 下載Android源碼(master主干)

$ repo init -u 

https://android.googlesource.com/platform/manifest

下載Android源碼(branch分支)

$ repo init -u 

https://android.googlesource.com/platform/manifest -b android-4.0.1_r1

更多分支目錄: https://android.googlesource.com/platform/manifest

5) 啟動同步下載

$ repo sync

上面是官方提供的下載方式:http://source.android.com/source/downloading.html

但最近使用這種方式出現網絡連接超時,據說是被hack掉了

使用git方式下載: git  clone  http://android.git.kernel.org/kernel/common.git,最後,成功了

詳見博客:http://hi.baidu.com/sunboy_2050/blog/item/bacb9ec83d158a9dc81768ab.html

方式二:

把方式一的下載命令中的git修改為http(配置文件需一並修改),則可以順利下載源碼

具體修改步 驟如下:

1. 編輯~/bin/repo文件: vi  ~/bin/repo

修改: REPO_URL='git://android.git.kernel.org/tools/repo.git'

改為: REPO_URL='http://android.git.kernel.org/tools/repo.git'

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved