1e41f4b71Sopenharmony_ci# System Applications<a name="ZH-CN_TOPIC_0000001103601750"></a>
2e41f4b71Sopenharmony_ci
3e41f4b71Sopenharmony_ci## Introduction<a name="section663544819225"></a>
4e41f4b71Sopenharmony_ci
5e41f4b71Sopenharmony_ciThis module provides some system applications that are applicable to the OpenHarmony standard system, such as Launcher, SystemUI, and Settings. It also provides specific examples for you to build applications that can be run on all standard-system devices.
6e41f4b71Sopenharmony_ci
7e41f4b71Sopenharmony_ciCurrently, OpenHarmony supports the following system applications:
8e41f4b71Sopenharmony_ci
9e41f4b71Sopenharmony_ci1.  Launcher: acts as a main entry for all applications and provides UIs for display and human-machine interactions of installed applications.
10e41f4b71Sopenharmony_ci2.  SystemUI: consists of the navigation bar and system status bar. The navigation bar provides page navigation, and the status bar displays the system status, such as the time and charging status.
11e41f4b71Sopenharmony_ci3.  Settings: provides features such as device management, application management, and brightness setting.
12e41f4b71Sopenharmony_ci4.  Contacts: provides features such as the dialer, call record query/deletion, contacts list, contact details query, and contact management.
13e41f4b71Sopenharmony_ci5.  Messaging: provides features such as SMS message management (send, receive, view, and delete) and SMS delivery report.
14e41f4b71Sopenharmony_ci6.  Phone: allows users to answer and end voice calls and enable or disable mobile data.
15e41f4b71Sopenharmony_ci7.  Camera: provides features such as preview, photo taking, thumbnail display, and image browsing.
16e41f4b71Sopenharmony_ci8.  Gallery: allows users to manage, browse, view, and edit photos, videos, and albums.
17e41f4b71Sopenharmony_ci
18e41f4b71Sopenharmony_ciNote:
19e41f4b71Sopenharmony_ciIn the OpenHarmony 3.1 Release version, only the code for the Gallery application can be built with the released IDE and SDK. The code of other system applications is still being adapted and optimized, which is expected to be completed by April 30, 2022. The actual supported applications are subject to the final release.
20e41f4b71Sopenharmony_ci
21e41f4b71Sopenharmony_ci## Directory Structure<a name="section161941989596"></a>
22e41f4b71Sopenharmony_ci
23e41f4b71Sopenharmony_ci```
24e41f4b71Sopenharmony_ci/applications/
25e41f4b71Sopenharmony_ci├── launcher         # Launcher application code
26e41f4b71Sopenharmony_ci├── systemui         # SystemUI application code
27e41f4b71Sopenharmony_ci├── settings         # Settings application code
28e41f4b71Sopenharmony_ci├── hap              # Binary code for system applications
29e41f4b71Sopenharmony_ci├── contacts         # Contacts application code
30e41f4b71Sopenharmony_ci├── mms              # Messaging application code
31e41f4b71Sopenharmony_ci├── call             # Phone application code
32e41f4b71Sopenharmony_ci├── camera           # Camera application code
33e41f4b71Sopenharmony_ci├── photos           # Gallery application code
34e41f4b71Sopenharmony_ci```
35e41f4b71Sopenharmony_ci
36e41f4b71Sopenharmony_ci## Repositories Involved<a name="section1371113476307"></a>
37e41f4b71Sopenharmony_ci
38e41f4b71Sopenharmony_ci**System applications**
39e41f4b71Sopenharmony_ci
40e41f4b71Sopenharmony_ci[applications\_settings](https://gitee.com/openharmony/applications_settings)
41e41f4b71Sopenharmony_ci
42e41f4b71Sopenharmony_ci[applications\_launcher](https://gitee.com/openharmony/applications_launcher)
43e41f4b71Sopenharmony_ci
44e41f4b71Sopenharmony_ci[applications\_systemui](https://gitee.com/openharmony/applications_systemui)
45e41f4b71Sopenharmony_ci
46e41f4b71Sopenharmony_ci[applications\_hap](https://gitee.com/openharmony/applications_hap)
47e41f4b71Sopenharmony_ci
48e41f4b71Sopenharmony_ci[applications\_contacts](https://gitee.com/openharmony/applications_contacts)
49e41f4b71Sopenharmony_ci
50e41f4b71Sopenharmony_ci[applications\_mms](https://gitee.com/openharmony/applications_mms)
51e41f4b71Sopenharmony_ci
52e41f4b71Sopenharmony_ci[applications\_call](https://gitee.com/openharmony/applications_call)
53e41f4b71Sopenharmony_ci
54e41f4b71Sopenharmony_ci[applications\_camera](https://gitee.com/openharmony/applications_camera)
55e41f4b71Sopenharmony_ci
56e41f4b71Sopenharmony_ci[applications\_photos](https://gitee.com/openharmony/applications_photos)
57