Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
entry/src/main/cpp/ | 12-May-2024 | - | 649 | 333 | ||
BUILD.gn | D | 12-May-2024 | 2.4 KiB | 71 | 63 | |
README.md | D | 12-May-2024 | 1.4 KiB | 36 | 34 | |
config.json | D | 12-May-2024 | 1.2 KiB | 54 | 54 |
README.md
1## Introduction 2A Ability demo is provided at here to verify the function of abilityms `Ability Manager Service`. 3 4## How to BUILD 5See the description in [Application Framework](https://gitee.com/openharmony/docs/blob/master/readme/%E7%94%A8%E6%88%B7%E7%A8%8B%E5%BA%8F%E6%A1%86%E6%9E%B6%E5%AD%90%E7%B3%BB%E7%BB%9FREADME.md). 6 7## Directions 8``` 9. 10├── BUILD.gn 11├── config.json 12├── entry 13│ └── src 14│ ├── main 15│ │ └── cpp 16│ │ ├── event_listener.h 17│ │ ├── main_ability.cpp 18│ │ ├── main_ability.h 19│ │ ├── main_ability_slice.cpp 20│ │ ├── main_ability_slice.h 21│ │ ├── next_ability_slice.cpp 22│ │ ├── next_ability_slice.h 23│ │ ├── root_view_helper.cpp 24│ │ ├── root_view_helper.h 25│ │ ├── second_ability.cpp 26│ │ ├── second_ability.h 27│ │ ├── second_ability_slice.cpp 28│ │ ├── second_ability_slice.h 29│ │ ├── service_ability.cpp 30│ │ └── service_ability.h 31│ └── resources 32│ └── base 33│ └── media 34│ └── icon.png 35└── README.md 36```