user93
user93

Reputation: 1866

Including External Library in Android project

I am new to android I thought of using this Opensource library but I don't know how to download it and include it in my project since there is not .jar file.

Upvotes: 1

Views: 387

Answers (1)

karllindmark
karllindmark

Reputation: 6071

Set the library up as an Android library:

  1. Right-click on the library project
  2. Select Properties
  3. Go to the Android tab
  4. Mark the project as the library

Then set your application to use the library:

  1. Right-click on the library project
  2. Select Properties
  3. Go to the Android tab
  4. Add a library at the bottom

That way, you will now be using the library when working on your app.

Upvotes: 2

Related Questions