linux和windows平臺下下載android sdk的原始碼【Z】

liuchang0001發表於2011-05-06

本文主要是介紹在linux和windows平臺下,如何下載android sdk的原始碼,注意是sdk的原始碼,而不是android的所有原始碼,
同時介紹如何把sdk原始碼加入到eclipse裡,使android 平臺手機開發者可以直接檢視原始碼,通過閱讀SDK原始碼,能更好的理解和運用Android的API。

本文主要分2部份。第1部份介紹如何下載android sdk的原始碼;第2部份介紹如何把android sdk的原始碼加入到eclipse裡

第1部份如何下載android sdk的原始碼  
1、環境。 Linux 2.6 ,Python 2.4.3 或windows XP
2、工具。主要使用git工具,下載android sdk source。
(1)Linux下git工具可以到 http://git-scm.com/ 下載,此工具是linux的核心程式碼管理工具。
安裝過程如下:
tar -xvf git-1.6.6.tar.bz2./configuremakemake install   
(2)在Windows下安裝則和其他應用程式安裝是一樣的。
        Windows下Git下載地址:http://code.google.com/p/msysgit/downloads/list
        目前最新版本為:msysGit-fullinstall-1.7.1-preview20100612.exe   31.6 MB
3、下載android sdk的原始碼
Windows版本的Git提供有Linux shell命令列和GUI圖形介面兩種不同的操作方式,
用預設安裝選項安裝時,新增在桌面上的Git圖示為啟動使用shell命令工具,操作指令和用法則和Linux下一樣  
mkdir android_sdk_src   建立存放Android SDK原始檔的目錄cd android_sdk_src       進入新建的目錄

git clone git://android.git.kernel.org/platform/frameworks/base.git   下載Android SDK原始碼

              附上Android資源分佈說明:
              http://source.android.com/projects#TOC-External-projects
              Android的Git資源:http://android.git.kernel.org/
              Git中文教程:http://www.bitsun.com/documents/gittutorcn.htm
              Git下載地址:http://code.google.com/p/msysgit/

              在http://android.git.kernel.org/的主頁上講得很清楚,
              如果是想要獲得部分git資源(To clone one of these trees, install git, and run:),請使用
git clone git://android.git.kernel.org/ + project path.git


             附上下載整個Android的方法
             repo指令碼可以到 http://android.git.kernel.org/repo 獲得。
             使用curl命令下載並部署此指令碼
             curl http://android.git.kernel.org/repo >/bin/repo
$ curl http://android.git.kernel.org/repo >~/bin/repo$ chmod a+x ~/bin/repo$ mkdir mydroid$ cd mydroid$ repo init -u git://android.git.kernel.org/platform/manifest.git$ repo sync

      第2部份 如何把原始碼附加到eclipse裡。
      此部分的詳細配置方法請檢視http://stuffthathappens.com/blog/2008/11/01/browsing-android-source-in-eclipse/
      在此對這篇文章引述如下:
       1、在你的SDK目錄下,即你的 android.jar 所在目錄下新建sources目錄,把下載的原始碼(我的原始碼的根目錄為base)裡的base/core/java/下的資料夾android和com複製到
           放到sources下。具體的目錄結構如下

SDK_PATH
  | android.jar
  +--docs/...
  +--samples/...
  +--sources
       +--android
       |      ...accounts, annotation, app, bluetooth, etc...
       +--com/android/etc...
       +--dalvik/...
       +--java/...
       +--javax/...

2、然後重新開啟eclipse,就完成了原始碼的附加

[]

相關文章