Commit Graph

557 Commits (develop)

Author SHA1 Message Date
Severiano Jaramillo 16efb73765 Bump library versions to be able to compile on M2 mac 2024-03-05 09:08:18 -06:00
Severiano Jaramillo ec54ed0620 Bump targetSdk and compileSdk to 30. 2022-05-29 20:28:57 -07:00
Severiano Jaramillo f302c1346f Update Gradle and Gradle plugin versions.
- Updated the Android Gradle Plugin to version 7.2.1.
- Updated Google services Gradle Plugin to version 4.3.10.
- Updated Crashlytics Gradle Plugin to version 2.5.2.
- Updated Gradle version to 7.4.2.
- Updated reference to graphehej lib.
2022-05-29 11:34:33 -07:00
Seven 25eec970e9 Merge branch 'feat/remove-external-storage-permission' of agorise/bitsy-wallet into develop 2022-05-28 18:48:06 +00:00
Severiano Jaramillo deb609ce28 Move TransfersDetailsAdapter to correct package. 2022-05-28 11:43:54 -07:00
Severiano Jaramillo 3db6ebb6b0 Export CSV transactions without requiring storage permission. 2022-05-28 11:20:07 -07:00
Severiano Jaramillo 830eceeaad Minor manifest cleanup. 2022-05-28 10:07:42 -07:00
Severiano Jaramillo 1220a53ed2 Remove external storage permission. 2022-05-27 22:44:33 -07:00
Severiano Jaramillo 8a4b8c1bbd Avoid requesting storage permission to share payment request. 2022-05-27 22:44:18 -07:00
Severiano Jaramillo 23f4170628 Avoid requesting storage permission to share eReceipt. 2022-05-27 22:38:06 -07:00
Severiano Jaramillo ac06a3d708 Export PDF transactions without requiring storage permission. 2022-05-27 22:25:46 -07:00
Severiano Jaramillo 96faf9bffd Keep translations of main 10 languages only. 2022-05-27 21:24:57 -07:00
Severiano Jaramillo 3cebe3c19a Point graphenej lib to agorise.net repo. 2022-05-27 13:31:57 -07:00
Severiano Jaramillo 1ad1c14139 Remove JCenter from the app.
- JCenter is one of the places from where we were getting libraries for the app, however JCenter is shutting down: https://jeroenmols.com/blog/2021/02/04/migratingjcenter/. We have to obtain our libraries from elsewhere, fortunatley all the libraries that we need are now available in MavenCentral.
2021-04-22 21:59:40 -07:00
Severiano Jaramillo d9a162b83e Switch Tx link to blocksights.info.
Before we were using http://bitshares-explorer.io to show the transactions in a block explorer, however the website is no longer working, so we had to switch to https://blocksights.info.
2021-04-09 21:08:40 -07:00
Severiano Jaramillo 0166382b68 Migrate to the AndroidX Shared Preferences.
- The version of the Shared Preferences bundled with the Android OS has been deprecated, similar to what has happened with other platform libraries. This is so that the libraries can be updated, regardless of the device's OS version.
2021-04-05 21:54:32 -07:00
Severiano Jaramillo 0bc607de03 Update Lifecycle Arch Components library version. 2021-04-05 20:02:17 -07:00
Severiano Jaramillo c8a2929c54 Get rid of the livedata.testing library.
- The com.jraska.livedata:testing-ktx dependency was introduced to be able to test LiveData, however that dependency has not been migrated away from JCenter (to mavenCentral). Also, we are able to provide a similar functionality with an extension function, and that is what I did.
2021-03-27 17:52:14 -07:00
Severiano Jaramillo 7492bc9774 Add colorOnPrimary style color.
- The colorOnPrimary color is used, as it name implies, to color the contents that appears over parts of the app that have the primary color. Such as the Date Range picker toolbar.
2021-03-24 22:45:19 -07:00
Severiano Jaramillo e1dd01c43d Add colorOnPrimary style color. 2021-03-24 22:45:05 -07:00
Severiano Jaramillo 0ad0f7c911 Fix date range selection issue.
- The issue was that the MaterialDatePicker uses the UTC time zone internally. We had to account for that to avoid showing an off by one wrong selection on the Filter Options date range and the Date Range picker (MaterialDatePicker).
2021-03-24 22:34:54 -07:00
Severiano Jaramillo 7e12224795 Update Material Components library.
- Introduced the new material date range picker, to be used in the FilterOptionsDialog to select a date range. This was necessary because the old MaterialDatePicker that was used inside DatePickerFragment is no longer available in the latest version of the Material Components library.
2021-03-23 22:31:47 -07:00
Severiano Jaramillo dd1bf98e5d Update Firebase Crashlytics and Gradle plugins.
- Added the new Firebase Android BoM (Bill of Materials), to easily manage Firebase libraries: https://firebase.google.com/docs/android/learn-more#bom.
- Updated the Gradle, Google Services and Crashlytics gradle plugins.
2021-03-23 21:27:58 -07:00
Severiano Jaramillo be5c9bcea7 Update Navigation and Lifecycle libraries.
- Updated the Navigation architecture component library to the latest stable version, with no big changes required.
- Updated the Lifecycle architecture component library to the latest stable version, along with a bunch of changes related to the deprecation of some methods and the addition of others.
2021-03-22 22:31:44 -07:00
Severiano Jaramillo fd68b8bb96 Bump versionName to 0.17.2-beta and versionCode to 15 2021-03-16 20:20:31 -07:00
Severiano Jaramillo 0ec0457eb7
Migrate app to ViewBinding. (#6)
* Enable ViewBinding

- Migrate MainActivity to ViewBinding.
- Migrate HomeFragment to ViewBinding.

* Migrate a batch of Fragments to ViewBinding.

- Migrate BalancesFragment to ViewBinding.
- Migrate CreateAccountFragment to ViewBinding.
- Migrate EReceiptFragment to ViewBinding.
- Migrate FilterOptionsDialog to ViewBinding.
- Migrate HomeFragment to ViewBinding.

* Migrate another batch of Fragments to ViewBinding.

- Migrate ImportBrainkeyFragment to ViewBinding.
- Migrate LicenseFragment to ViewBinding.
- Migrate MerchantsFragment to ViewBinding.
- Migrate NetWorthFragment to ViewBinding.
- Migrate PatternSecurityLockDialog to ViewBinding.

* Migrate final batch of Fragments to ViewBinding.

- Migrate PINSecurityLockScreen to ViewBinding.
- Migrate ReceiveTransactionFragment to ViewBinding.
- Migrate SendTransactionFragment to ViewBinding.
- Migrate SettingsFragment to ViewBinding.
- Migrate TransactionsFragment to ViewBinding.

* Migrate to the kotlin-parcelize plugin.

- Get rid of the deprecated kotlin-android-extensions plugin.
2021-03-04 22:46:36 -08:00
Severiano Jaramillo cc53526038 Update graphenej's reference. 2021-03-04 20:33:54 -08:00
Severiano Jaramillo 0d33a5f743 Limit the libraries that are obtained from JCenter. 2021-03-01 22:26:37 -08:00
Severiano Jaramillo a30c5cb719 Update graphenej lib reference and Gradle plugin version. 2021-03-01 21:27:09 -08:00
Severiano Jaramillo 9005334f21 Update a couple more libraries' versions. 2021-02-15 19:56:16 -08:00
Severiano Jaramillo 5257ca4da2 Remove Fabric's no longer needed ProGuard code. 2021-02-15 19:05:28 -08:00
Severiano Jaramillo c68397c57c Bump compileSdkVersion and targetSdkVersion to 29. 2020-12-25 16:33:33 -08:00
Severiano Jaramillo af0f2f25e6 Update a bunch of libraries' versions. 2020-12-25 16:25:25 -08:00
Severiano Jaramillo 255821238a Upgrade to the Firebase Crashlytics SDK. 2020-12-25 15:40:25 -08:00
Severiano Jaramillo ba6b9ab642 Bump versionName to 0.17.1-beta and versionCode to 14 2020-01-06 20:12:02 -06:00
Severiano Jaramillo 5d09cfa0c2 Avoid crash due to unsupported currency locale.
- Avoided a crash in ConnectedActivity when trying to obtain the Locale's associated currency, when a Locale does not have a currency. This can happen when the locale is configured for a region like Latin America and not for a specific country.
- Standardized the process to obtain the coingecko supported currency, which will first try to use the current locale's currency and fallback to the default in case the first is not supported.
2020-01-06 10:08:46 -06:00
Severiano Jaramillo 20571d49a3 Fix crash in NetworkServiceManager.
- Fixed a crash in NetworkServiceManager, which is listening to the activities' lifecycle of the whole app. The issue is that it was expecting a call to onActivityCreated where the Bundle was never null and that is a problem because the Bundle can most of the times be null during normal behavior. The Bundle isn't null only when the app is recovering from a forced process dead, which happens when there is another app open which requires resources and the systems kills apps that are not being used at that moment.
2020-01-06 08:52:42 -06:00
Severiano Jaramillo 239fac9ad7 Bump versionName to 0.17.0-beta and versionCode to 13 2019-12-31 15:17:27 -06:00
Severiano Jaramillo cdcfb19370 Update EULA's year to 2020. 2019-12-31 14:21:07 -06:00
Severiano Jaramillo 84617f376c Improve LTM's lightning bolt in Home screen.
- Changed the color of the lightning bolt icon for LTM accounts, so that it is black in day mode and white in night mode.
- Increased the size of the lightning bolt icon to match the letters size and added a bit more separation between them.
2019-12-31 14:18:41 -06:00
Severiano Jaramillo 25087fd483 Keep nodes dialog scrolled to the top.
- Added a custom LinearLayoutManager to the NodesDialog's adapter, so that it can be forced to be kept scrolled up to the top.
2019-12-31 13:54:52 -06:00
Severiano Jaramillo 680f2a616d Show a warning if account has not been backed up.
- Added a section in the Settings, at the bottom of the Backups card that shows a warning when the account has not been backed up (by copying the brainkey) for at least two months.
- Translated the warning text to all supported languages.
- Created an error/warning icon.
2019-12-31 12:14:21 -06:00
Severiano Jaramillo 46af454259 Avoid 0 in Send screen when reading a QR.
- Changed the logic that populates the fields in SendTransactionFragment when a QR code is read, when the amount is zero then just leave the amount field empty so that the user does not have to erase the 0 before typing in the desired amount.
2019-12-26 09:19:46 -06:00
Severiano Jaramillo 3b5d04abd4 Show the keyboard when selecting Other in Receive.
- Automatically show the keyboard and focus the AutoCompleteTextView when the user selects 'Other...' in the Asset spinner, in the Receive screen.
- Created an extension function for EditText, which requests focus and shows the keyboard at the same time, so that the user can immediately start typing the desired text.
2019-12-25 18:07:27 -06:00
Severiano Jaramillo 9cabc0565a Avoid crash due to unsupported currency locale.
- Avoided a crash in ConnectedActivity when trying to obtain the Locale's associated currency, when a Locale does not have a currency.
- Standardized the process to obtain the coingecko supported currency, which will first try to use the current locale's currency and fallback to USD in case the first is not supported.
2019-12-25 17:15:19 -06:00
Severiano Jaramillo 766d42386a Migrate to the new graphenej version.
- Migrated the whole app to the new graphenej version, which removes the usage of the Android Service, enabling to aim for a better and simpler architecture.
- Did a good number of modifications to keep the same or better functionality in all parts of the app that use the NetworkService.
2019-12-19 16:37:45 -06:00
Severiano Jaramillo b5411fa7fc Update Gradle and a bunch of libraries.
- Updated Gradle and a buncn of libreries, making sure everything kept working correctly.
2019-12-19 13:35:05 -06:00
Severiano Jaramillo a2f9463ed4 Bumping versionCode to 12 and versionName to 0.16.0-beta 2019-11-12 12:23:23 -06:00
Nelson R. Perez 50ed47c797 Setting the fee asset to always be BTS 2019-11-11 14:20:47 -05:00
Nelson R. Perez 208238c7ed Merge branch 'develop' of github.com:Agorise/bitsy-wallet into develop 2019-11-07 16:39:35 -05:00