-1

My IDE is Eclipse. Due to THIS problem I would need to mount the Android Support Library revision 19 (instead of the current revision 20) for my project.

Where can I find it?

Community
  • 1
  • 1
Addev
  • 31,819
  • 51
  • 183
  • 302
  • 1
    Short answer - its probably located somewhere on the internet. Have you tried googling? – Alex Oct 07 '14 at 07:47

1 Answers1

1

Check out <android_sdk>/extras/android/m2repository/com/android/support/support-v4. There are different revisions of support library. Pick the one you need. Most likely yours is 19.0.1 or 19.0.0.

To use it in Eclipse you need to extract corresponding aar-file, which is a zip file. There will be file called classes.jar. This is the library you need. Rename it into something more meaningful and copy into your project's libs folder.

sergej shafarenka
  • 20,071
  • 7
  • 67
  • 86