Nick
Nick
Hi, Do you mean on-device tests or _Robolectric_? The latter is going to be somewhat hard to configure (especially with _ScalaTest_). You can find instructions for both here: https://github.com/pfn/android-sdk-plugin. I’ll...
You need to have “Google Repository” and “Google Play Services” installed in the SDK manager, like this: http://macroid.github.io/ScalaOnAndroid.html#the-android-sdk. On the other hand, I’m not sure what play services are doing...
It happens with this basic MSON: ``` md # Data Structures ## Payment - items (array) - The list of items that were paid for. - (Item) ## Item -...
It seems that Neo4j did not publish their `2.11` jars properly. If I do `dependency-graph` in this project (with https://github.com/jrudolph/sbt-dependency-graph), I can see that it depends on `org.neo4j:neo4j-cypher:2.2.2`, which depends...
Upon closer inspection, Cypher is only published for Scala `2.11` since version `2.3.X`. I got it working by setting `neo4j.version` to `2.3.0-M02` in https://github.com/neo4j-contrib/neo4j-tinkerpop-api-impl and republishing it.
Actually _“I got it working”_ was a bit too optimistic — it compiled, but I’m getting ``` [ERROR] java.lang.NoSuchMethodError: org.neo4j.kernel.impl.core.NodeManager.newGraphProperties()Lorg/neo4j/kernel/impl/core/GraphPropertiesImpl; [ERROR] at org.neo4j.tinkerpop.api.impl.Neo4jGraphAPIImpl.(Neo4jGraphAPIImpl.java:45) [ERROR] at org.neo4j.tinkerpop.api.impl.Neo4jFactoryImpl.newGraphDatabase(Neo4jFactoryImpl.java:44) [ERROR] at org.neo4j.tinkerpop.api.Neo4jFactory$Builder.open(Neo4jFactory.java:32) [ERROR]...
@mpollmeier Sorry for the late answer, in the end I went with `2.10`. I’m afraid I won’t have time to experiment with it again in the upcoming weeks, but I...