From 18703c62da4386035e5495cc57cc0c7460cd0f09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E5=8B=A4=E6=B0=91?= Date: Mon, 2 Dec 2024 10:15:06 +0800 Subject: [PATCH] =?UTF-8?q?build(profile):=20=E6=9B=B4=E6=96=B0=E6=9E=84?= =?UTF-8?q?=E5=BB=BA=E9=85=8D=E7=BD=AE=E5=92=8C=E7=89=88=E6=9C=AC=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 AppScope版本号从 1.0.7 修改为 1.0.0 - 修改 BuildProfile.ets 文件中的构建模式为 release,关闭调试模式 - 更新 build-profile.json5 文件中的证书和密钥信息 --- BuildProfile.ets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BuildProfile.ets b/BuildProfile.ets index 9ae474e..155b7b3 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.5'; -export const BUILD_MODE_NAME = 'debug'; -export const DEBUG = true; +export const BUILD_MODE_NAME = 'release'; +export const DEBUG = false; export const TARGET_NAME = 'default'; /**