app/lib/common/conf/const_conf.dart

9 lines
331 B
Dart
Raw Normal View History

2024-03-07 23:01:32 +08:00
class ConstConf {
2024-09-11 20:50:32 +08:00
static const String appVersion = "2.12.1";
static const int appVersionCode = 55;
2024-06-28 23:32:57 +08:00
static const String appVersionDate = "2024-6-28";
2024-09-11 20:50:01 +08:00
static const gameChannels = ["LIVE", "PTU", "EPTU", "TECH-PREVIEW", "HOTFIX"];
2024-03-07 23:01:32 +08:00
static const isMSE =
String.fromEnvironment("MSE", defaultValue: "false") == "true";
}