Severiano Jaramillo
cd2f388894
Created a new BalancesDetail model and DAO to create a object composed form the balances and assets db tables and used such classes to correctly show the balances in the BalancesFragment.
2018-12-02 20:17:31 -06:00
Severiano Jaramillo
5ec8afbdb3
Provide a better package structure for Room database related files.
2018-12-01 09:25:25 -06:00
Severiano Jaramillo
dd770fdb5b
- Created Balances adapter and ViewModel to show the Account Balances in the BalancesFragment.
...
- Simplified the Balances db table.
2018-12-01 08:48:19 -06:00
Severiano Jaramillo
fc98208c30
- Add method to update account balances.
...
- Create BalancesRepository to handle Balances related db operations.
2018-11-28 21:52:00 -06:00
Severiano Jaramillo
51363bdf00
- Create basic TransactionsAdapter to populate the Transactions RecyclerView in Balances.
...
- Create basic Transactions items layout.
2018-11-28 20:13:40 -06:00
Severiano Jaramillo
bebffa14ed
- Remove no needed code and simplifyy TransfersLoader, also add a CompositeDisposable to keep track of all RxJava subscriptions and be able to dispose them when the class is finished.
...
- Call the TransfersLoader in MainActivity from a better place.
2018-11-28 18:55:53 -06:00
Severiano Jaramillo
3cbe738fd7
Move deleteAll method from TransferRepository to an async thread, to avoid app crashes for doing db operations in the main thread.
2018-11-28 14:28:18 -06:00
Severiano Jaramillo
d979d366cf
Update EULA and change DISAGREE button color to red and AGREE button color to green.
2018-11-28 14:21:43 -06:00
Severiano Jaramillo
d4e96f98e6
- Remove memo_from and memo_to fields from the transfers db table.
...
- Added method to obtain WIF key from the authorities db table.
- Make use of WIF in TransfersLoader to decrypt memo messages before saving them into the db.
2018-11-28 12:28:38 -06:00
Severiano Jaramillo
61aeca0575
- Extend Authority entity table to also store the authorities in WIF format.
...
- Make ImportBrainkeyActivity to create and store the WIF format into the database.
2018-11-28 10:19:53 -06:00
Severiano Jaramillo
cec0857113
- Add Room RxJava dependency to be able to use RxJava in Room db queries.
...
- Use RxJava's Single to make a Room query in TransfersLoader.
2018-11-27 21:42:39 -06:00
Severiano Jaramillo
08cf6b3c40
- Created a specific package entities for Room entities and do not mix them with plain models.
...
- Simplified the Transfers entity so that we store only the information that will actually be used.
- Create a TransfersLoader, which once launched checks and updated Transfer operations.
2018-11-27 13:33:04 -06:00
Severiano Jaramillo
c63388155a
Created a DatabaseLoadActivity which loads basic information of all the BitShares assets and stores them in the database. This process only occurs once during the initial setup.
2018-11-26 15:11:34 -06:00
Severiano Jaramillo
d42050afa1
- Created basic Balances layout with sections to show the account name, a list of Balances and a list of Transactions.
...
- Created UserAccountViewModel to serve as a bridge between the views and the database, and use it to fetch the current active UserAccount to display it in the BalancesFragment.
2018-11-26 12:26:20 -06:00
Severiano Jaramillo
c77c62fb87
Create a Toolbar menu to MainActivity and add an entry to open the SettingsActivity.
2018-11-24 10:11:30 -06:00
Severiano Jaramillo
175d48f8c6
- Simplified Database structure to include only what is going to be used for the wallet.
...
- Properly distroy NetworkService connection when ConnectedActivty is distroyed to avoid crashes.
- Created UserAccountRepository and AuthorityRepository to handle their corresponding database operations in an asynchronous way, because Room enforces database operations to be done in a thread other than the UI thread.
- In ImportBrainkeyActivity when a proper brainkey is given save the imported account into the database, put a flag that tells the app there is a current account imported and send the user to MainActivity.
2018-11-24 09:11:57 -06:00
Severiano Jaramillo
847e8a8d7f
- Make an UX improvement to let the user import the account directly from the keyboard when typing the brainkey in the TextField.
...
- Add the MaterialDialogs library and use it to let the user choose the desired account to import when the brainkey controls more than one account.
2018-11-22 20:13:10 -06:00
Severiano Jaramillo
22a0735379
Remove code from BitsyApplication that is not going to be used.
...
- Add checks to ImportBrainkeyActivity to make sure the PIN and Brainkey have the correct length/structure.
2018-11-22 15:40:33 -06:00
Severiano Jaramillo
fcbd82e570
- Create BitsyApplication class to manage the connection to graphenej's NetworkService.
...
- Create ConnectedActivity which is the base activity that handles the communication to graphenej's NetworkService and will be extended by other apps that require communication to the BitShares nodes.
2018-11-22 13:35:32 -06:00
Severiano Jaramillo
dfa5df7e83
Create ImportBrainkeyActivity lyout.
2018-11-21 20:53:45 -06:00
Severiano Jaramillo
6b55151e3b
Created basic ImportBrainkeyActivity and a method to take the user to the MainActivity or ImportBrainkeyActivity depending on whether or not there is an active account after the user accepts the License.
2018-11-21 17:43:51 -06:00
Severiano Jaramillo
f19556c925
Created SplashActivity and LicenseActivity. Created a MaterialComponents button style with its state list animator.
2018-11-21 17:10:39 -06:00
Severiano Jaramillo
93f2abfb0e
- Removed not needed stuff.
...
- Created new MainActivity using a BottomNavigationBar and created all the necessary icons for such bar.
2018-11-21 14:47:21 -06:00
Severiano Jaramillo
fb1d6b89fa
Migrate Bitsy to MaterialComponets theme.
2018-11-21 13:13:07 -06:00
Severiano Jaramillo
196e2f2144
Updated graphenej gitlink
2018-11-21 12:27:08 -06:00
Severiano Jaramillo
16a8920ce5
Fix compilation errors.
2018-11-01 18:45:06 -06:00
Severiano Jaramillo
a8ff48b984
Merge branch 'feat_room_db' into develop
2018-11-01 16:21:21 -06:00
Severiano Jaramillo
253bbd0dea
We have now verified that both the weight_threshold in UserAccount and weight in UserAccountAuthority are Integers.
2018-11-01 15:53:43 -06:00
Severiano Jaramillo
73afded9bd
Add missing DAOs (Data Access Object) to use with the Room database.
2018-11-01 14:57:23 -06:00
Severiano Jaramillo
eed3407b7d
Simplify Assets and UserAccounts database tables.
2018-11-01 14:41:10 -06:00
Nelson R. Perez
ff43dcc4f4
Included a brain key model and simple DAO stub
2018-11-01 14:50:18 -05:00
Severiano Jaramillo
1932b27f7e
Fix Authority db table schema
2018-11-01 12:52:20 -06:00
Severiano Jaramillo
1c018346ae
Create UserAccountAuthority entity to establish a N:N relationship between the UserAccount and Authority entities in the database. Also made some structure improvements to all the Entities and Daos already described.
2018-11-01 11:19:32 -06:00
Severiano Jaramillo
e3bb62fce2
Fix graphenej submodule info.
2018-10-31 19:36:55 -06:00
Severiano Jaramillo
bc180b38f5
Fix manifest
2018-10-31 19:12:09 -06:00
Severiano Jaramillo
b2c355210d
Merge branch 'feat_merchants' of github.com:Agorise/bitsy-wallet into feat_merchants
2018-10-31 19:07:54 -06:00
dtvv
aea1fd3302
SendFragment and ReceiveFragment changes
2018-10-31 19:05:03 -06:00
dtvv
5c5bc5c439
Barcode qr library
2018-10-31 18:56:21 -06:00
dtvv
4e5ee90605
QR code control
2018-10-31 18:55:12 -06:00
dtvv
14a6a520c9
Convert Constants.java to kotlin
2018-10-31 18:55:12 -06:00
Severiano Jaramillo
da9e0225cc
Create Operation, Transfer and Equivalent value Entities for the Room database.
2018-10-31 18:51:41 -06:00
dtvv
a2f696c326
SendFragment and ReceiveFragment changes
2018-10-31 18:46:48 -06:00
dtvv
d8cd132c88
Barcode qr library
2018-10-31 16:52:53 -06:00
dtvv
04191b309d
QR code control
2018-10-31 15:25:36 -06:00
dtvv
f4759abc72
Convert Constants.java to kotlin
2018-10-31 15:22:44 -06:00
Severiano Jaramillo
72e39368aa
Created Authority entity and AuthoritiyDao to create the Authorities db table with Room
2018-10-31 15:16:22 -06:00
Severiano Jaramillo
e835e7de89
Created UserAccount entity and UserAccountDao to create the UserAccounts db table with Room
2018-10-31 14:51:23 -06:00
Severiano Jaramillo
c0d20e67bd
Created Balance entity and BalanceDao to create the Balances db table with Room
2018-10-31 14:40:17 -06:00
Severiano Jaramillo
e7d2719a4d
Create BitsyDatabase which extends Room and created Assets Entity and Assets Dao to use in the Room db
2018-10-31 13:44:49 -06:00
Severiano Jaramillo
f04708bde1
Update Kotlin version and add proper Room and Paging libreries.
2018-10-31 10:02:33 -06:00