chanjianyi
chanjianyi

Reputation: 615

how to use Android CardsUI library in Eclipse?

I am trying to use this library http://www.androidviews.net/2012/12/cardsui/. Import, libs folder and external JAR does not work.

this is what is ee

Upvotes: 0

Views: 860

Answers (2)

CommonsWare
CommonsWare

Reputation: 1007228

This is an Android library project. It is not an app.

You need to attach the Android library project to your app's project. The process for this is detailed in the documentation. Basically, given that you have already imported the library into your Eclipse workspace, you right-click over your app project in the Package Explorer, choose Properties > Android, scroll down to the Libraries section, click the Add button, and choose your imported library.

Upvotes: 3

tyczj
tyczj

Reputation: 73916

You cannot just import the jar file for this project because it requires additional resources such as images. Therefore it needs to be imported as a library project

Upvotes: 1

Related Questions