HoneyComb android-3.2.4_r1 のソース

一部限定でHoneyComb android-3.2.4_r1 のソースが公開されました。
公開されたのは以下の2ディレクト

  • platform/frameworks/base
  • platform/libcore


以下、JBQさんのメール
 http://groups.google.com/group/android-building/msg/15b107dddfb34a45?pli=1

  • Along with that, and differently from all previous Honeycomb GPL

drops, I've similarly tagged HLK75F as android-3.2.4_r1 in the non-GPL
frameworks/base and libcore projects. This is probably most
interesting for application developers who want to see at the source
code level how the core platform interfaces with applications, and
that should hopefully make development and debugging easier.

どうやら、アプリケーション開発者のデバッグ向けに公開されてたようです。

git cloneでソース取得可能。

mkdir frameworks
cd frameworks
git clone https://android.googlesource.com/platform/frameworks/base
cd base
git checkout android-3.2.4_r1
cd ../..
git clone https://android.googlesource.com/platform/libcore
cd libcore
git checkout android-3.2.4_r1
cd ../..

That's about a 675MB download, and 1.5GB of disk space (though you can
delete frameworks/base/.git and libcore/.git if you don't care about
the change history, and save 675MB of disk space).