I'm using Android Studio 1.0 (build 135.1629389) and I'm getting an error importing a project using these steps:
$ cd couchbase-lite-android-liteserv
$ git submodule init && git submodule update
$ In the Android Studio "Welcome" screen, choose "Import Non-Android Studio project" and choose couchbase-lite-android-liteserv/settings.gradle
Here's the error from the idea.log file:
and here is the
build.gradle file inside the sub-project that seems to be causing the issue.
If I remove everything related to the maven plugin, as in this
updated build.gradle, then the problem goes away. But that's not a viable option, since I need the ability to publish maven artifacts for the project.
I haven't tried using the maven-publish plugin instead of the maven plugin -- is that the recommended plugin for the use case of publishing maven artifacts? (when would you want to use the maven plugin?)
PS: congrats on 1.0!