From 00ebdc156772435619fa55b45404ecbe40681043 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E5=8B=A4=E6=B0=91?= Date: Tue, 20 May 2025 22:27:51 +0800 Subject: [PATCH] =?UTF-8?q?build:=E5=88=87=E6=8D=A2=E5=88=B0=20debug?= =?UTF-8?q?=E6=A8=A1=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 BuildProfile.ets 文件中将 BUILD_MODE_NAME从 'release' 改为 'debug' - 将 DEBUG 变量的值从 false 改为 true - 这些更改适用于 basic 和 sdk_ywx 目录下的 BuildProfile.ets 文件 --- BuildProfile.ets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BuildProfile.ets b/BuildProfile.ets index dd80d80..a0db51a 100644 --- a/BuildProfile.ets +++ b/BuildProfile.ets @@ -2,8 +2,8 @@ * Use these variables when you tailor your ArkTS code. They must be of the const type. */ export const HAR_VERSION = '1.0.9'; -export const BUILD_MODE_NAME = 'release'; -export const DEBUG = false; +export const BUILD_MODE_NAME = 'debug'; +export const DEBUG = true; export const TARGET_NAME = 'default'; /**