-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from devinbileck/major-update
Major update
- Loading branch information
Showing
128 changed files
with
10,107 additions
and
6,799 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,46 @@ | ||
# Bisq Notification Android App | ||
|
||
Since Bisq is a desktop-based application, this Android app enables you to pair it with your desktop | ||
application and receive important notifications such as trade updates and offer alerts when you are | ||
not near your computer. | ||
|
||
## How to Run | ||
In order to pair the app and receive notifications, you will need to create your own | ||
## Prerequisites | ||
|
||
In order to pair the app and receive notifications, you will need to obtain an appropriate | ||
`google-services.json` file and place it under the app/ directory. Refer to | ||
[firebase documentation](https://firebase.google.com/docs/android/setup#add-config-file) | ||
for more information. | ||
|
||
> Note, the `google-services.json` file needs to correspond to the `fcmServiceAccountKey.json` | ||
> used by the [bisq-relay](https://github.com/bisq-network/bisq-relay) service. | ||
## Updating Dependencies | ||
|
||
Whenever dependencies are updated/changed, it is necessary to update the following: | ||
|
||
- [gradle/verification-metadata.xml](gradle/verification-metadata.xml) - can be updated using the | ||
following command: | ||
|
||
```shell | ||
./gradlew --write-verification-metadata sha256 build :app:processDebugResources :app:connectedDebugAndroidTest | ||
``` | ||
|
||
- [gradle.lockfile](gradle.lockfile) - can be updated using the following command: | ||
|
||
```shell | ||
./gradlew dependencies --write-locks | ||
``` | ||
|
||
## Architectural Design | ||
|
||
For information on the architectural design, refer to the | ||
[Bisq Remote Specification](https://github.com/bisq-network/bisqremote/wiki/Specification). | ||
|
||
## Screenshots | ||
![Welcome](images/welcome.png) | ||
![Scan Pairing Code](images/scan_pairing_code.png) | ||
![Pairing Success](images/pairing_success.png) | ||
![Notification List](images/notification_list.png) | ||
![Offer Taken Details](images/offer_taken_details.png) | ||
![Settings](images/settings.png) | ||
|
||
<img alt="Welcome" src="images/welcome.png" width=40% height=40%> | ||
<img alt="Scan Pairing Code" src="images/scan_pairing_code.png" width=40% height=40%> | ||
<img alt="Pairing Success" src="images/pairing_success.png" width=40% height=40%> | ||
<img alt="Notification List" src="images/notification_list.png" width=40% height=40%> | ||
<img alt="Offer Taken Details" src="images/offer_taken_details.png" width=40% height=40%> | ||
<img alt="Settings" src="images/settings.png" width=40% height=40%> |
Oops, something went wrong.