- Download and install command line Git client: msysgit.
- Download the root Android project using Git.exe (located in /bin folder of msysgit)
git clone https://android.googlesource.com/platform/manifest - In the target folder you'll find few XML files. Open default.xml. You can see multiple tags
. Choose the project you want to download. You need the name attribute of the project. Write the following line to download:
git clone https://android.googlesource.com/
To download the most interesting project (IMHO) frameworks/base, the GIT command is:
git clone https://android.googlesource.com/platform/frameworks/base
Projects of interest:
- packages/apps/XXXX - The project names of the apps that comes bundled with Android (excluding proprietry Google apps such as the Android Market) such as the Gallery, Camera etc.
- external/XXXX - 3rd party software (ping, bzip, etc).
- frameworks/base - The sources of the Java system.