| 19 | class MyApp : public AppAbility { |
| 20 | public: |
| 21 | MyApp() |
| 22 | { |
| 23 | // 配置 App 信息 |
| 24 | setAppInfo().name = "凤爪"; |
| 25 | |
| 26 | printf("[%s] on construct\n", getAppInfo().name.c_str()); |
| 27 | } |
| 28 | |
| 29 | // 重载生命周期回调函数 |
| 30 | void onOpen() override |
nothing calls this directly
no outgoing calls
no test coverage detected