From f6f12142621f2362f05ccbed576c17cbb99b4420 Mon Sep 17 00:00:00 2001 From: leedongmyung Date: Wed, 5 Feb 2025 09:09:27 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B8=B0=EB=B3=B8=ED=99=98=EA=B2=BD=20local?= =?UTF-8?q?=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/utils/system_util.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/utils/system_util.dart b/lib/utils/system_util.dart index de6f958..765d34a 100644 --- a/lib/utils/system_util.dart +++ b/lib/utils/system_util.dart @@ -23,15 +23,15 @@ String executablePath = ''; String appIdendifier = ''; String appName = ''; String and = '&&'; -Environment environment = Environment.dev; +Environment environment = Environment.local; void initialize(String name, String appID) { initializeApp(name, appID); - const env = String.fromEnvironment('ENV', defaultValue: 'dev'); + const env = String.fromEnvironment('ENV', defaultValue: 'local'); environment = Environment.values.firstWhere( (e) => e.name == env, - orElse: () => Environment.dev, + orElse: () => Environment.local, ); }