Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've previously had success attaching the Android Source to Eclipse by following the instructions here:

http://johnsenf.blogspot.com/2009/12/android-sources-and-javadoc-in-eclipse.html

However this approach seems to have stopped working:

samuel-josephs-computer-4:android-sources samueljoseph$ git checkout origin/froyo-release

Previous HEAD position was 1de4a2c... am 62619392: Merge "Fix leak when keylock is recreated." HEAD is now at adba66b... This class no longer exists.

There is a more recent blog here:

http://android.opensourceror.org/2010/01/18/android-source/

which has some pre-organized source for Eclair, but nothing since. There are also some StackOverflow posts from 2008 (older than both the above)

Attaching Java Source to Android projects in Eclipse

I wondered if anyone knew of anything more recent that was known to work reliably? I hate to burn time on approaches that might turn out to be outdated. Would be great if there was something official from Google on this ...

Many thanks in advance CHEERS> SAM

share|improve this question

4 Answers

up vote 29 down vote accepted

There is an Eclipse plugin called Android Sources that installs the sources up through Gingerbread. I haven't tried it recently.

share|improve this answer
that looks awesome. However I got an error when trying to install. I just upgraded to Android 3.0 and the latest ADT, so perhaps that's an issue. I filed an issue on the project site – Sam Joseph Mar 8 '11 at 16:16
no reponse yet code.google.com/p/adt-addons/issues/detail?id=4 :-( – Sam Joseph Mar 14 '11 at 15:38
Had a response! Eclipse GEF framework was missing. I think I had their update site disabled for some reason, which was preventing the correct install; and now I can see the Android source yay! – Sam Joseph Apr 1 '11 at 9:36
Unfortunately it does not support API about 9 – Carlos Rendon May 25 '11 at 22:36
The plugin supports source up through API level 14 (Android 4.0.1) and includes an easy-to-use update site. – E-Riz Aug 24 '12 at 20:29

There is a updated guide. So, you don't need to install an eclipse plugin for this.

Here is the link

Snip from above Link:

follow below steps if you already have downloaded Android sources

  1. Head into eclipse, and press F3 over some android source you're missing, like Activity. And get this pesky window, which we all hate:

  2. Click Attach Source, choose External Folder, and choose the core/java in the base folder.

share|improve this answer
This guide explains a simple way to attach the sources, no plugins required. Great method – sewdil Jan 17 '12 at 8:05
This should be the first answer :) – fhucho Jul 5 '12 at 23:28

There's now an easier way to attach Android platform sources. See this answer.

share|improve this answer

if i say , than you can do this by .... hover or copy paste any class_name which is provided from android , just press F3 you will find a Attach_a_source tag there , click in it & here browse your android-sdk folder and from it just pick source folder because inside it , every android files resides .

share|improve this answer
Lone link is considered a poor answer (see faq) since it is meaningless by itself and target resource is not guaranteed to be alive in the future. It would be preferable to include the essential parts of the answer here, and provide the link for reference. – j0k Mar 21 at 8:35
Next time , i will take care of it . – Tushar Mar 21 at 9:07
You can start right now you know? – j0k Mar 21 at 9:07

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.