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

Particularly, where can I browse the source code for the contact application? Is the only way to go to download all there is?

share|improve this question
53  
In case anyone else came to this question looking for a way to find the source for the Java APIs rather than the actual Android OS, it is here: google.com/codesearch/p?hl=en#uX1GffpyOZk/core/java/android – Casebash May 24 '10 at 2:43
2  
I'm having trouble finding ICS source code online for browsing.. Could someone maybe update one of these answers.. – Ivan Dec 2 '11 at 19:17
4  
You can always use this plugin for Eclipse to view android source: androidpolice.com/2011/12/22/… – khr2003 Jan 14 '12 at 10:57
18  
I cant find Android API source at Google code search anymore. Maybe grepcode.com/project/repository.grepcode.com/java/ext/… is helpful. – xtr Jan 18 '12 at 14:45
2  
@0x90: In '09 we had lots of questions like this. Now, we don't allow them anymore. Would be happy to leave old questions alone, but every day someone has to ask the same question again, then play the "but this person is asking the same thing, but their question isn't closed!" card. Oh, and views != on topic. – Will Oct 3 '12 at 13:04
show 3 more comments

closed as off topic by Will Jul 18 '12 at 10:20

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

8 Answers

up vote 186 down vote accepted

Everything is mirrored on omapzoom.org. Some of the code is also mirrored on github.

Contacts is here for example.

Android official source browser (based on Gitiles) has a web view of many of the different parts that make up android. Some of the projects (such as Kernel) have been removed and it now only points you to clonable git repositories.

To get all the code locally, you can use the repo helper program, or you can just clone individual repositories.

And others:

share|improve this answer
4  
android.git.kernel.org has instructions for grabbing individual projects. Example: git clone git://android.git.kernel.org/platform/development.git – pydave Nov 12 '10 at 23:34
1  
It seems it is not available anymore – Eduardo Sep 5 '11 at 12:00
1  
@Eduardo - it is a temporary thing due to the recent hack on kernel.org while they verify the repositories. – richq Sep 6 '11 at 6:30
16  
It seems they killed off android.git.kernel.org definitively. It now redirects to developer.android.com page telling you how to download the sources, which refers to android.googlesource.com, but that does not seem to provide online browsing, only download. The github mirror is still there, but does not seem to be updated. – Jan Hudec Nov 11 '11 at 12:35
3  
As of Dec 10 2011, the GitHub mirror seems to be updated real time. I can see commits which were made a few hours back. – HRJ Dec 10 '11 at 5:20
show 7 more comments

i usually refer this site for the android source code.

http://grepcode.com/snapshot/repository.grepcode.com/java/ext/com.google.android/android/2.2_r1.1/

Just want to provide more options :-)

share|improve this answer
1  
Thank you, this is exactly what I'm looking for. The git site doesn't seem to let you search for individual components of projects (such as: android.git.kernel.org/?s=Bundle.java ) so you end up in a quagmire of updates and guessing where the code might be, but grepcode lets you easily navigate directly to the file. Awesome. – dpk Feb 19 '11 at 18:50
Perfect! Great addition to an old question :) – Aaron C May 25 '11 at 15:27
But where is the samples directory? – NoBugs Jan 9 '12 at 15:24
what's even better here, you can throw a stacktrace at it and it shows you all relevant java code. wow! – Bachi Apr 18 '12 at 19:57

You can view the source code through http://developer.android.com, when your reading the API there will be a link to the matching source code on GitHub, you just need to add the Android SDK Reference Search Plugin on Chrome.

I blogged about it here:

http://blog.blundell-apps.com/add-source-code-links-to-android-apis/

enter image description here

share|improve this answer
@blahdiblah I think your wrong, I just clicked 'View Source' on Activity and it worked fine. Are your trying to click View Source on a generated class? Because these aren't checked into github – Blundell May 4 '12 at 7:05

I stumbled across Android XRef the other day and found it useful, especially since it is backed by OpenGrok which offers insanely awesome and blindingly fast search.

share|improve this answer
Good stuff: you can search for files – Robert Siemer May 21 '12 at 11:13
Bookmarked this one, will use it for future references – user1281750 Jan 14 at 12:18
Feels like it's faster than Grepcode – Shurane Feb 26 at 23:18

I've found a way to get only the Contacts application:

git clone git://android.git.kernel.org/platform/packages/apps/Contacts.git

which is good enough for me for now, but doesn't answer the question of browsing the code on the web.

share|improve this answer

You can browse Android SDK samples from your smartphone using "Code Search": https://market.android.com/details?id=sqwady.codesearch

share|improve this answer

gitweb will allow you to browse through the code (and changes) via a browser.

http://git.or.cz/gitwiki/Gitweb

(Don't know if someone has already setup a public gitweb for Android, but it's probably not too hard.)

share|improve this answer

This eclipse plugin allows for inline source viewing and even stepping inside the Android source code:

http://code.google.com/p/adt-addons/

(edit: specifically the "Android Sources" plugin: http://adt-addons.googlecode.com/svn/trunk/source/com.android.ide.eclipse.source.update/)

share|improve this answer

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