Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
doc/ | 12-May-2024 | - | 261 | 205 | ||
entry/ | 12-May-2024 | - | 1,211 | 1,139 | ||
figures/ | 12-May-2024 | - | ||||
signature/ | 12-May-2024 | - | ||||
.gitignore | D | 12-May-2024 | 878 | 32 | 30 | |
LICENSE | D | 12-May-2024 | 9.9 KiB | 177 | 150 | |
OAT.xml | D | 12-May-2024 | 4.6 KiB | 68 | 21 | |
README.md | D | 12-May-2024 | 2.7 KiB | 50 | 39 | |
README_zh.md | D | 12-May-2024 | 2.8 KiB | 50 | 39 | |
build.gradle | D | 12-May-2024 | 1.6 KiB | 53 | 48 | |
gradle.properties | D | 12-May-2024 | 1.4 KiB | 28 | 27 | |
gradlew | D | 12-May-2024 | 5.6 KiB | 183 | 125 | |
gradlew.bat | D | 12-May-2024 | 2.9 KiB | 103 | 77 | |
local.properties | D | 12-May-2024 | 1 KiB | 28 | 26 | |
package.json | D | 12-May-2024 | 4 | 2 | 1 | |
settings.gradle | D | 12-May-2024 | 642 | 17 | 15 |
README.md
1# AdminProvisioning 2 3## Introduction 4 5As a system application preset in OpenHarmony, AdminProvisioning is used to provision MDM services on devices in enterprise environments. It also provides service provisioning interfaces that can be invoked by other subsystems or third-party MDM clients to build a complete MDM solution. 6 7### Architecture 8 9 10 11## Directory Structure 12 13``` 14/applications/standard/admin_provisioning 15├── build.gradle # Global configuration file 16├── settings.gradle # Configuration file of the build module 17├── LICENSE # License file 18├── entry # entry module 19│ └── src 20│ ├── main 21│ ├── ets # ets module 22│ ├── MainAbility 23│ ├── model # Managed data 24│ │ ├── appMagagementImpl 25│ │ ├── appDetailData # Application detail data 26│ │ ├── baseData # Base data 27│ ├── pages # Component pages 28│ │ ├── component 29│ │ ├── entryComponent # Application detail component to be activated 30│ │ ├── headComponent # Application name component 31│ │ ├── permissionListComponent # Application permission component to be activated 32│ │ ├── applicationInfo 33│ ├── app.ets # Global ets logic and application lifecycle management file 34│ ├── resources # Resource configuration file 35│ ├── base # Default language, image resources, font size, and color resources 36│ ├── en_AS.element # Resources for the English language 37│ ├── rawfile # Local configuration file 38│ ├── zh_CN.element # Resources for the Chinese language 39│ └── config.json # Global configuration file 40├── signature # Certificate file 41``` 42 43## Usage 44 45 For details, see Instructions. 46 47## Repositories Involved 48 49[System Apps](https://gitee.com/openharmony/docs/blob/master/en/readme/system-apps.md) 50
README_zh.md
1# AdminProvisioning 2 3## 简介 4 5AdminProvisioning应用是OpenHarmony中预置的系统应用,用于企业环境下在设备上发放MDM业务,同时提供了业务发放接口给其它子系统或者三方MDM客户端应用调用,支持在产品上构建完整的MDM解决方案。 6 7### 架构图 8 9 10 11## 目录 12 13``` 14/applications/standard/admin_provisioning 15├── build.gradle # 全局编译配置文件 16├── settings.gradle # 编译模块配置文件 17├── LICENSE # 许可文件 18├── entry # entry模块目录 19│ └── src 20│ ├── main 21│ ├── ets # ets模块目录 22│ ├── MainAbility 23│ ├── model # 数据管理存放目录 24│ │ ├── appMagagementImpl 25│ │ ├── appDetailData # 数据管理目录 26│ │ ├── baseData # 常量存放目录 27│ ├── pages # 组件页面存放目录 28│ │ ├── component 29│ │ ├── entryComponent # 待激活应用详情组件 30│ │ ├── headComponent # 本身应用名称组件 31│ │ ├── permissionListComponent # 待激活应用权限组件 32│ │ ├── applicationInfo 33│ ├── app.ets # 全局ets逻辑和应用生命周期管理文件 34│ ├── resources # 资源配置文件存放目录 35│ ├── base # 默认语言场景,图片资源,字体大小,颜色资源内容存放目录 36│ ├── en_AS.element # 英文语言场景资源内容存放目录 37│ ├── rawfile # 本地配置文件存放目录 38│ ├── zh_CN.element # 中文语言场景资源内容存放目录 39│ └── config.json # 全局配置文件 40├── signature # 证书文件目录 41``` 42## 使用说明 43 44 参见使用说明([使用说明](./doc/Instructions.md)) 45 46## 相关仓 47 48[应用子系统](https://gitee.com/openharmony/docs/blob/master/zh-cn/readme/%E7%B3%BB%E7%BB%9F%E5%BA%94%E7%94%A8.md) 49 50