other: xhj google appbundle

独立打包入口
This commit is contained in:
Liuyf 2025-01-20 14:10:55 +08:00
parent e9921f1180
commit c14b397bd3

11
lib/main_xhj_bundle_lite.dart Executable file
View File

@ -0,0 +1,11 @@
import 'app_settings/app_settings.dart';
import 'flavors.dart';
import 'main.dart' as runner;
Future<void> main() async {
F.appFlavor = Flavor.xhj;
F.isLite = true;
// AppLog.log('xhj_lite调用了main函数');
await runner.main();
}