0

I've found a UI library (https://github.com/gabrielemariotti/cardslib) - how do I implement this into my project? I'm completely clueless. Do I have to use Gradle? If so, could anyone please guide me? I'm using Eclipse as my IDE. How do I implement this library? I've tried to add it as a library through importing a file system and adding the external libraries through the build path.

Gabriele Mariotti
  • 320,139
  • 94
  • 887
  • 841
user3422952
  • 319
  • 2
  • 8
  • 17

1 Answers1

1

The author of the library has published instructions for how to attempt to use the library from Eclipse.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491
  • I'm still clueless, do I import the library folder as a separate project or do I import it into an existing project? – user3422952 Jul 06 '14 at 15:14
  • @user3422952: The term "import", when used with Eclipse, usually means a separate project. – CommonsWare Jul 06 '14 at 15:17
  • Okay, thank you. I've rendered the project as a library, do I just reference the project to my existing project as a library by doing Properties -> Java Build Path -> Projects -> Add? – user3422952 Jul 06 '14 at 15:39
  • @user3422952: No, you add it the same way that you [add any other Android library project](http://developer.android.com/tools/projects/projects-eclipse.html#ReferencingLibraryProject). – CommonsWare Jul 06 '14 at 15:40