How to use android project in Gradle in eclipse?

Asked

Viewed 460 times

6

1 answer

2

The question is a little old, but it doesn’t hurt to answer :-)

Since 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 the Jar into your library folder. It’s important to be via Gradle for it to create a jar that contains all the dependencies of that project you want to use.

The process to create a jar is described here.

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

Browser other questions tagged

You are not signed in. Login or sign up in order to post.