start server by invoking
new Server(this).start();
You will need to implement io.raspberrywallet.Manager
Step 1. Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
dependencies {
implementation 'com.github.raspberrywallet:server:0.0.10-alpha'
}
Step 1. Add the JitPack repository to your build file
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Step 2. Add the dependency
<dependency>
<groupId>com.github.RaspberryWallet</groupId>
<artifactId>Server</artifactId>
<version>0.0.10-alpha</version>
</dependency>