i could build a gradle project using android plugin. I would like to know if we can generate a valid eclipse android project? I added the below
apply plugin: 'android'
apply plugin: 'eclipse'
when i say: gradle eclipse i get
E:\proj\Platform2.0\mobile\Android\Common>gradle --build-file adt_build.gradle eclipse
The TaskContainer.add() method has been deprecated and is scheduled to be removed in
Gradle 2.0. Please use the cr:eclipseClasspath
:eclipseJdt
:eclipseProject
:eclipse
BUILD SUCCESSFUL
but when i import the genrated project in eclipse... it doenst have the jar files imported by gradle from dependencies.
Any ideas?