[android-developers] Android Library sources not found

2012-01-05 Thread DulcetTone
Is there something I need to do so that my own Android Library's source code is findable by Android projects working with it within the same workspace? The debugger goes to a .class version of it, and no use of the link to source function offered thereby placates it. No pointing out of this

Re: [android-developers] Android Library sources not found

2012-01-05 Thread Kostya Vasilyev
1: Add the library project as a dependency to the app project: Package Explorer / Right-click the app project / Properties / Java Build Path / Projects, under Required projects on the build path. 2: Switch to the Order and Export tab and move the library project up, so it's above Library

Re: [android-developers] Android Library sources not found

2012-01-05 Thread TreKing
Oh my goodness - you're my hero. I've had this same issue and it was driving me crazy. There is a bug reported for it so I thought I was stuck waiting for a fix. http://code.google.com/p/android/issues/detail?id=23685can=5colspec=ID%20Type%20Status%20Owner%20Summary%20Stars But now I can debug