Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android源碼下載備注

android源碼下載備注

編輯:關於Android編程

android源碼下載的參考網上比較多,就不貼上來了,主要是備注下下載源碼過程中需要注意的地方。

1. google官方下載步驟地址:

 

裡面的步驟比較詳細

注:先需要安裝git-core和curl

$: sudo apt-get install git-core curl

 

2. 由於國內的原因(你懂的),需要在/etc/hosts文件裡面添加

74.125.31.82 www.googlesource.com
74.125.31.82 android.googlesource.com
203.208.46.172 cache.pack.google.com
59.24.3.173 cache.pack.google.com

 

3. 在下載源碼的文件夾裡創建reposync.sh,內容:

#! /bin/bash
echo =====start repo sync======
repo sync
while [ $? = 1 ]; do
echo “======sync failed, re-sync again======”
sleep 3
repo sync
done

執行

$: ./reposync.sh

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