Reputation: 1765
I have recently been playing around with some Android .apklib
s 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
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
Or
Upvotes: 0