java - How to port a Gradle based Android Studio project to Eclipse? -
i trying port couchbaselite project android studio eclipse uses maven.
how can achieve this?
if needed, project's link here. http://docs.couchbase.com/couchbase-lite/cbl-android/#getting-started
android studio uses gradle, not maven, artifacts downloaded maven repositories. question not related maven.
gradle has support eclipse, add eclipse plugin
apply plugin: "eclipse"
and invoke
gradle eclipse
more options described here: import existing gradle git project eclipse
other option use gradle integration eclipse
Comments
Post a Comment