In this question, the only fix involves rebuilding the Android support library from it's source. I'm not sure how to do this. In Eclipse, I've tried: File -> Import -> General -> File System -> with path-to-SDK/extras/android/support/v4/src/. This imported all of the files. Then I added android.jar for version 14 to the build path. This still gave me a ton of errors, and I'm not sure how to export a jar with the fixed source. Any help would be greatly appreciated.
Asked
Active
Viewed 1,762 times
1 Answers
4
You must add every folder inside extras/android/compatibility/v4/src as independent source folder to get sources in project properly.

djpeinado
- 921
- 8
- 13
-
A java project or an android project? – gregm Apr 22 '13 at 13:37
-
It's a .jar library, a Java project – djpeinado Apr 25 '13 at 13:56
-
No you cannot create a Java project with it. It contains lots of Android dependencies. – tasomaniac Jul 25 '13 at 23:41
-
Of course you can, despite Android dependencies, you are going to build a jar library, not an Android app, and those Android dependencies are jar libraries too, so they can be included as usual – djpeinado Jul 30 '13 at 10:09