Android-specific bindings for java-moeralib.
The library provides OkHttp implementations for the HTTP and JSON-RPC transport
interfaces in moeralib:
org.moera.lib.http.OkHttpTransportorg.moera.lib.jsonrpc.OkHttpJsonRpcFetcher
The core library and the Android bindings are versioned independently. Add both dependencies explicitly and select compatible versions:
<dependency>
<groupId>org.moera</groupId>
<artifactId>moeralib</artifactId>
<version>0.18.9.1</version>
</dependency>
<dependency>
<groupId>org.moera</groupId>
<artifactId>moeralib-android</artifactId>
<version>0.18.9.1</version>
</dependency>var node = new MoeraNode(new OkHttpTransport(), nodeUrl);
var naming = new MoeraNaming(new OkHttpJsonRpcFetcher(namingUrl));Read the java-moeralib documentation on the Moera website.