app/lib/common/conf/const_conf.dart

11 lines
435 B
Dart
Raw Normal View History

2024-03-07 23:01:32 +08:00
class ConstConf {
2024-11-23 21:59:51 +08:00
static const String appVersion = "2.13.2";
static const int appVersionCode = 60;
2024-11-07 21:34:51 +08:00
static const String appVersionDate = "2024-11-07";
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";
2024-11-03 16:42:39 +08:00
static const dohAddress = "https://223.6.6.6/resolve";
2024-11-07 00:34:11 +08:00
static const inputMethodServerPort = 59399;
2024-03-07 23:01:32 +08:00
}