From 60e9e96a249ff0f98fe1b5279d671bffcec304d3 Mon Sep 17 00:00:00 2001 From: "ester.zhou" Date: Thu, 19 Jan 2023 14:49:08 +0800 Subject: [PATCH] fixed 19351ae from https://gitee.com/esterzhou/docs/pulls/13806 Update doc (13694) Signed-off-by: ester.zhou --- en/application-dev/quick-start/har-structure.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/application-dev/quick-start/har-structure.md b/en/application-dev/quick-start/har-structure.md index f3b1189d37..1d479b504a 100644 --- a/en/application-dev/quick-start/har-structure.md +++ b/en/application-dev/quick-start/har-structure.md @@ -1,10 +1,10 @@ # HAR File Structure -The Harmony Ability Resources (HAR) file enables code to be shared among multiple modules or projects. Unlike a Harmony Ability Package (HAP) file, a HAR file cannot be independently installed on a device. Instead, it can only be referenced as the dependency of an application module. +The OpenHarmony Archive (HAR) file enables code to be shared among multiple modules or projects. Unlike a Harmony Ability Package (HAP) file, a HAR file cannot be independently installed on a device. Instead, it can only be referenced as the dependency of an application module. A HAR file is the build product of a [module](https://developer.harmonyos.com/en/docs/documentation/doc-guides-V3/ohos-adding-deleting-module-0000001218760594-V3) of the Library type in a DevEco Studio project. -The HAR file reuses the standard [npm package](https://developer.harmonyos.com/en/docs/documentation/doc-guides/ohos-development-npm-package-0000001222578434) release mode and is packed into a .tar package with the file name extension .tgz. The packed HAR file contains the source code, resource files, and the **module.json** file (in stage model) or **config.json** file (in FA model). +As a static shared package in OpenHarmony, the [HAR file](https://developer.harmonyos.com/en/docs/documentation/doc-guides/ohos-development-npm-package-0000001222578434) can contain the source code, C++ libraries, resource files, and the **module.json** file (in stage model) or **config.json** file (in FA model). -- GitLab