鸿蒙构建完毕生成hhvp文件。
项目结构:
.hvigor : 是存储构建配置文件的
.idea : 是开发工具拥有的目录
AppScope : 是全局的公共资源存放位置
hvigor :存放前端构建配置信息
oh_modules : 存放项目用到的第三方包
build-profile.json5 : 应用级别的构建配置信息
hvigorfile.ts : 执行编译构建任务的一个脚本
oh-package.json5 : 依赖的配置
oh-package-lock.json5 : 生成的一个树形的依赖树
模块结构:
ohosTest : 单元测试
build-profile.json5 : 模块级别的构建配置信息
hvigorfile.ts : 模块级别的执行编译构建任务的一个脚本
module.json5 : 当前模块的配置信息
module.json5:
{"module": {"name": "entry", // 模块名字"type": "entry", // "description": "$string:module_desc","mainElement": "EntryAbility", // 当前模块入口"deviceTypes": ["phone","tablet","2in1"],"deliveryWithInstall": true,"installationFree": false,"pages": "$profile:main_pages","abilities": [{"name": "EntryAbility","srcEntry": "./ets/entryability/EntryAbility.ets","description": "$string:EntryAbility_desc","icon": "$media:layered_image","label": "$string:EntryAbility_label","startWindowIcon": "$media:startIcon","startWindowBackground": "$color:start_window_background","exported": true,"skills": [{"entities": ["entity.system.home"],"actions": ["action.system.home"]}]}]}
}
一个模块对应一个打包后的hap包, hap包的全称是HarmonyOS Ability Package, 其中包含了Ability,第三方库,资源和配置文件。