zircles-android/README.md

48 lines
2.6 KiB
Markdown
Raw Permalink Normal View History

2019-11-24 13:40:00 -08:00
# zcash-android-wallet
An Android wallet using the Zcash Android SDK that is maintained by ECC developers.
2020-06-10 08:11:25 -07:00
### Motivation
[Dogfooding](https://en.wikipedia.org/wiki/Eating_your_own_dog_food) - _transitive verb_ - is the practice of an organization using its own product. This app was created to help us learn.
2020-06-10 08:11:25 -07:00
Please take note: the wallet is not an official product by ECC, but rather a tool for learning about our libraries that it is built on. This means that we do not have robust infrasturcture or user support for this application. We open sourced it as a resource to make wallet development easier for the Zcash ecosystem.
2020-06-10 08:11:25 -07:00
### Setup
2020-06-11 14:10:36 -07:00
To run, clone the repo, open it in Android Studio and press play. It should just work.™
2020-06-10 08:11:25 -07:00
2020-06-11 14:10:36 -07:00
#### Requirements
- [The code](https://github.com/zcash/zcash-android-wallet)
- [Android Studio](https://developer.android.com/studio/index.html) or [adb](https://www.xda-developers.com/what-is-adb/)
- A device or emulator
2020-06-11 14:10:36 -07:00
### Install from Android Studio
1. [Install Android studio](https://developer.android.com/studio/install) and setup an emulator
1a. If using a device, be sure to [put it in developer mode](https://developer.android.com/studio/debug/dev-options) to enable side-loading apps
2020-06-11 14:10:36 -07:00
2. `Import` the zcash-android-wallet folder.
It will be recognized as an Android project.
3. Press play (once it is done opening and indexing)
2020-06-10 08:11:25 -07:00
2020-06-11 14:10:36 -07:00
### OR Install from the command line
2020-06-10 08:11:25 -07:00
To build from the command line, [setup ADB](https://www.xda-developers.com/install-adb-windows-macos-linux/) and connect your device. Then simply run this and it will both build and install the app:
```bash
cd /path/to/zcash-android-wallet
./gradlew
```
## Disclaimers
There are some known areas for improvement:
- This app is mainly intended for learning and improving the related libraries that it uses. There may be bugs.
- This wallet currently only supports receiving at shielded addresses, which makes it incompatible with wallets that do not support sending to shielded addresses.
- Traffic analysis, like in other cryptocurrency wallets, can leak some privacy of the user.
- The wallet requires a trust in the server to display accurate transaction information.
- This app has been developed and run exclusively on `mainnet` it might not work on `testnet`.
2020-06-10 08:11:25 -07:00
See the [Wallet App Threat Model](https://zcash.readthedocs.io/en/latest/rtd_pages/wallet_threat_model.html)
for more information about the security and privacy limitations of the wallet.
2020-06-10 08:11:25 -07:00
If you'd like to sign up to help us test, reach out on discord and let us know! We're always happy to get feedback!
2020-06-10 08:11:25 -07:00
### License
MIT