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.

Having the source code attached to external libraries is awesome. Where to find the source code for the v4 support package? Preferably it would be a zip file which could be easily attached to the android-support-v4.jar in Eclipse.

share|improve this question
imo @andr answer is the one to accept – uval Apr 28 at 22:56

4 Answers

up vote 21 down vote accepted

After downloading the support package from the Android SDK Manager, you can find the source code of support package in folder <android-sdks>/extras/android/support/v4/src.

share|improve this answer
5  
In my case it was stored in C:\Program Files\Android\android-sdk\extras\android\compatibility\v4\src\java. I then took its content (the android folder) an packaged it up into a *.jar with this command: jar cf android-support-v4-sources.jar android/. I attached this jar to android-support-v4.jar (java build path / library settings in eclipse). Works nice :) – Håvard Geithus Jan 3 '12 at 21:53

Here the solution to attache the source of the support library in Eclipse Juno

I suppose that your project already has android-support-v4.jar in your "Build Path", under "Android Dependencies", but you cannot attach the sources directory to it. (the "Source attachement" said "Non modifiable"). Solution:

  • Goto "Configuration Build Path"
  • Add External JARs > YourProject/libs/android-support-v4.jar (I know your project had already referenced to it but don't worry, just add it again).
  • Attache Source to the External Jar: android-sdk/extras/android/support/v4/src
  • Switch to the "Order and Export" tab, pull up the external jar above the "Android Dependencies"

Enjoy navigating the support library with source!

if you have an "Android Test Project" attached to YourProject, so YourProjectTest might not compiled anymore. In this case, you have to return to "Order and Export" and pull down the external jar below the "Android Dependencies" to get things back to normal.

share|improve this answer
1  
"Java Build Path" and not "Configuration Build Path" for me. – user123321 Dec 11 '12 at 23:58
1  
This had all of the needed steps and worked for me! The last step (ordering) was left out of others and very important. – littleFluffyKitty Jan 16 at 17:48

I just want to add yet another method of attaching sources for the support library. It requires ADT in version 20 or later. Supposedly this method works for all JARs for which setting source/javadoc location is disabled by the container. Here's what you need to do:

  1. The android-support-v4.jar library lies in the libs directory of your project. In that same directory create a regular Java properties file named exactly like the JAR in question, but with appended .properties extension. So, for our support library it'll be:
    android-support-v4.jar.properties.

  2. Open created properties file and set value of property named src to the location where sources for that library can be found. Your file should have one line like:

    src=c:/apps/adt-bundle-windows-64bit/sdk/extras/android/support/v4/src
    
  3. Save the file.

  4. Close and re-open your android project.

  5. Try browsing to one of the support classes. The source attachment should work now.

Worked perfectly in my case.

One thing to note: if src is not an absolute path, it will be resolved starting in the parent directory of the JAR file. Taking support library as an example - if src=support/src, ADT will assume that the class sources are located in libs/support/src.

Short description of this feature written by it's author can be found here.

If anyone is interested in how exactly this .properties file is processed, I recommend reading patch set #4, esp. changes in eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/ internal/project/LibraryClasspathContainerInitializer.java :)

Edit

Please also see a fine comment by WindRider about adding sources properly in a project with multiple referenced libraries.

share|improve this answer
3  
This is the 'official' and recommended way to do it. – BoD Jan 21 at 11:57
1  
Note that if you have a big project with multiple referenced libraries which in their turn reference the android support lib, you must make sure that all copies of the android-support-v4.jar are same binaries. Otherwise you'll get a strange error "checksum mismatch bla bla". Also only one of these support lib copies will be imported, maybe one contained in lib\ folder of the library projects. To see which one is used, open Package Explorer -> Android Dependencies and see where the support lib is imported from. Then do the same procedure not for the main project, but for the library project. – WindRider Jan 31 at 19:16
@WindRider great, will keep that in mind.. thanks for contributing :) – andr Feb 1 at 0:56
Yes, that stupid thing bothered me for months until i finally decided to find the reason. There are some additions in the ADT addressing conflicting dependency libs. It is something related to the DEX tool and it was described in a Google I/O video. Now there is another problem: The source appears but is not the correct version. I think the revisions are mismatching. The sources in SDK are maybe be for a newer revisions. That's because SDK Manager is updating the support lib with newer revisions. I cannot believe how one could lose all day with such non-important problems! – WindRider Feb 1 at 13:04
After trying some of the rest I can say that this is the best answer - should be accepted as the correct one. – uval Apr 28 at 22:53

Referencing the accepted answer, it is also possible to attach the source straight from the directory without building a .jar file. From the Java build path / libraries tab, expand android-support-v4.jar, highlight "Source attachment", click "Edit...", "External Folder..." then point to (android-sdk)\extras\android\support\v4.

This was tested using eclipse indigo.

From the comments:

The problem of being unable to add source to the support library seems to occur if your support library is located in the "Android Dependencies" folder of your project. The workaround is from the same "Java build path / libraries" tab click "Add External JARs..." and find the .jar file in your (android-sdk)\extras\android\support\v4 path. It will then appear in your project setup under a new "Referenced Libraries" folder.

share|improve this answer
I'll definitely do this the next time. Thanks for the tip! :) – Håvard Geithus Feb 18 '12 at 13:32
2  
If you don't have the bug which doesn't let you attach sources to the jar, of course. – Ixx Aug 1 '12 at 18:44
1  
This would be awesome but my "edit" button is greyed out :/. Is that the bug you mention lxx? Found a solution? – span Aug 2 '12 at 6:36
3  
It is all greyed out, it says "non modifiable" – Mister Smith Oct 1 '12 at 15:59
2  
The problem of being unable to add source to the support library seems to occur if your support library is located in the "Android Dependencies" folder of your project. The workaround is from the same "Java build path / libraries" tab click "Add External JARs..." and find the .jar file in your (android-sdk)\extras\android\support\v4 path. It will then appear in your project setup under a new "Referenced Libraries" folder. You can then attach the source to this .jar file as indicated in the original answer. – happydude Oct 3 '12 at 5:52
show 1 more comment

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.