avalancha
avalancha

Reputation: 1765

Import an .apklib in Eclipse without Maven?

I have recently been playing around with some Android .apklibs with Maven as explained nicely off and on Stackoverflow

I am very much satisfied with how it works and I had it running on a previously available Maven project in a matter of minutes

But I also have projects in which I do not work with Maven, and I'm sure I am not the only one. So it is somewhat weird to me that I did not find a single thread where someone asked how this is done

How can I import an existing .apklib in an Android project, specifically in eclipse without using Maven?

Again, I am not looking to create an apklib or something like that. I just want to use it inside a standard project. It seems I am a little blind, if I overlooked something during my search please share a link

Upvotes: 2

Views: 707

Answers (1)

panda
panda

Reputation: 466

If you don't want to use apklib package, just create your library project as normal project, then add it as library project to your main project.

In eclipse, like this enter image description here

Or

  1. extract apklib,
  2. import it as new project,
  3. add dependence as above

Upvotes: 0

Related Questions