• Home
Name Date Size #Lines LOC

..--

doc/12-May-2024-261205

entry/12-May-2024-1,2111,139

figures/12-May-2024-

signature/12-May-2024-

.gitignoreD12-May-2024878 3230

LICENSED12-May-20249.9 KiB177150

OAT.xmlD12-May-20244.6 KiB6821

README.mdD12-May-20242.7 KiB5039

README_zh.mdD12-May-20242.8 KiB5039

build.gradleD12-May-20241.6 KiB5348

gradle.propertiesD12-May-20241.4 KiB2827

gradlewD12-May-20245.6 KiB183125

gradlew.batD12-May-20242.9 KiB10377

local.propertiesD12-May-20241 KiB2826

package.jsonD12-May-20244 21

settings.gradleD12-May-2024642 1715

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![](figures/adminProvisioning_architecture.png)
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![](figures/adminProvisioning_architecture.png)
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