[Party Room] 创建房间

This commit is contained in:
2024-01-13 17:29:41 +08:00
parent 85f488c118
commit fbdfd61c09
12 changed files with 343 additions and 20 deletions

View File

@ -47,6 +47,8 @@ class AppConf {
static const gameChannels = ["LIVE", "PTU", "EPTU"];
static String deviceUUID = "";
static late final String applicationSupportDir;
static AppVersionData? networkVersionData;
@ -83,6 +85,7 @@ class AppConf {
await box.put("install_id", const Uuid().v4());
AnalyticsApi.touch("firstLaunch");
}
deviceUUID = box.get("install_id", defaultValue: "");
} catch (e) {
exit(1);
}

View File