wownero
/
wownerujo
Archived
4
0
Fork 0

Merge pull request #21 from fuwa0529/dev-v0.6

crypto users should run their own nodes, or just use a bank
master
fuwa 5 years ago committed by GitHub
commit 1e4e7c2664
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6,6 +6,11 @@ An Android Wallet for Wownero
height="80">](https://f-droid.org/packages/com.wownero.wownerujo/)
<a href='https://play.google.com/store/apps/details?id=com.wownero.wownerujo'><img alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png' height='80'/></a>
## Run your own mobile full node for improved speed and privacy
- [CyberWOW]
- [Wownero daemon]
## QUICKSTART
- Download it with the F-Droid app or the Google Play app.
- Run it and click `⊕` to create a new wallet or recover a wallet.
@ -14,11 +19,6 @@ An Android Wallet for Wownero
## Disclaimer
You may lose all your Wowneroj if you use this app.
## Random Notes
- Based off Wownero v0.5.
- Use your own daemon.
- Screen stays on until first sync is complete.
## HOW TO BUILD
If you want to build the external libs yourself (recommended) check out [the instructions](doc/BUILDING-external-libs.md).
@ -37,3 +37,5 @@ Then, fire up Android Studio and build the APK.
[beta channel]:https://play.google.com/apps/testing/com.wownero.wownerujo/join
[CyberWOW]: https://play.google.com/store/apps/details?id=org.wownero.cyberwow
[Wownero daemon]: https://github.com/enerc/wownero-daemon/releases

@ -374,18 +374,11 @@ public class LoginFragment extends Fragment implements WalletInfoAdapter.OnInter
private static final String PREF_DAEMON_TESTNET = "daemon_testnet";
private static final String PREF_DAEMONLIST_MAINNET
= "node.wowne.ro"
+ ";node.pwned.systems"
+ ";node.wowkira.com"
+ ";localhost"
;
private static final String PREF_DAEMONLIST_STAGENET =
"node.wowne.ro";
private static final String PREF_DAEMONLIST_TESTNET =
"node.wowne.ro";
private static final String PREF_DAEMONLIST_MAINNET = "localhost";
private static final String PREF_DAEMONLIST_STAGENET = "";
private static final String PREF_DAEMONLIST_TESTNET = "";
private NodeList daemonMainNet;
private NodeList daemonStageNet;