How to use android project in gradle in eclipse?

6

I'm trying to incorporate this project: link into my android application in eclipse, however I do not use gradle. Is there any way to import it without gradle?

    
asked by anonymous 26.12.2014 / 19:39

1 answer

2

The question is kind of old, but it's hard to answer: -)

As you have access to the source code (since it is open source), you could generate a Jar from the project (via gradle) and then copy Jar into your libraries folder. It is important to be gradient for it to create a jar that contains all the dependencies of that project you want to use.

The process for creating a jar is described here.

I strongly advise against this solution because managing dependencies "on hand" is never a good idea. If your project is a study or something, it will not be a problem, but anything else will have (serious) problems in the future.

    
16.01.2015 / 20:42