>From Bojan Polanec via email: I managed to build via command line with gradlew build the java-core > project but when I try to build the lite-android I'm stuck on this when i > run gradlew build: > *Project with path ':libraries:couchbase-lite-java-core' could not be > found in root project 'couchbase-lite-android'*
That sounds like the project is configured to depend directly on the source in sub-projects (as opposed to depending on maven artifacts for subprojects), but that the submodules have not been checked out. Try running: $ git submodule init && git submodule update in the same directory that you are running gradlew. Does that fix it? > I tried to put entire project(core project) with build into > couchbase-lite-android - libraries subfolder , tried with just jar from > core project but always same error. > I assume .jar built by lite-android project is the one I'm looking for to > replace original Beta2.jar To extract the jars from the build, take a look at what is done in this script: https://github.com/couchbase/couchbase-lite-android-liteserv/blob/master/extra/jenkins_build/build_automation.rb#L89-L137 -- You received this message because you are subscribed to the Google Groups "Couchbase Mobile" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/mobile-couchbase/581ea1a7-4061-49e5-b4fe-c7fb2fe6a36b%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
