关闭应用启动时的应用级别提示

This commit is contained in:
ZhanGSKen
2025-11-10 08:05:07 +08:00
parent e3826148fa
commit 74f685e07d
2 changed files with 4 additions and 4 deletions

View File

@@ -77,13 +77,13 @@ public class App extends GlobalApplication {
if (isAliasLaunch) {
// Alias入口启动逻辑如切换应用级别、加载专属配置
LogUtils.d(TAG, "通过Alias入口启动切换为LAOJUN级别");
ToastUtils.show("通过Alias入口启动切换为LAOJUN级别");
//ToastUtils.show("通过Alias入口启动切换为LAOJUN级别");
App._mAppLevel = AppLevel.LAOJUN; // 结合之前定义的枚举
// 执行Alias专属初始化...
} else {
// 原入口启动逻辑
LogUtils.d(TAG, "通过原入口启动默认WUKONG级别");
ToastUtils.show("通过原入口启动默认WUKONG级别");
//ToastUtils.show("通过原入口启动默认WUKONG级别");
App._mAppLevel = AppLevel.WUKONG;
}