• Home
Name Date Size #Lines LOC

..--

AppScope/12-May-2024-2119

doc/image/12-May-2024-

entry/12-May-2024-18,39617,305

hvigor/12-May-2024-3419

signs/12-May-2024-3029

.gitignoreD12-May-202456 55

LICENSED12-May-20249.9 KiB177150

OAT.xmlD12-May-20245.2 KiB8765

README-en.mdD12-May-20241.8 KiB4636

README.mdD12-May-20242 KiB4637

build-profile.json5D12-May-2024963 4040

hvigorfile.jsD12-May-2024777 161

hvigorwD12-May-20241.4 KiB4928

hvigorw.batD12-May-20241.5 KiB6547

oh-package.json5D12-May-2024199 1111

README-en.md

1# Mms application Information
2
3## Introduction
4
5The Mms application is a preset system application in OpenHarmony. The main functions include information viewing, sending SMS, receiving SMS, SMS delivery report, deleting SMS and other functions.
6
7### Architecture diagram
8
9![MMS_architectural_diagram](./doc/image/MMS_architectural_diagram.png)
10
11## Table of contents
12
13~~~
14/Mms/
15├── doc                                        # documentry
16├── entry
17│   └── src
18│       └── main
19│           └── ets
20│               └── default
21│                   ├── data                   # custom data type
22│                   ├── model
23│                   ├── pages
24│                       ├── conversation
25│                       ├── conversationlist
26│                       ├── index
27│                       ├── info_msg
28│                       ├── query_report
29│                       └── settings
30│                   ├── service
31│                   ├── utils
32│                   ├── views
33│                   └── app.ets                # application life cycle
34│               └── ServiceAbility             # background resident service
35│           ├── resources
36│           └── config.json
37├── signs
38└── LICENSE
39~~~
40
41## Related repos
42
43[**applications_contacts**](https://gitee.com/openharmony/applications_contacts)
44
45[**telephony_sms_mms**](https://gitee.com/openharmony/telephony_sms_mms)
46

README.md

1# 信息应用
2
3## 简介
4
5### 内容介绍
6Mms应用是OpenHarmony中预置的系统应用,主要的功能包含信息查看、发送短信、接收短信、短信送达报告、删除短信等功能。
7
8### 架构图
9
10![MMS_architectural_diagram](./doc/image/MMS_architectural_diagram.png)
11
12## 目录
13
14~~~
15/Mms/
16├── doc                                        # 资料
17├── entry
18│   └── src
19│       └── main
20│           └── ets                            # ets代码目录
21│               └── default                    # 业务代码目录
22│                   ├── data                   # 自定义数据类型
23│                   ├── model                  # 对接数据库
24│                   ├── pages                  # 所有页面
25│                       ├── conversation       # 会话详情页面
26│                       ├── conversationlist   # 信息列表页面
27│                       ├── index              # 初始页面
28│                       ├── infomsg            # 通知信息列表页面
29│                       ├── queryreport        # 报告详情页面
30│                       └── settings           # 设置页面
31│                   ├── service                # 业务逻辑
32│                   ├── utils                  # 工具类
33│                   ├── views                  # 自定义组件
34│                   └── app.ets                # 应用生命周期
35│               └── StaticSubscriber           # 静态事件监听
36│           ├── resources                      # 资源配置文件存放目录
37│           └── config.json                    # 全局配置文件
38├── signs                                      # 签名
39└── LICENSE
40~~~
41
42## 相关仓
43
44[**applications_contacts**](https://gitee.com/openharmony/applications_contacts)
45
46[**telephony_sms_mms**](https://gitee.com/openharmony/telephony_sms_mms)