已开启
添加bundle.json文件 #9
添加bundle.json文件 #9
已开启
hyl创建于 5 天前
共 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 # 签名证书与profile371├─signature # 签名证书与profile
372+├─bundle.json # 部件描述文件
372├─build-profile.json5 # 工程级配置373├─build-profile.json5 # 工程级配置
373├─oh-package.json5374├─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- **语言版本**:ArkTS384- **语言版本**:ArkTS
@@ -2,7 +2,7 @@
2 2 
3## Introduction3## 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 Capabilities7### Core Capabilities
8 8 
@@ -369,6 +369,7 @@ application_tips
369│ └─module.json5 # Ability and Form declarations369│ └─module.json5 # Ability and Form declarations
370├─hvigor # Build tool config370├─hvigor # Build tool config
371├─signature # Signing certificates and profile371├─signature # Signing certificates and profile
372+├─bundle.json # Component descriptor
372├─build-profile.json5 # Project-level configuration373├─build-profile.json5 # Project-level configuration
373├─oh-package.json5374├─oh-package.json5
374├─OAT.xml # Open-source compliance audit375├─OAT.xml # Open-source compliance audit
@@ -377,6 +378,7 @@ application_tips
377└─README-zh.md # Chinese documentation378└─README-zh.md # Chinese documentation
378```379```
379 380 
381+ 
380## Constraints382## Constraints
381 383 
382- **Language version**: ArkTS384- **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+}