diff --git a/lib/view/page/home.dart b/lib/view/page/home.dart index 40ff4c51..67e2b7fa 100644 --- a/lib/view/page/home.dart +++ b/lib/view/page/home.dart @@ -127,6 +127,8 @@ class _MyHomePageState extends State await GetIt.I.allReady(); await locator().loadLocalData(); await doUpdate(context); - await Analysis.init(BuildMode.isDebug); + if (BuildMode.isRelease) { + await Analysis.init(false); + } } }