Using Eclipse I've started an Android Project.
I wanted to create a FlowLayout but noticed that Android doesn't provide one in a native manner.
I've found two opensource projects in Github that provide a FlowLayout:
I want to use any of those in my project but they don't provide a compiled jar.
I'm trying to compile the code so I can get that jar and plug it into my project (in /libs
and in the build path) but I can't import them as projects in Eclipse.
Question is:
How do I get/build the jars of any of those projects?
If the answer is "with gradle" or "with maven", can you guide me a little bit more? like: "Install maven, run cmd, run this, run that, go and find the jar at ..."
When I've used third party code in my projects in the past I've always found the jars, eg:
- android-async-http-1.4.4.jar
- ocpsoft-pretty-time-1.0.7.jar
- joda-time-2.4.jar
- android-support-v7-appcompat.jar
So a second question is:
Is it a bad practice when open source projects don't provide a jar?