Commit Graph

55 Commits

Author SHA1 Message Date
Toby Woerthle
37c55e1c09 Balance Checker Fix
-Balance checker should be accurate now
-Need to test more and remove println statements
-Added checking of pending transactions to not include them in the key index update

To retrieve balance from stored preference @danielpollithy @gosticks:

prefFile = getActivity().getString(R.string.preference_file_key
SharedPreferences sharedPref = context.getSharedPreferences(prefFile, Context.MODE_PRIVATE);
String defaultValue = "0";
String storedBalance = sharedPref.getString("balance",defaultValue);

-Added About, License, Agreement settings sections
-Updated and added security settings and usage
2018-01-23 02:54:29 -05:00
Toby Woerthle
57058a6529 Tesetnet Private Setting 2018-01-22 21:55:16 -05:00
Toby Woerthle
db2228fec0 Balance Debug 2018-01-21 23:50:38 -05:00
Toby Woerthle
1da893f1db Testnet token generation
-Added automatic token 2000i on testnet and automatic transfer to wallet
2018-01-21 01:14:01 -05:00
Daniel Pollithy
033210340f first steps for second connection 2018-01-20 16:56:47 +01:00
Daniel Pollithy
d3ab75e3a5 fix #34 2018-01-20 16:55:53 +01:00
Daniel Pollithy
05f31939cd fix #36 2018-01-20 16:55:31 +01:00
Daniel Pollithy
f7a834dff8 fix #39 2018-01-20 16:55:12 +01:00
Daniel Pollithy
68e4a0fe34 fix #37 2018-01-20 16:54:34 +01:00
Daniel Pollithy
d326070e12 fix #38 2018-01-20 16:46:45 +01:00
Toby Woerthle
cafae5c8e2 Testnet Setting
-Added testnet usage based on SharedPreference. Use code below:

SharedPreferences prefManager = PreferenceManager.getDefaultSharedPreferences(context);
Boolean testnet = prefManager.getBoolean("pref_key_switch_testnet",false);
2018-01-20 01:50:49 -05:00
Toby Woerthle
806407f5fd Change password
Implemented change password via settings
2018-01-20 00:26:19 -05:00
Toby Woerthle
001b25dae4 App switch crash fix and Settings Listener case update
-Fixed error where unregisterReceiver would crash app if no BroadcastReceiver was registered
-Update settings UI
2018-01-19 22:49:48 -05:00
Daniel Pollithy
3e09483564 clean error codes
fix #31
2018-01-19 16:27:51 +01:00
Daniel Pollithy
224c94bd8c fix #30
fix #24
2018-01-19 12:29:37 +01:00
Toby Woerthle
fc96ad539b Settings Listeners
Added click and change listeners
2018-01-19 00:46:10 -05:00
Toby Woerthle
5f3abd0f3b Merge branch 'master' of https://github.com/DanielPollithy/flashwifi 2018-01-18 18:55:58 -05:00
Toby Woerthle
a159b21e32 Settings Fragment Initial UI
-Added Settings Fragment
2018-01-18 18:55:53 -05:00
Daniel Pollithy
76d06a60cf add rx and tx bytes to the billing 2018-01-18 23:47:24 +01:00
Daniel Pollithy
82f544e8b0 fix #27 2018-01-18 23:04:08 +01:00
Daniel Pollithy
2e22f5ed99 fix #25 2018-01-18 19:51:39 +01:00
Daniel Pollithy
9931d2f192 fix #15
fix #18
2018-01-18 15:07:49 +01:00
Daniel Pollithy
cd59f497d0 Add the flash channel 2018-01-15 21:40:13 +01:00
Daniel Pollithy
2aad736475 Merge branch 'master' of github.com:DanielPollithy/flashwifi 2018-01-15 18:22:07 +01:00
Daniel Pollithy
d19a5fbfdb improve billing 2018-01-15 18:20:50 +01:00
gosticks
b0b4ca1a36 added flash wrapper 2018-01-15 18:18:46 +01:00
Daniel Pollithy
9a75b7bca2 Billing channel 2018-01-15 15:40:45 +01:00
Daniel Pollithy
1081a17b66 fix #13 back navigation 2018-01-15 11:09:59 +01:00
Daniel Pollithy
fef84771aa Merge branch 'master' of github.com:DanielPollithy/flashwifi 2018-01-15 10:16:39 +01:00
Daniel Pollithy
c5add46192 start and connect access point 2018-01-15 10:16:26 +01:00
Toby Woerthle
dbce65b8eb Import statements cleanup
-Removed unused imports post-merge
2018-01-14 19:10:05 -05:00
Toby
7656055b79
Merge branch 'master' into QR-Code-Scanner 2018-01-14 19:02:44 -05:00
Toby Woerthle
eb8f7f62b2 Async Task Re-work
-Re-organized Async Tasks into their own classes
-Re-enabled scanner
-Currently using Testnet
-Added loading icon
2018-01-14 18:55:27 -05:00
Daniel Pollithy
ac81a74b51 no context leak 2018-01-14 16:40:46 +01:00
Daniel Pollithy
9ed229e7b4 Continue work on billing protocol 2018-01-14 16:40:04 +01:00
Daniel Pollithy
e05c07b93b Initial pseudo draft of the billing protocol 2018-01-14 00:50:20 +01:00
Toby Woerthle
969f6867f1 Wallet password null check + balance update post transfer
-Cleaned up debug printlns
-Added wallet password null check
-Added balance update after transfer
2018-01-13 15:29:58 -05:00
Toby Woerthle
8e3466bc7a Additional Error Handling and KeyIndex Storage
-Added error handling for node access
-Added KeyIndex storage in SharedPreferences
2018-01-12 00:42:10 -05:00
Toby Woerthle
0b2253b8f7 Deterministic Address Generation
-Added deterministic address generation
-Added testnet connections

-Need to cleanup
2018-01-11 01:17:15 -05:00
Daniel Pollithy
b430391d7f Add roaming activity with base notification 2018-01-08 19:00:44 +01:00
Daniel Pollithy
d8a3fcc56b Remove unnecessary files 2018-01-08 18:59:59 +01:00
Toby Woerthle
f03c594830 QR Scanner Stable - Non full screen
-WIP: noticing issues with the scanner when it is within the app frame, not full screen: doesn't scan very well
-Looking into full screen option
2018-01-07 23:34:33 -05:00
Daniel Pollithy
14271cce78 Merge remote-tracking branch 'origin/master' 2018-01-08 00:50:03 +01:00
Daniel Pollithy
eb7f131171 Improve P2P connectivity 2018-01-08 00:49:52 +01:00
Toby Woerthle
0a2b4c6326 Withdraw Initial UI
Basic Withdraw from wallet UI creation
2018-01-07 18:29:54 -05:00
Toby Woerthle
01646644d1 Merge branch 'master' of https://github.com/DanielPollithy/flashwifi 2018-01-07 14:06:56 -05:00
Toby Woerthle
3811bc82fa Fund Wallet - Address QR Code
-Added QR code generation to fund wallet fragment
2018-01-07 14:06:13 -05:00
Daniel Pollithy
db8ce64605 Refactor structure
Refactor Negotiator
2018-01-07 19:59:47 +01:00
Toby Woerthle
fc4e1e8091 Balance + Address Retrieval
-Added async balance and address retrieval based on seed
2018-01-06 19:58:54 -05:00
Daniel Pollithy
f1d907867e Merge branch 'master' of github.com:DanielPollithy/flashwifi 2018-01-07 00:24:57 +01:00