Skip to content

Commit

Permalink
Merge pull request #821 from cake-tech/fix_exchange_loading_issue_and…
Browse files Browse the repository at this point in the history
…_restore

Fix Exchange Loading issue and Restore wallet
  • Loading branch information
OmarHatem28 committed Mar 6, 2023
2 parents 9fdbda3 + 0517efc commit f51db14
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
12 changes: 9 additions & 3 deletions lib/store/authentication_store.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ part 'authentication_store.g.dart';

class AuthenticationStore = AuthenticationStoreBase with _$AuthenticationStore;

enum AuthenticationState { uninitialized, installed, allowed }
enum AuthenticationState { uninitialized, installed, allowed, _reset }

abstract class AuthenticationStoreBase with Store {
AuthenticationStoreBase() : state = AuthenticationState.uninitialized;
Expand All @@ -13,8 +13,14 @@ abstract class AuthenticationStoreBase with Store {
AuthenticationState state;

@action
void installed() => state = AuthenticationState.installed;
void installed() {
state = AuthenticationState._reset;
state = AuthenticationState.installed;
}

@action
void allowed() => state = AuthenticationState.allowed;
void allowed() {
state = AuthenticationState._reset;
state = AuthenticationState.allowed;
}
}
6 changes: 3 additions & 3 deletions pubspec_base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ dependencies:
barcode_scan2: ^4.2.1
http: ^0.13.4
path_provider: ^2.0.11
mobx: 2.0.7+4
flutter_mobx: ^2.0.6+1
mobx: ^2.1.4
flutter_mobx: ^2.0.6+5
flutter_slidable: ^2.0.0
share_plus: ^4.0.10
# date_range_picker: ^1.0.6
Expand Down Expand Up @@ -73,7 +73,7 @@ dev_dependencies:
flutter_test:
sdk: flutter
build_runner: ^2.1.11
mobx_codegen: ^2.0.7
mobx_codegen: ^2.1.1
build_resolvers: ^2.0.9
hive_generator: ^1.1.3
flutter_launcher_icons: ^0.9.3
Expand Down
4 changes: 2 additions & 2 deletions scripts/android/app_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ APP_ANDROID_TYPE=$1

MONERO_COM_NAME="Monero.com"
MONERO_COM_VERSION="1.2.8"
MONERO_COM_BUILD_NUMBER=39
MONERO_COM_BUILD_NUMBER=40
MONERO_COM_BUNDLE_ID="com.monero.app"
MONERO_COM_PACKAGE="com.monero.app"

CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="4.5.9"
CAKEWALLET_BUILD_NUMBER=145
CAKEWALLET_BUILD_NUMBER=146
CAKEWALLET_BUNDLE_ID="com.cakewallet.cake_wallet"
CAKEWALLET_PACKAGE="com.cakewallet.cake_wallet"

Expand Down
4 changes: 2 additions & 2 deletions scripts/ios/app_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ APP_IOS_TYPE=$1

MONERO_COM_NAME="Monero.com"
MONERO_COM_VERSION="1.2.8"
MONERO_COM_BUILD_NUMBER=37
MONERO_COM_BUILD_NUMBER=38
MONERO_COM_BUNDLE_ID="com.cakewallet.monero"

CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="4.5.9"
CAKEWALLET_BUILD_NUMBER=141
CAKEWALLET_BUILD_NUMBER=142
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"

HAVEN_NAME="Haven"
Expand Down

0 comments on commit f51db14

Please sign in to comment.