Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 719 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 719 Bytes

bisq-relay

Overview (TODO)

For sending push notifications to the mobile app.

Building source code

This repo has a dependency on git submodules bisq and bisq-gradle.
There are two ways to clone it before it can be compiled:

# 1) Use the --recursive option in the clone command:
$ git clone --recursive  https://github.com/bisq-network/bisq-relay.git

# 2) Do a normal clone, and pull down the bisq repo dependency with two git submodule commands:
$ git clone https://github.com/bisq-network/bisq-relay.git
$ cd bisq-relay
$ git submodule init
$ git submodule update

To build:

$ ./gradlew clean build