add README.md.

Signed-off-by: Theodore C <ccooperr@protonmail.com>
添加文档英文翻译
This commit is contained in:
Theodore C
2022-06-07 09:55:19 +00:00
committed by Gitee
parent 20af01dae7
commit a2f1df4d9d
+50
View File
@@ -0,0 +1,50 @@
# Contacts
## Introduction
The Contacts application is a preset system application in OpenHarmony. The main functions include dial pad, call log view, call log batch deletion, contact list, details view, and contact creation.
### Architecture diagram
![image-20220222110725915](./doc/image/image-en.png)
The application architecture mainly combines MVP and domain-driven design ideas.
## File Tree
~~~
/Contacts/
├── doc
├── entry
│ └── src
│ └── main
│ └── ets
│ └── MainAbility
│ ├── account
│ ├── call
│ ├── component
│ ├── contact
│ ├── contact
│ ├── entity
│ └── repo
│ ├── dialpad
│ ├── feature
│ |── model
│ |── pages
│ |── presenter
│ |── util
│ └── workers
│ └── app.ets
│ ├── resources
│ └── config.json
├── signs
├── LICENSE
~~~
## Related Repos
[**applications_mms**](https://gitee.com/openharmony/applications_mms)
[**applications_contactsdata**](https://gitee.com/openharmony/applications_contactsdata)
[**applications_call**](https://gitee.com/openharmony/applications_call)