已开启
添加bundle.json文件 #9
hyl创建于 5 天前
添加bundle.json文件 #9
已开启
共 3 个文件变更+38-2
| @@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | ## 简介 | 3 | ## 简介 |
| 4 | 4 | ||
| 5 | -**Tips**(应用包名:`com.ohos.tips`)是OpenHarmony中预置的**系统应用**,通过服务卡片、详情页向用户提供设备使用技巧,并适配手机、平板形态。 | 5 | +**Tips**(应用包名:`com.ohos.tips`)是OpenHarmony标准系统中预置的**系统应用**,通过服务卡片、详情页向用户提供设备使用技巧,并适配手机、平板形态。 |
| 6 | 6 | ||
| 7 | ### 核心能力 | 7 | ### 核心能力 |
| 8 | 8 | ||
| @@ -369,6 +369,7 @@ applications_tips | |||
| 369 | │ └─module.json5 # Ability与Form声明 | 369 | │ └─module.json5 # Ability与Form声明 |
| 370 | ├─hvigor # 构建工具配置 | 370 | ├─hvigor # 构建工具配置 |
| 371 | ├─signature # 签名证书与profile | 371 | ├─signature # 签名证书与profile |
| 372 | +├─bundle.json # 部件描述文件 | ||
| 372 | ├─build-profile.json5 # 工程级配置 | 373 | ├─build-profile.json5 # 工程级配置 |
| 373 | ├─oh-package.json5 | 374 | ├─oh-package.json5 |
| 374 | ├─OAT.xml # 开源合规审计 | 375 | ├─OAT.xml # 开源合规审计 |
| @@ -377,6 +378,7 @@ applications_tips | |||
| 377 | └─README-zh.md # 中文说明文档 | 378 | └─README-zh.md # 中文说明文档 |
| 378 | ``` | 379 | ``` |
| 379 | 380 | ||
| 381 | + | ||
| 380 | ## 约束 | 382 | ## 约束 |
| 381 | 383 | ||
| 382 | - **语言版本**:ArkTS | 384 | - **语言版本**:ArkTS |
| @@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | ## Introduction | 3 | ## Introduction |
| 4 | 4 | ||
| 5 | -**Tips** (bundle name: `com.ohos.tips`) is a preinstalled **system application** in OpenHarmony. It provides device usage tips to users through service widgets and detail pages, and adapts to phone and tablet form factors. | 5 | +**Tips** (bundle name: `com.ohos.tips`) is a preinstalled **system application** in OpenHarmony standard system. It provides device usage tips to users through service widgets and detail pages, and adapts to phone and tablet form factors. |
| 6 | 6 | ||
| 7 | ### Core Capabilities | 7 | ### Core Capabilities |
| 8 | 8 | ||
| @@ -369,6 +369,7 @@ application_tips | |||
| 369 | │ └─module.json5 # Ability and Form declarations | 369 | │ └─module.json5 # Ability and Form declarations |
| 370 | ├─hvigor # Build tool config | 370 | ├─hvigor # Build tool config |
| 371 | ├─signature # Signing certificates and profile | 371 | ├─signature # Signing certificates and profile |
| 372 | +├─bundle.json # Component descriptor | ||
| 372 | ├─build-profile.json5 # Project-level configuration | 373 | ├─build-profile.json5 # Project-level configuration |
| 373 | ├─oh-package.json5 | 374 | ├─oh-package.json5 |
| 374 | ├─OAT.xml # Open-source compliance audit | 375 | ├─OAT.xml # Open-source compliance audit |
| @@ -377,6 +378,7 @@ application_tips | |||
| 377 | └─README-zh.md # Chinese documentation | 378 | └─README-zh.md # Chinese documentation |
| 378 | ``` | 379 | ``` |
| 379 | 380 | ||
| 381 | + | ||
| 380 | ## Constraints | 382 | ## Constraints |
| 381 | 383 | ||
| 382 | - **Language version**: ArkTS | 384 | - **Language version**: ArkTS |
| @@ -0,0 +1,32 @@ | |||
| 1 | +{ | ||
| 2 | + "name": "@ohos/applications_tips", | ||
| 3 | + "description": "Tips app for standard system.", | ||
| 4 | + "version": "3.0", | ||
| 5 | + "license": "Apache License 2.0", | ||
| 6 | + "publishAs": "code-segment", | ||
| 7 | + "segment": { | ||
| 8 | + "destPath": "applications/standard/tips" | ||
| 9 | + }, | ||
| 10 | + "dirs": {}, | ||
| 11 | + "scripts": {}, | ||
| 12 | + "component": { | ||
| 13 | + "name": "applications_tips", | ||
| 14 | + "subsystem": "applications", | ||
| 15 | + "syscap": [], | ||
| 16 | + "features": [], | ||
| 17 | + "adapted_system_type": [ | ||
| 18 | + "standard" | ||
| 19 | + ], | ||
| 20 | + "rom": "579KB", | ||
| 21 | + "ram": "52146KB", | ||
| 22 | + "deps": { | ||
| 23 | + "components": [], | ||
| 24 | + "third_party": [] | ||
| 25 | + }, | ||
| 26 | + "build": { | ||
| 27 | + "sub_component": [], | ||
| 28 | + "inner_kits": [], | ||
| 29 | + "test": [] | ||
| 30 | + } | ||
| 31 | + } | ||
| 32 | +} | ||