Reputation: 537
How I can compile this library: MaterialDesign to obtain a .jar unique file that can be used in my Android project ? There is a way to do it ? Someone has already do it? I use Eclipse so I can't use gradle dependencies, Thank in advice.
Upvotes: 0
Views: 104
Reputation: 10215
You cannot create a jar from the library because the library has resources. The .jar libraries does not support resources. You can try the gradle plugin for the eclipse (follow this instructions: Is there any way to integrate Eclipse with Gradle in Android project?) or download the project and try to convert to an eclipse android project... The best solution is to use Android Studio =)
Upvotes: 2