1# 子系统 2### 子系统配置规则 3 4通过build仓下的subsystem_config.json可以查看所有子系统的配置规则。 5 6```json 7{ 8 "arkui": { 9 "path": "foundation/arkui", # 路径 10 "name": "arkui" # 子系统名 11 }, 12 "ai": { 13 "path": "foundation/ai", 14 "name": "ai" 15 }, 16 "account": { 17 "path": "base/account", 18 "name": "account" 19 }, 20 "distributeddatamgr": { 21 "path": "foundation/distributeddatamgr", 22 "name": "distributeddatamgr" 23 }, 24 "security": { 25 "path": "base/security", 26 "name": "security" 27 }, 28 ... 29} 30``` 31 32子系统的配置规则主要是在build/subsystem_config.json中指定子系统的路径和子系统名称。 33