Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I try to search for it but I just cant. I am running Windows 7 on Lenovo G460 laptop. I tried to install Ubuntu on it but I cannot use Wireless to connect to the internet for some reason.

Is there anyway for me to get a look at Android source code or at least just the Calendar part of it?

share|improve this question
did you succeed in successfully executing the code? If so, how did you do it? - Thanks Swathi – Swathi EP Feb 27 '11 at 3:50
I wasn't trying to do that, all I wanted was to see how the Calendar was programmed. – RobGThai Mar 1 '11 at 7:10

5 Answers

up vote 15 down vote accepted

You can browse the android source code using their repository browser. If you want to check out a specific project (i.e. download the source), you will need to get the version control system Git. When you have Git running, you can either clone a complete repository using git clone https://android.googlesource.com/projectname.git or just get the HEAD (the most current version of all files, useful if you only want to browse through the source) by doing git clone --depth 1 https://android.googlesource.com/projectname.git.

The project name is the top folder you select on the repository browser, for example platform/packages/apps/Calendar for the Calendar app. Then the full command is git clone https://android.googlesource.com/platform/packages/apps/Calendar.

share|improve this answer
Thank you, that's exactly what I'm looking for :) – RobGThai Apr 30 '10 at 18:22
1  
I encountered a problem when accessing the git:// URL - "android.git.kernel.org[0: 130.239.17.13]: errno=Connection timed out". It looks like some ports were blocked by a firewall. What worked for me was using the http:// URL instead – Moshe Kravchik Aug 29 '11 at 13:20
Worked fine using http:// – domenukk Sep 12 '12 at 12:34
Its taking too long time on my pc with my flaky internet, it goes to reset every time. Is it possible to download just the release branch of the codebase, which can finish in half a day? – Gopinath Nov 29 '12 at 10:11
1  
@Gopinath See what I wrote about getting just the HEAD, i.e. get a shallow clone using the --depth 1 parameter. – poke Nov 29 '12 at 11:49

The GitWeb and Google Code Search repositories for Android have been retired since this question was originally answered. Fortunately, the SDK Manager finally allows you to download the source code for Android 4.0 and later along with all of the APIs and tools.

If you need access to pre-Ice Cream Sandwich (4.0) Android source code and don't want to use Google's non-Windows download instructions, you can search GrepCode for what you need online. (Look for "android" and the name of the class or method you want, and then pick the version of the code you want.) GrepCode works, but I have seen it crash IE a bunch of times. An alternative would be to download the Android Sources plugin for Eclipse, which gives you all of the source code for versions of Android up to 4.0.1.

Once you have the source code, you can attach the source directory you are using to your .jar in Eclipse, as follows:

Right-click the project > Properties > Java Build Path > Libraries tab > select the + beside the .jar you want to attach source code to > click on Source Attachment to edit the path to where the source files reside.

share|improve this answer

Thanks a lot, a quick guide on helping the download in windows, check this

http://honey200.wordpress.com/2011/11/17/download-android-source-code-in-windows/

share|improve this answer
1  
I suggest you add a summary of the link in your answer. Links have a habbit of breaking over time making it difficult to get an answer. – M Afifi Nov 6 '12 at 16:31

Install cygwin, and install the cygwin verion of git, then follow the normal instructions for installing repo.

You'll want to have git around anyway - it's become the standard vcsfor modern dev work. Some stuff is in svn still, but that's dying out.

share|improve this answer

For me the easiest way is to browse it on GrepCode.

share|improve this answer
But that does not answer the questions. For example searching for notification_template_big_text.xml finds all sort of stuff but not the layout XML. – Martin Apr 11 at 7:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.