I am trying to port CouchbaseLite project from Android Studio to Eclipse which uses Maven.
How can I achieve this?
If needed, project's link is here. http://docs.couchbase.com/couchbase-lite/cbl-android/#getting-started
I am trying to port CouchbaseLite project from Android Studio to Eclipse which uses Maven.
How can I achieve this?
If needed, project's link is here. http://docs.couchbase.com/couchbase-lite/cbl-android/#getting-started
Android Studio uses Gradle, not Maven, but artifacts are downloaded from Maven Repositories. Your question is not related to Maven.
Gradle has support for eclipse, simply add eclipse plugin
apply plugin: "eclipse"
and invoke
gradle eclipse
More options are described here: Import existing Gradle Git project into Eclipse
Other option is to use Gradle Integration for Eclipse