mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-25 08:39:06 +00:00
CWA-168 | added defining app current version with PackageInfo in settings store
This commit is contained in:
parent
9355b2a1f4
commit
6ee4ddda09
3 changed files with 24 additions and 3 deletions
|
@ -12,6 +12,7 @@ import 'package:cake_wallet/src/stores/action_list/action_list_display_mode.dart
|
||||||
import 'package:cake_wallet/src/screens/settings/items/item_headers.dart';
|
import 'package:cake_wallet/src/screens/settings/items/item_headers.dart';
|
||||||
import 'package:cake_wallet/generated/i18n.dart';
|
import 'package:cake_wallet/generated/i18n.dart';
|
||||||
import 'package:cake_wallet/src/domain/common/default_settings_migration.dart';
|
import 'package:cake_wallet/src/domain/common/default_settings_migration.dart';
|
||||||
|
import 'package:package_info/package_info.dart';
|
||||||
|
|
||||||
part 'settings_store.g.dart';
|
part 'settings_store.g.dart';
|
||||||
|
|
||||||
|
@ -47,7 +48,19 @@ abstract class SettingsStoreBase with Store {
|
||||||
serializeActionlistDisplayModes(actionlistDisplayMode)),
|
serializeActionlistDisplayModes(actionlistDisplayMode)),
|
||||||
fireImmediately: false);
|
fireImmediately: false);
|
||||||
|
|
||||||
currentVersion = _sharedPreferences.getInt('current_default_settings_migration_version');
|
PackageInfo.fromPlatform().then((PackageInfo packageInfo) {
|
||||||
|
final version = packageInfo.version;
|
||||||
|
final buildNumber = packageInfo.buildNumber;
|
||||||
|
final List<String> versionList = version.split(RegExp("\\."));
|
||||||
|
currentVersion = "";
|
||||||
|
|
||||||
|
for (int i = 0; i < versionList.length - 1; i++) {
|
||||||
|
currentVersion += versionList[ i ] + ".";
|
||||||
|
}
|
||||||
|
|
||||||
|
currentVersion += buildNumber;
|
||||||
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static const currentNodeIdKey = 'current_node_id';
|
static const currentNodeIdKey = 'current_node_id';
|
||||||
|
@ -145,7 +158,7 @@ abstract class SettingsStoreBase with Store {
|
||||||
|
|
||||||
SharedPreferences _sharedPreferences;
|
SharedPreferences _sharedPreferences;
|
||||||
Box<Node> _nodes;
|
Box<Node> _nodes;
|
||||||
int currentVersion;
|
String currentVersion;
|
||||||
|
|
||||||
@action
|
@action
|
||||||
Future setAllowBiometricalAuthentication(
|
Future setAllowBiometricalAuthentication(
|
||||||
|
@ -268,7 +281,7 @@ abstract class SettingsStoreBase with Store {
|
||||||
ItemHeaders.support: S.current.settings_support,
|
ItemHeaders.support: S.current.settings_support,
|
||||||
ItemHeaders.termsAndConditions: S.current.settings_terms_and_conditions,
|
ItemHeaders.termsAndConditions: S.current.settings_terms_and_conditions,
|
||||||
ItemHeaders.faq: S.current.faq,
|
ItemHeaders.faq: S.current.faq,
|
||||||
ItemHeaders.version: 'Version 1.0.$currentVersion'
|
ItemHeaders.version: 'Version $currentVersion'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -469,6 +469,13 @@ packages:
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.1.0"
|
version: "1.1.0"
|
||||||
|
package_info:
|
||||||
|
dependency: "direct main"
|
||||||
|
description:
|
||||||
|
name: package_info
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "0.4.0+13"
|
||||||
package_resolver:
|
package_resolver:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -45,6 +45,7 @@ dependencies:
|
||||||
path: ./cw_monero
|
path: ./cw_monero
|
||||||
hive: ^1.2.0
|
hive: ^1.2.0
|
||||||
hive_flutter: ^0.2.1
|
hive_flutter: ^0.2.1
|
||||||
|
package_info: ^0.4.0+13
|
||||||
|
|
||||||
# The following adds the Cupertino Icons font to your application.
|
# The following adds the Cupertino Icons font to your application.
|
||||||
# Use with the CupertinoIcons class for iOS style icons.
|
# Use with the CupertinoIcons class for iOS style icons.
|
||||||
|
|
Loading…
Reference in a new issue