6
I’m willing to incorporate this project: https://github.com/shamanland/floating-action-button in my android app in eclipse, however I do not use Gradle. Is there any way to import it without Gradle?
6
I’m willing to incorporate this project: https://github.com/shamanland/floating-action-button in my android app in eclipse, however I do not use Gradle. Is there any way to import it without Gradle?
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 android eclipse gradle
You are not signed in. Login or sign up in order to post.