How do I attach the Android Support Library source in Eclipse?

AndroidEclipseZipAndroid Support-Library

Android Problem Overview


Having the source code attached to external libraries is awesome. Where do I 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.

Android Solutions


Solution 1 - Android

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 its 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.

Solution 2 - Android

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 attachment" said "Non modifiable"). Solution:

  • Goto "Configure 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).
  • Expand jar and attach 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.

Solution 3 - Android

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.

Solution 4 - Android

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.

Solution 5 - Android

For those who like the standard to have the jar file of the source code, which makes it more convenient for source control and sharing the project.

For example:

../android-support-v4.jar
../android-support-v4-src.jar

It is simple to create the source jar file and attach it:

  1. cd to path_to_android_sdk/extras/android/compatibility/v4/
  2. Use your favorite zip program such as 7-zip to create a zip file and name it android-support-v4-src.jar. The first folder in the jar should be /scr.
  3. Copy the file to your project, in this example it is in the same folder as the code jar.
  4. In Eclipse attach the source jar in project properties.

Solution 6 - Android

I just remove the auto generated one , then manual add it as a Referencde Libraries.

First open a class, the IDE will ask you to Change Attached Source.

Solution 7 - Android

The process of attaching the src and doc from build path works for some and it doesn't for some (like me). some key things to keep in mind

  1. Make sure you are in Package Explorer, not Project Navigator.

  2. If you have put your android-support-v4.jar in libs folder under your project. great.

  3. Right click the jar, Build path.. Add to Path. (if Add to Path does not show up then its already added. you will see configure path..)

  4. As the result of step 3, a new folder called Referenced Libraries will appear in package explorer tree. Open that tree, find the android-support-v4.jar there. Right click on this jar in the Referenced Libraries, properties. Then set the Java Source Attachment and Javadoc Location there.

  5. You are done.

The path for my Java Source Attachment.(its external location)

C:/Users/thupten/adt-bundle-windows-x86_64-20130514/sdk/extras/android/support/v4/src

I used the android website doc for java doc location

http://developer.android.com/reference/android/support/v4/app/package-summary.html

Solution 8 - Android

I found this for me:

For main lib: android.jar:

src: sdk/sources/android-19 doc: sdk/docs/reference/

For support lib: android-support-v4.jar: (before this we should add android-support-v4.jar like external jar (Project Properties -> Java Build Path -> Libraries, then in Tab ‘Order and Export’ pull up this library before Android Private Libraries)):

src: sdk/extras/android/support/v4/src/java doc: http://developer.android.com/reference/android/support/v4/app/package-summary.html (not sure)

Solution 9 - Android

After you have updated the SDK and downloaded Documentations in it:

  • Import support library project to package explorer.

  • Create a folder in the library and name it something like ext-jars.

  • Move android-support-v4.jar to ext-jars folder.

    enter image description here

  • Right click on the project and click on Properties.

  • Click on Java Build Path in the left menu then select Libraries tab.

  • Click on Add JARs... then expand the project and select the jar file you already moved to folder ext-jars.

enter image description here

  • Expand the added jar and select Source attachment then click on Edit.
  • Select External location then click on External Folder...
  • Choose the source folder for the Support v4 which is located in [sdk-path]/extras/android/support/v4/src

enter image description here

  • Select Javadoc location click on Edit then select Javadoc URL then click on Browse... and choose the javadoc location for support v4 which is located in [sdk-path]/docs/reference/

enter image description here

  • Select Order and Export tab and check the android-support-v4.jar you just added.

I suggest you also clean the project and reopen the Eclipse.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionH&#229;vard GeithusView Question on Stackoverflow
Solution 1 - AndroidandrView Answer on Stackoverflow
Solution 2 - AndroidHiepView Answer on Stackoverflow
Solution 3 - AndroidJacob DamView Answer on Stackoverflow
Solution 4 - AndroidhappydudeView Answer on Stackoverflow
Solution 5 - AndroidfishjdView Answer on Stackoverflow
Solution 6 - AndroidHisenbergView Answer on Stackoverflow
Solution 7 - AndroidThuptenView Answer on Stackoverflow
Solution 8 - AndroidultraonView Answer on Stackoverflow
Solution 9 - AndroidM D PView Answer on Stackoverflow