From d7f156f160d64baf5f5b3ed21d69f71f3bec8ee2 Mon Sep 17 00:00:00 2001 From: XuqmGroup Date: Tue, 28 Apr 2026 20:11:37 +0800 Subject: [PATCH] =?UTF-8?q?feat(chat):=20=E6=B7=BB=E5=8A=A0=E8=81=8A?= =?UTF-8?q?=E5=A4=A9=E7=95=8C=E9=9D=A2=E5=92=8C=E6=96=87=E4=BB=B6=E6=9B=B4?= =?UTF-8?q?=E6=96=B0SDK=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 实现完整的聊天界面UI组件,支持文本、图片、视频、音频、文件等多种消息类型 - 集成IM消息收发功能,实现消息气泡显示和用户头像占位符 - 添加媒体文件选择和拍摄功能,支持相册图片、视频及相机拍照录像 - 实现语音录制和播放功能,包含按住说话交互和权限处理 - 添加群组提及功能,支持@用户和提及候选列表显示 - 实现消息回复和引用功能,支持消息长按回复操作 - 添加本地消息搜索功能,支持搜索当前会话的历史消息 - 实现文件上传下载功能,集成FileSDK进行文件传输管理 - 添加应用更新检查功能,集成UpdateSDK支持版本更新 - 实现消息状态显示,包括发送、送达、已读等状态标识 - 添加群组已读人数统计,显示消息在群聊中的阅读情况 - 实现草稿保存和恢复功能,支持断点续聊体验 - 添加连接状态横幅,实时显示IM服务连接状态 - 实现滚动加载更多历史消息,优化大量消息的性能表现 - 添加多媒体文件下载保存功能,支持保存到应用专属目录 --- .hvigor/cache/file-cache.json | 1 + .hvigor/cache/meta.json | 1 + .hvigor/cache/task-cache.json | 1 + .hvigor/dependencyMap/dependencyMap.json5 | 1 + .hvigor/dependencyMap/entry/oh-package.json5 | 1 + .hvigor/dependencyMap/oh-package.json5 | 1 + .../dependencyMap/xuqmSdk/oh-package.json5 | 1 + .hvigor/outputs/logs/details/details.json | 70 + .hvigor/report/report-202604281901190590.json | 1234 ++ .hvigor/report/report-202604281901526640.json | 4622 ++++++ .hvigor/report/report-202604281902322490.json | 4456 ++++++ .hvigor/report/report-202604281902448810.json | 10946 +++++++++++++ .hvigor/report/report-202604281903299320.json | 4621 ++++++ .hvigor/report/report-202604281903494370.json | 13236 ++++++++++++++++ .hvigor/report/report-202604281917275180.json | 10736 +++++++++++++ .hvigor/report/report-202604281919395040.json | 10736 +++++++++++++ .hvigor/report/report-202604281921369060.json | 10736 +++++++++++++ .hvigor/report/report-202604281921524500.json | 13214 +++++++++++++++ AppScope/app.json5 | 10 + README.md | 1 + build-profile.json5 | 2 +- entry/oh-package-lock.json5 | 19 + entry/oh_modules/@xuqm/harmony-sdk | 1 + entry/src/main/ets/pages/Index.ets | 51 +- .../main/resources/base/media/app_icon.png | Bin 0 -> 68 bytes hvigor/hvigor-config.json5 | 19 + oh-package.json5 | 1 + oh_modules/.ohpm/lock.json5 | 48 + xuqm-sdk/BuildProfile.ets | 17 + xuqm-sdk/Index.ets | 3 + xuqm-sdk/src/main/ets/XuqmSDK.ets | 10 - xuqm-sdk/src/main/ets/core/HttpClient.ets | 37 +- xuqm-sdk/src/main/ets/core/Types.ets | 39 + xuqm-sdk/src/main/ets/im/ImClient.ets | 417 +- xuqm-sdk/src/main/ets/push/PushSDK.ets | 31 +- xuqm-sdk/src/main/module.json5 | 2 +- 36 files changed, 85180 insertions(+), 142 deletions(-) create mode 100644 .hvigor/cache/file-cache.json create mode 100644 .hvigor/cache/meta.json create mode 100644 .hvigor/cache/task-cache.json create mode 100644 .hvigor/dependencyMap/dependencyMap.json5 create mode 100644 .hvigor/dependencyMap/entry/oh-package.json5 create mode 100644 .hvigor/dependencyMap/oh-package.json5 create mode 100644 .hvigor/dependencyMap/xuqmSdk/oh-package.json5 create mode 100644 .hvigor/outputs/logs/details/details.json create mode 100644 .hvigor/report/report-202604281901190590.json create mode 100644 .hvigor/report/report-202604281901526640.json create mode 100644 .hvigor/report/report-202604281902322490.json create mode 100644 .hvigor/report/report-202604281902448810.json create mode 100644 .hvigor/report/report-202604281903299320.json create mode 100644 .hvigor/report/report-202604281903494370.json create mode 100644 .hvigor/report/report-202604281917275180.json create mode 100644 .hvigor/report/report-202604281919395040.json create mode 100644 .hvigor/report/report-202604281921369060.json create mode 100644 .hvigor/report/report-202604281921524500.json create mode 100644 AppScope/app.json5 create mode 100644 entry/oh-package-lock.json5 create mode 120000 entry/oh_modules/@xuqm/harmony-sdk create mode 100644 entry/src/main/resources/base/media/app_icon.png create mode 100644 hvigor/hvigor-config.json5 create mode 100644 oh_modules/.ohpm/lock.json5 create mode 100644 xuqm-sdk/BuildProfile.ets diff --git a/.hvigor/cache/file-cache.json b/.hvigor/cache/file-cache.json new file mode 100644 index 0000000..7f48938 --- /dev/null +++ b/.hvigor/cache/file-cache.json @@ -0,0 +1 @@ +{"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5":{"hashValue":"93abaa7167cb4f7156939cf7fc2fe27ec07fa7ad6cb1b051fe9505237492efab","name":"app.json5","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5","type":"file","isSymbolicLink":false,"fileMetaData":{"size":217,"lastModifiedTime":1777374141202}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5":{"hashValue":"45f0792f900f0b774c2d78199d68f493e806157a6b838cb91b6c35e5708405a1","name":"module.json5","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5","type":"file","isSymbolicLink":false,"fileMetaData":{"size":967,"lastModifiedTime":1776767622140}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5":{"hashValue":"e7a5d914285bcdc2366b1e3ca0a7b220a809c2b0b51f630e8ac0dd35e622c0e1","name":"build-profile.json5","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5","type":"file","isSymbolicLink":false,"fileMetaData":{"size":794,"lastModifiedTime":1777374223446}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build-profile.json5":{"hashValue":"637eb00fec419bbf9cc3531c0bd5dfabc002588e06b17e5b48f7889c647ec6af","name":"build-profile.json5","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build-profile.json5","type":"file","isSymbolicLink":false,"fileMetaData":{"size":122,"lastModifiedTime":1776767577301}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base/profile/main_pages.json":{"hashValue":"d8f650290152b2a3b4f832a0c8743ad3bdf5484110a7ed2e288a5fd14b1251cd","name":"main_pages.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base/profile/main_pages.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":29,"lastModifiedTime":1776767625810}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigor/hvigor-config.json5":{"hashValue":"d23916aa724b4d8c931cc359160909580acef6ac7906edb118fe5b86ae3d6734","name":"hvigor-config.json5","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigor/hvigor-config.json5","type":"file","isSymbolicLink":false,"fileMetaData":{"size":303,"lastModifiedTime":1777374157693}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/oh-package.json5":{"hashValue":"dc5ab13285deddac685e9bccf21c9e6dc8c779ae156162d21d58c2c507609fed","name":"oh-package.json5","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/oh-package.json5","type":"file","isSymbolicLink":false,"fileMetaData":{"size":198,"lastModifiedTime":1776767573113}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/oh-package.json5":{"hashValue":"be4d9035ca8fe1dc36496464660318ffe4a96e78c4ddd65001173b3b831b38bd","name":"oh-package.json5","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/oh-package.json5","type":"file","isSymbolicLink":false,"fileMetaData":{"size":186,"lastModifiedTime":1777374075084}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/hap_metadata/default/output_metadata.json":{"hashValue":"07f2d503b94e7a50baef40c63a15593330da0ded0049d15b7fdc391d6cbb57fb","name":"output_metadata.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/hap_metadata/default/output_metadata.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":93,"lastModifiedTime":1777374165502}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/merge_profile/default/module.json":{"hashValue":"fb3aba78bc394efe68b62999e3417b79754c1e6e88e2e5259e92231155959b5d","name":"module.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/merge_profile/default/module.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":1457,"lastModifiedTime":1777374230126}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/BuildProfile.ets":{"hashValue":"aff68ef38ae68e93b20a42a36f890e814d6a34ab91e86b74d5773563f091b9bd","name":"BuildProfile.ets","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/BuildProfile.ets","type":"file","isSymbolicLink":false,"fileMetaData":{"size":868,"lastModifiedTime":1777374230124}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json":{"hashValue":"f20c571234667fce87bd15286ac0680fecee2a9889ede2a5f40d6ffbab9c56f9","name":"pkgContextInfo.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":300,"lastModifiedTime":1777374230108}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/pack.info":{"hashValue":"f4d4ba848be93b38d82b3d8135215efd5e8a8b41ae564e103e06beb0e89a1177","name":"pack.info","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/pack.info","type":"file","isSymbolicLink":false,"fileMetaData":{"size":564,"lastModifiedTime":1777374230133}},"/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/syscap_tool":{"hashValue":"b958209a3ec5cc7742a4a2b445cdac4238c26a5369352d0f25b7e05a7a3d450b","name":"syscap_tool","path":"/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/syscap_tool","type":"file","isSymbolicLink":false,"fileMetaData":{"size":439328,"lastModifiedTime":1773892871000}},"/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/ets/api/device-define":{"hashValue":"a8d85f0f9fc7442385b54f1d37db5a12d988988dbff9086e5548e2cdfd017fe3","name":"device-define","path":"/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/ets/api/device-define","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"a78d351581e52c5d4eee45bacf298b776f7f4632b347596c2df0d22d2076235e","name":"2in1.json","path":"/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/ets/api/device-define/2in1.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":12033,"lastModifiedTime":978278400000}},{"hashValue":"25adf8de259a0697fa865c5d488b853a7f6f9b8d8530eeb4a9c6cf641eb0e571","name":"default.json","path":"/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/ets/api/device-define/default.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":12495,"lastModifiedTime":978278400000}},{"hashValue":"8b2969b776cec08042376cceca02b0c22d8672829b2a2c99285784aa188c7bd2","name":"liteWearable.json","path":"/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/ets/api/device-define/liteWearable.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":882,"lastModifiedTime":978278400000}},{"hashValue":"f6b210a26e1c2cfd10b94e70d19ad53ba6bcde382b911fd0d6b1dc489a3a1c9a","name":"tablet.json","path":"/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/ets/api/device-define/tablet.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":12122,"lastModifiedTime":978278400000}},{"hashValue":"ba1c49c557ea06b24932fab8d5808e275896c5646ce7d6e4bd132178ea2e34f0","name":"tv.json","path":"/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/ets/api/device-define/tv.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":9819,"lastModifiedTime":978278400000}},{"hashValue":"86b7cd5834f252504f02d2444743aafe2e77bc1a38260b2a6b65a33db690302f","name":"wearable.json","path":"/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/ets/api/device-define/wearable.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":10521,"lastModifiedTime":978278400000}}]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/process_profile/default/module.json":{"hashValue":"dc3a6a264754cd1cb21944583e42581cf809f2dcb84cc9007b3e309208e94874","name":"module.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/process_profile/default/module.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":1543,"lastModifiedTime":1777374230175}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/router_map/default/temp-router-map.json":{"hashValue":"bdb98c33482c72055b71c5b95ba8bbcbfa7bc55784abec2c620d508a5b5526f2","name":"temp-router-map.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/router_map/default/temp-router-map.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":16,"lastModifiedTime":1777374230121}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/router_map/default/loader-router-map.json":{"hashValue":"c4fe93460f3d43bf4013c337a0e8af3878fb533f6bfb21bcfe557300762ea109","name":"loader-router-map.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/router_map/default/loader-router-map.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":16,"lastModifiedTime":1777374230121}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/share_config/default/temp-share-config.json":{"hashValue":"aed98b36b6d5b208231e5d5453f4fce93e907ea4d227c84bc921ee7773d2e0ba","name":"temp-share-config.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/share_config/default/temp-share-config.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":27,"lastModifiedTime":1777374230122}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resConfig.json":{"hashValue":"95068df3ab6f1a1a62b5bea41be79f5b2b4ea75c8db41a1d5bf05075ad001045","name":"resConfig.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resConfig.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":1096,"lastModifiedTime":1777374230181}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/opt-compression.json":{"hashValue":"a5e01f349ffc5d480fc56e56cea4df0fdcf98b2ee91a46909b7421b96f38c00b","name":"opt-compression.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/opt-compression.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":189,"lastModifiedTime":1777374230181}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/loader.json":{"hashValue":"f6850188cdb425425bc140de4fde4f75089bf9a11080ded55b835720edeb9d8e","name":"loader.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/loader.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":943,"lastModifiedTime":1777374230130}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/libs/default":{"hashValue":"","name":"default","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/libs/default","type":"directory","isSymbolicLink":false,"children":[]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources":{"hashValue":"d8710f0fec6df6ca625d0eb1544d988243a8cc79ff8be0e59ed7ba3212d22db5","name":"resources","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"397d8e3a0ddc67cc1a4b61dcc8e745059b17fd2ae1b33952d584bfe04de49a23","name":"base","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"503cfe2c5e75fb7e9df7b2caaa23a1a4bc35dded8319d116dd1f27450bdadc46","name":"element","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base/element","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"e6efb470bc1d458305230b6094740fbe89ac5e08a68fe1c931bd812911d33160","name":"color.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base/element/color.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":83,"lastModifiedTime":1776767632419}},{"hashValue":"77eda37d8f2b9f4719a0eb3f5c5df3f3af91f5b4a3a5ccacf195ce5f2d607f02","name":"string.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base/element/string.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":205,"lastModifiedTime":1776767629473}}]},{"hashValue":"0fc676138a0d4bd2663f02e96d94bc5e3ad0c34690d22f8ca0e7f5d11693742d","name":"media","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base/media","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"e94b5d04033505482e7c6de9b5766b84e302a933f01901a5a5a80ba888b2fc67","name":"app_icon.png","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base/media/app_icon.png","type":"file","isSymbolicLink":false,"fileMetaData":{"size":68,"lastModifiedTime":1777374147420}}]},{"hashValue":"cfdcb1a5dcd351ce9e897da7b2e0abd746a96b1da7682212de80689a7abd5211","name":"profile","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base/profile","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"d8f650290152b2a3b4f832a0c8743ad3bdf5484110a7ed2e288a5fd14b1251cd","name":"main_pages.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base/profile/main_pages.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":29,"lastModifiedTime":1776767625810}}]}]}]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default":{"hashValue":"78d7c4d30fe855899aa58cff447c13b717c45217f50e7743bfaa574579b07138","name":"default","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"d48b87b1921bcf022e6c774aa1d9d1e97877773c47cf9b04af348098a2caae03","name":".caches","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/.caches","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"721c9525ade2ea8903d343ef25cf68b9bf4ab0aad56bb7b01fbe48d09bc7fcf4","name":"base","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/.caches/base","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"","name":"media","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/.caches/base/media","type":"directory","isSymbolicLink":false,"children":[]}]}]},{"hashValue":"8f7c4a9a77daa18bc88b64b9bb6ed10f237535326b92e594aebd86ec535f2ff2","name":"ark_module.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ark_module.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":1237,"lastModifiedTime":1777374230175}},{"hashValue":"446e7511aa2e64704758e61582cae074b0dd0b47845e304151b418ddd438b06d","name":"ids_map","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ids_map","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"8b1bebfd64f266a6193fa70566650e62b1546c74a01ea0b656496b3d471dc8d1","name":"id_defined.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ids_map/id_defined.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":491,"lastModifiedTime":1777374230245}}]},{"hashValue":"5dfa3926ef379ca7fb9ff69cb167d5d1fcac6be898f2e18fbc0a98cae5dd1776","name":"module.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/module.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":1704,"lastModifiedTime":1777374230241}},{"hashValue":"a5e01f349ffc5d480fc56e56cea4df0fdcf98b2ee91a46909b7421b96f38c00b","name":"opt-compression.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/opt-compression.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":189,"lastModifiedTime":1777374230181}},{"hashValue":"95068df3ab6f1a1a62b5bea41be79f5b2b4ea75c8db41a1d5bf05075ad001045","name":"resConfig.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resConfig.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":1096,"lastModifiedTime":1777374230181}},{"hashValue":"c09c1ca6ab0657c5f70bba687f97dec9b91b85d43cbe271571c2d7ce0713179d","name":"resources","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"c38b6fe9a5310550b86e69e363ffc6424622f6a643255bc03d43c9e193f58745","name":"base","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"fdd38e629811607cdf30de06af923937b4d2b3195463c176c6cc37132766bee5","name":"media","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/media","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"ebccbb708de0951a0f54d2c7e38b21381ec64ffbcafc6af347f5c20e2c39a22e","name":"app_icon.png","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/media/app_icon.png","type":"file","isSymbolicLink":false,"fileMetaData":{"size":68,"lastModifiedTime":1777374230244}}]},{"hashValue":"5731eaff68c23a09a8c5a0514736d4673fdf14e9a20be71844cca1d418febb1b","name":"profile","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"e77c24be8b47c474b8a7869446d68b96f190d8a931fcc8804fe5161379618583","name":"main_pages.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile/main_pages.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":29,"lastModifiedTime":1777374230241}}]}]},{"hashValue":"93d5507192eace4b371a866fa5bec024622b3587a7cb6cf41b1430fc39c6dbba","name":"rawfile","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"df0ad6e43880f09c90ebf95f19110178aba6890df0010ebda7485029e2b543b4","name":"arkdata","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile/arkdata","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"","name":"schema","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile/arkdata/schema","type":"directory","isSymbolicLink":false,"children":[]}]}]}]},{"hashValue":"70d50210794429422d9eb71f5275b7f00e3c07cf24b19046948f1221f08e62c8","name":"resources.index","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources.index","type":"file","isSymbolicLink":false,"fileMetaData":{"size":528,"lastModifiedTime":1777374230245}},{"hashValue":"9f0a6cddfba2a3c8ed075219467ca9fe090347d113ba48ba5dc7d42c6f89c298","name":"ResourceTable.txt","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ResourceTable.txt","type":"file","isSymbolicLink":false,"fileMetaData":{"size":199,"lastModifiedTime":1777374230241}}]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/r/default/ResourceTable.h":{"hashValue":"23315d26a9bd75c66720756fff3733f6baa027ec356aeaa867c2d69233599260","name":"ResourceTable.h","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/r/default/ResourceTable.h","type":"file","isSymbolicLink":false,"fileMetaData":{"size":1007,"lastModifiedTime":1777374230241}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/r/default":{"hashValue":"f61eb502cdf4aba036736f3aeeecbe1321cff969117c172d436964ac2d62e164","name":"default","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/r/default","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"23315d26a9bd75c66720756fff3733f6baa027ec356aeaa867c2d69233599260","name":"ResourceTable.h","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/r/default/ResourceTable.h","type":"file","isSymbolicLink":false,"fileMetaData":{"size":1007,"lastModifiedTime":1777374230241}}]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/stripped_native_libs/default":{"hashValue":"","name":"default","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/stripped_native_libs/default","type":"directory","isSymbolicLink":false,"children":[]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default":{"hashValue":"c3ed678adc01183f8cbf5202361a29e2ce52ecd7b0e13797ae59155a83befcf6","name":"default","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"f6850188cdb425425bc140de4fde4f75089bf9a11080ded55b835720edeb9d8e","name":"loader.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/loader.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":943,"lastModifiedTime":1777374230130}},{"hashValue":"f20c571234667fce87bd15286ac0680fecee2a9889ede2a5f40d6ffbab9c56f9","name":"pkgContextInfo.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":300,"lastModifiedTime":1777374230108}}]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ResourceTable.txt":{"hashValue":"9f0a6cddfba2a3c8ed075219467ca9fe090347d113ba48ba5dc7d42c6f89c298","name":"ResourceTable.txt","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ResourceTable.txt","type":"file","isSymbolicLink":false,"fileMetaData":{"size":199,"lastModifiedTime":1777374230241}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ark_module.json":{"hashValue":"8f7c4a9a77daa18bc88b64b9bb6ed10f237535326b92e594aebd86ec535f2ff2","name":"ark_module.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ark_module.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":1237,"lastModifiedTime":1777374230175}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile":{"hashValue":"5731eaff68c23a09a8c5a0514736d4673fdf14e9a20be71844cca1d418febb1b","name":"profile","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"e77c24be8b47c474b8a7869446d68b96f190d8a931fcc8804fe5161379618583","name":"main_pages.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile/main_pages.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":29,"lastModifiedTime":1777374230241}}]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets":{"hashValue":"adfe6bec7475a9ac26765280aa413bec178deffc4d717b3ca85e4034c6e2d0fd","name":"ets","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"9ce116c4fdb46c2738b40fa836df1a54884a723d70f31489d46c0b519c5640ec","name":"entryability","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/entryability","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"39c773a4142051c3724d164b97d572d7c7a3b7ae7b11842587ba63664a4739fc","name":"EntryAbility.ets","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/entryability/EntryAbility.ets","type":"file","isSymbolicLink":false,"fileMetaData":{"size":779,"lastModifiedTime":1776767639047}}]},{"hashValue":"32607d148692cb34623d59eeed50835a380a93771aa584743f084eeaa17f3a81","name":"pages","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"e8532072e154a1ba404716e52907cbdfc1df24948da7e90f2ee2a90a0ed4cfb7","name":"Index.ets","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets","type":"file","isSymbolicLink":false,"fileMetaData":{"size":3772,"lastModifiedTime":1777375291986}}]}]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets":{"hashValue":"934d3fd1f70c2f269250169c8ab0f456945b50c47d57285b0b8072c0646950ed","name":"ets","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"e6c5d5a3f496e515232b5b1462e0831cf10a800ec72fc323eb9bb0498712dd12","name":"modules.abc","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets/modules.abc","type":"file","isSymbolicLink":false,"fileMetaData":{"size":66688,"lastModifiedTime":1777375315694}},{"hashValue":"0be5e11f80b4afd1533a8bb896ed98c0442a3bf5e7d2fa5c2b3e6a2230f57af9","name":"sourceMaps.map","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets/sourceMaps.map","type":"file","isSymbolicLink":false,"fileMetaData":{"size":33743,"lastModifiedTime":1777375315644}}]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/patch/default/base_native_libs.json":{"hashValue":"97cf11a1c8e797209af9b1ebb9e848464221aa1f272c3a01fe840d91bfa25637","name":"base_native_libs.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/patch/default/base_native_libs.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":25,"lastModifiedTime":1777374166053}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/module.json5":{"hashValue":"a54d0da0a32fad146f07a6266dea27d36a1d2732ab08a530c03fde91d1988222","name":"module.json5","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/module.json5","type":"file","isSymbolicLink":false,"fileMetaData":{"size":103,"lastModifiedTime":1777374218333}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build-profile.json5":{"hashValue":"1b74e6f3f180b2053b19d6b0b83ef1e21e72cbafb15ac8227df1494d99dbf183","name":"build-profile.json5","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build-profile.json5","type":"file","isSymbolicLink":false,"fileMetaData":{"size":96,"lastModifiedTime":1776767489721}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/oh-package.json5":{"hashValue":"bb1fc6ce7ed60366262e9404e2f9bc73ef94a4673cb2de7c739478889abe6129","name":"oh-package.json5","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/oh-package.json5","type":"file","isSymbolicLink":false,"fileMetaData":{"size":296,"lastModifiedTime":1776767487028}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/BuildProfile.ets":{"hashValue":"4724f59bdd3add6300cfe9cd8da3e5fe09c3cff2c234aab308259afdc24b6a9d","name":"BuildProfile.ets","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/BuildProfile.ets","type":"file","isSymbolicLink":false,"fileMetaData":{"size":519,"lastModifiedTime":1777374230111}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/merge_profile/default/module.json":{"hashValue":"23abf5a0659dba4200bdefa343047b6fa156d5c0e92aec49e9f382908dcbf973","name":"module.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/merge_profile/default/module.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":592,"lastModifiedTime":1777374230112}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/libs/default":{"hashValue":"","name":"default","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/libs/default","type":"directory","isSymbolicLink":false,"children":[]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/stripped_native_libs/default":{"hashValue":"","name":"default","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/stripped_native_libs/default","type":"directory","isSymbolicLink":false,"children":[]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/Index.ets":{"hashValue":"368e66a50a180644fff2c6d3a47e130e0fbe37e6b12cd0268bdb858540ef6c67","name":"Index.ets","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/Index.ets","type":"file","isSymbolicLink":false,"fileMetaData":{"size":813,"lastModifiedTime":1777372031070}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets":{"hashValue":"6f24dae8dead7f95164f20bcd4968153a14d90b9ccfb077437757be562a2533e","name":"ets","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"4753044ad888a9ab931c0d4d9b116a3218a23a59bb5fd539b67fcaf9349bff1b","name":"core","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"b19fd995d5ade15f1bf2fcf53f1f9a1b752c2a70425c513ad225c256bf0fa7fc","name":"HttpClient.ets","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/HttpClient.ets","type":"file","isSymbolicLink":false,"fileMetaData":{"size":1762,"lastModifiedTime":1777375214213}},{"hashValue":"650fee3ab9b7baeb53939cb346099db1047261043aac08acc1037c8e96b610b7","name":"SDKContext.ets","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets","type":"file","isSymbolicLink":false,"fileMetaData":{"size":1544,"lastModifiedTime":1777365046980}},{"hashValue":"b7c94516f983ef430465558628e293dd158b8c5f1e7e3e961dbadf0c73dbd9f6","name":"Types.ets","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/Types.ets","type":"file","isSymbolicLink":false,"fileMetaData":{"size":2968,"lastModifiedTime":1777375206041}}]},{"hashValue":"56e24dcbd00c003f650dab51f625746b94f00eebc788d9fb93b0405e1330865b","name":"im","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"8330783c938428cae4372f3e0efb461eb8e778faad6acc6b0d0653a121ab0451","name":"ImClient.ets","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets","type":"file","isSymbolicLink":false,"fileMetaData":{"size":15782,"lastModifiedTime":1777375305479}}]},{"hashValue":"97b182a394e48c81922943c3a66829e39d178fd4b53d70e74dba40b667a2a120","name":"push","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/push","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"e072a7d724b77c8eb761e44c5fd3651b22c0762d91a4c66d05d81f9ccfe2bfd2","name":"PushSDK.ets","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/push/PushSDK.ets","type":"file","isSymbolicLink":false,"fileMetaData":{"size":1037,"lastModifiedTime":1777375221936}}]},{"hashValue":"343bdeb3989d0a8e3bb48c94b3fae6cbdb9fc223aa32d7dcfa4ed4d6fcde9664","name":"update","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/update","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"c45c8675aa2be834f8bb39c6fa5cef2a6f76ceef635223fe0d4dfe600defcb94","name":"UpdateSDK.ets","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/update/UpdateSDK.ets","type":"file","isSymbolicLink":false,"fileMetaData":{"size":2197,"lastModifiedTime":1776767555565}}]},{"hashValue":"382f267e540f69d8d740d6133af516cc4aeb13e3168d28c1a27adf194ddf8a74","name":"XuqmSDK.ets","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/XuqmSDK.ets","type":"file","isSymbolicLink":false,"fileMetaData":{"size":912,"lastModifiedTime":1777375115385}}]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile":{"hashValue":"93d5507192eace4b371a866fa5bec024622b3587a7cb6cf41b1430fc39c6dbba","name":"rawfile","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"df0ad6e43880f09c90ebf95f19110178aba6890df0010ebda7485029e2b543b4","name":"arkdata","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile/arkdata","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"","name":"schema","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile/arkdata/schema","type":"directory","isSymbolicLink":false,"children":[]}]}]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/ModuleInfo.ts":{"hashValue":"","name":"emptyroot","path":"","type":"unknown","isSymbolicLink":false,"children":[]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build/cache/default/integrated_hsp/integratedHspCache.json":{"hashValue":"","name":"emptyroot","path":"","type":"unknown","isSymbolicLink":false,"children":[]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/syscap/default/rpcid.sc":{"hashValue":"","name":"emptyroot","path":"","type":"unknown","isSymbolicLink":false,"children":[]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/startup/default/startup_config.json":{"hashValue":"","name":"emptyroot","path":"","type":"unknown","isSymbolicLink":false,"children":[]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/js":{"hashValue":"","name":"emptyroot","path":"","type":"unknown","isSymbolicLink":false,"children":[]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/module.json":{"hashValue":"5dfa3926ef379ca7fb9ff69cb167d5d1fcac6be898f2e18fbc0a98cae5dd1776","name":"module.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/module.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":1704,"lastModifiedTime":1777374230241}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/package/default/module.json":{"hashValue":"3cae8de704c4b182a356465bc04f0bf2bf1205e85a1c1bc2a17ae8f34abe974c","name":"module.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/package/default/module.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":1425,"lastModifiedTime":1777375315702}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources":{"hashValue":"c09c1ca6ab0657c5f70bba687f97dec9b91b85d43cbe271571c2d7ce0713179d","name":"resources","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"c38b6fe9a5310550b86e69e363ffc6424622f6a643255bc03d43c9e193f58745","name":"base","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"fdd38e629811607cdf30de06af923937b4d2b3195463c176c6cc37132766bee5","name":"media","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/media","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"ebccbb708de0951a0f54d2c7e38b21381ec64ffbcafc6af347f5c20e2c39a22e","name":"app_icon.png","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/media/app_icon.png","type":"file","isSymbolicLink":false,"fileMetaData":{"size":68,"lastModifiedTime":1777374230244}}]},{"hashValue":"5731eaff68c23a09a8c5a0514736d4673fdf14e9a20be71844cca1d418febb1b","name":"profile","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"e77c24be8b47c474b8a7869446d68b96f190d8a931fcc8804fe5161379618583","name":"main_pages.json","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile/main_pages.json","type":"file","isSymbolicLink":false,"fileMetaData":{"size":29,"lastModifiedTime":1777374230241}}]}]},{"hashValue":"93d5507192eace4b371a866fa5bec024622b3587a7cb6cf41b1430fc39c6dbba","name":"rawfile","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"df0ad6e43880f09c90ebf95f19110178aba6890df0010ebda7485029e2b543b4","name":"arkdata","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile/arkdata","type":"directory","isSymbolicLink":false,"children":[{"hashValue":"","name":"schema","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile/arkdata/schema","type":"directory","isSymbolicLink":false,"children":[]}]}]}]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources.index":{"hashValue":"70d50210794429422d9eb71f5275b7f00e3c07cf24b19046948f1221f08e62c8","name":"resources.index","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources.index","type":"file","isSymbolicLink":false,"fileMetaData":{"size":528,"lastModifiedTime":1777374230245}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets/sourceMaps.map":{"hashValue":"0be5e11f80b4afd1533a8bb896ed98c0442a3bf5e7d2fa5c2b3e6a2230f57af9","name":"sourceMaps.map","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets/sourceMaps.map","type":"file","isSymbolicLink":false,"fileMetaData":{"size":33743,"lastModifiedTime":1777375315644}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/entry-default-unsigned.hap":{"hashValue":"002aa681315c74dbbfdbfc555875aa2b4bf33fd2906d2647c0facc9c1a400dcc","name":"entry-default-unsigned.hap","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/entry-default-unsigned.hap","type":"file","isSymbolicLink":false,"fileMetaData":{"size":104285,"lastModifiedTime":1777375315950}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/source_map/default/sourceMaps.map":{"hashValue":"ed3ea10fa1805257dabfb0ac7f6ca56cf5c35404e2b74bfa5a94105f7028bda4","name":"sourceMaps.map","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/source_map/default/sourceMaps.map","type":"file","isSymbolicLink":false,"fileMetaData":{"size":33743,"lastModifiedTime":1777375315709}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/mapping/sourceMaps.map":{"hashValue":"ed3ea10fa1805257dabfb0ac7f6ca56cf5c35404e2b74bfa5a94105f7028bda4","name":"sourceMaps.map","path":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/mapping/sourceMaps.map","type":"file","isSymbolicLink":false,"fileMetaData":{"size":33743,"lastModifiedTime":1777375315709}},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/entry-default-signed.hap":{"hashValue":"","name":"emptyroot","path":"","type":"unknown","isSymbolicLink":false,"children":[]},"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/symbol":{"hashValue":"","name":"emptyroot","path":"","type":"unknown","isSymbolicLink":false,"children":[]}} \ No newline at end of file diff --git a/.hvigor/cache/meta.json b/.hvigor/cache/meta.json new file mode 100644 index 0000000..7333ab2 --- /dev/null +++ b/.hvigor/cache/meta.json @@ -0,0 +1 @@ +{"compileSdkVersion":"6.0.2(22)","hvigorVersion":"6.22.4","toolChainsVersion":"6.0.2.130"} diff --git a/.hvigor/cache/task-cache.json b/.hvigor/cache/task-cache.json new file mode 100644 index 0000000..0dc827a --- /dev/null +++ b/.hvigor/cache/task-cache.json @@ -0,0 +1 @@ +{":XuqmGroup-HarmonySDK:entry:default@PreBuild":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"apiType\",\"_value\":\"stageMode\",\"_valueType\":\"string\",\"_hash\":\"9ac09f1ae36c615b7034e57604d143ee6f7923a31f49ed79ba5af84e65bd2cd5\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"byteCodeHar\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"4a2f0b0a7b1684665f4cfdf556e7849eb7b76fd73c8be3b83a43ccf9022a23dc\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"codeType\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"55d417a3ae2590190c5eec1f80e83526051dc5fd38bfdf095543a8ebfb0969d0\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"compatibleApiVersion\",\"_value\":12,\"_valueType\":\"number\",\"_hash\":\"3044b764a8e3877e0efd8c4a1f9a29375d8109057ef019dbc16ee2bd0977fdf4\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"compileApiVersion\",\"_value\":22,\"_valueType\":\"number\",\"_hash\":\"39a8179c13c106fe3669a913c239b7127f336f3907ceb40b31dbed36dd1719c0\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"configuration\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"b041968df1b26a31cfc4ac747e70435fa5a69b22512251322233d70b778fdade\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"configurationFileJson\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"38995319d700f1305e6f6c3f020f422155fa8dbd43f1ebc9125ad7fdfa41a760\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"customTypes\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"a53b59d3cf3d0e26864fb7740c427a8bb49c88847f89d2674bae0714f005cd69\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"deviceType\",\"_value\":[\"phone\",\"tablet\"],\"_valueType\":\"object\",\"_hash\":\"bdc817a61f297144fb6f3f8b4fc0be385c7d269e4a82da80ba2f27727c0b5825\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"excludeExpandImportDependencyNames\",\"_value\":[],\"_valueType\":\"object\",\"_hash\":\"7ac740b7270690c6ad8e2c54545fb0683a607618b35bc56fa079abd95d469671\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"integrated_hsp\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"c8e0a42238b6cb31ba5369f43f42fa7da63c8b99e3bc85ae67f55c6b25ba0540\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isExpandImportEnabled\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"b67a29a46e7f73582199a2914054cf91c9c3c5201bae6150d41cb4ff12f75a33\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isPreloadSystemSoEnabled\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"6ac08297964668ba6d6497fff711f690384b7295ce0ad8544261dd56d792025c\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isSingleFileEmitEnabled\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"e4c94844e729a98f2b41957f8a30299cb4b7008cbb2b94ad9f2b339252b2a3e8\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isSupportOhpmProj\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"9338de8e6e2136c4fbf4aca514d6b4410fe55bc08b27a9df26930b1bc45b181b\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"moduleDependencyNames\",\"_value\":[],\"_valueType\":\"object\",\"_hash\":\"a371086d2024edef8e9b6734d528894e3bd2f5c7a4f7158b62a2545963146831\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"moduleJsonOpt\",\"_value\":\"{\\\"jsonFilePath\\\":\\\"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5\\\",\\\"profile\\\":{\\\"module\\\":{\\\"name\\\":\\\"entry\\\",\\\"type\\\":\\\"entry\\\",\\\"description\\\":\\\"$string:module_desc\\\",\\\"mainElement\\\":\\\"EntryAbility\\\",\\\"deviceTypes\\\":[\\\"phone\\\",\\\"tablet\\\"],\\\"deliveryWithInstall\\\":true,\\\"installationFree\\\":false,\\\"pages\\\":\\\"$profile:main_pages\\\",\\\"abilities\\\":[{\\\"name\\\":\\\"EntryAbility\\\",\\\"srcEntry\\\":\\\"./ets/entryability/EntryAbility.ets\\\",\\\"description\\\":\\\"$string:EntryAbility_desc\\\",\\\"icon\\\":\\\"$media:app_icon\\\",\\\"label\\\":\\\"$string:EntryAbility_label\\\",\\\"startWindowIcon\\\":\\\"$media:app_icon\\\",\\\"startWindowBackground\\\":\\\"$color:start_window_background\\\",\\\"exported\\\":true,\\\"skills\\\":[{\\\"entities\\\":[\\\"entity.system.home\\\"],\\\"actions\\\":[\\\"action.system.home\\\"]}]}],\\\"requestPermissions\\\":[{\\\"name\\\":\\\"ohos.permission.INTERNET\\\"},{\\\"name\\\":\\\"ohos.permission.GET_BUNDLE_INFO\\\"}]}},\\\"deviceTypes\\\":[\\\"phone\\\",\\\"tablet\\\"],\\\"deviceConfig\\\":\\\"deviceTypes\\\",\\\"configurationProfile\\\":\\\"module.json5\\\"}\",\"_valueType\":\"string\",\"_hash\":\"5b0c5c87c59a6cfc895aaa3c9abb8220f4575085640f39b948bdf315d488af8b\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"profileModuleName\",\"_value\":\"entry\",\"_valueType\":\"string\",\"_hash\":\"78e7b86d1a6d2e9e31fd10fc7e74c0a899014f517dec9eb153efb2374affaafd\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"removePermissions\",\"_valueType\":\"undefined\",\"_hash\":\"68ce79e87f7bc97a0e03070101e01e1b68b101f52b35a57fde4a1b321be3bdde\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"requiredDeviceType\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"d53e6eaa8506ecaa660904b04d0296bd447ad8d55785334aa590509fbf0cf454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"sdkToolchainsComponentVersion\",\"_value\":\"6.0.2.130\",\"_valueType\":\"string\",\"_hash\":\"d651b80755b24f6cd3201d7d9bec0cf9db0e83953fe88dd1e138b5a8d3860de5\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"sourceRoots\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"09f6b4afb8ee03e299b12d3d2d17163933dca5fed9db3a9d0bc0694a7c1a8ff8\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"targetStatusCode\",\"_value\":2,\"_valueType\":\"number\",\"_hash\":\"6946489f2257d736396b7b570077542aef0edefbcd7f8686c6020a2a9d5530fa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"transformLib\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"e290891c0838ca6470020dcf292833f2588221dca1a7fa6af21969fb642d4e6d\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"useNormalizedOHMUrl\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"0224eeca0e5401fc0c653dbed2bab63ff91b2d1c8e23719fbab4e11e695311d9\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@PreBuild","_key":":XuqmGroup-HarmonySDK:entry:default@PreBuild","_executionId":":XuqmGroup-HarmonySDK:entry:default@PreBuild:1777374230030","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5",{"isDirectory":false,"fileSnapShotHashValue":"93abaa7167cb4f7156939cf7fc2fe27ec07fa7ad6cb1b051fe9505237492efab"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5",{"isDirectory":false,"fileSnapShotHashValue":"45f0792f900f0b774c2d78199d68f493e806157a6b838cb91b6c35e5708405a1"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5",{"fileSnapShotHashValue":"e7a5d914285bcdc2366b1e3ca0a7b220a809c2b0b51f630e8ac0dd35e622c0e1"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build-profile.json5",{"fileSnapShotHashValue":"637eb00fec419bbf9cc3531c0bd5dfabc002588e06b17e5b48f7889c647ec6af"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base/profile/main_pages.json",{"fileSnapShotHashValue":"d8f650290152b2a3b4f832a0c8743ad3bdf5484110a7ed2e288a5fd14b1251cd"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigor/hvigor-config.json5",{"isDirectory":true,"fileSnapShotHashValue":"d23916aa724b4d8c931cc359160909580acef6ac7906edb118fe5b86ae3d6734"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/oh-package.json5",{"fileSnapShotHashValue":"dc5ab13285deddac685e9bccf21c9e6dc8c779ae156162d21d58c2c507609fed"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/oh-package.json5",{"fileSnapShotHashValue":"be4d9035ca8fe1dc36496464660318ffe4a96e78c4ddd65001173b3b831b38bd"}]]},"_outputFiles":{"dataType":"Map","value":[]}},":XuqmGroup-HarmonySDK:entry:default@CreateModuleInfo":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"ohosUiTransformOptimization\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"integratedHspUseGetCurrentBundleName\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\"}"}],"_successful":false,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@CreateModuleInfo","_key":":XuqmGroup-HarmonySDK:entry:default@CreateModuleInfo","_executionId":":XuqmGroup-HarmonySDK:entry:default@CreateModuleInfo:1777375313073","_inputFiles":{"dataType":"Map","value":[]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/ModuleInfo.ts",{"isDirectory":false,"fileSnapShotHashValue":""}]]}},":XuqmGroup-HarmonySDK:entry:default@GenerateMetadata":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"artifactName\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"83695c4a9aeeecff80241c7739fb4858fbd92eee38a63a48e9abc62df8327edb\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isSigned\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"049b5033138d5af3ba0f2b57ef67b23b56dc83fa0d41843418bae22b2df6770b\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"relatedEntryModules\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"72c4b1665c5896b02fa9b3f992e3ce78eefc5d0a7a14e5c60fd74172282780ff\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"remoteHspMetaData\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"a5bfa161987bd54bfe3921d933d3ab72f30023b9433005ef1e57f1715c4d2176\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"targetDeviceType\",\"_value\":[\"phone\",\"tablet\"],\"_valueType\":\"object\",\"_hash\":\"f993fe861c52872c35464934fbda2a1ea85840ae595f9c7078ebe2d325243d6f\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@GenerateMetadata","_key":":XuqmGroup-HarmonySDK:entry:default@GenerateMetadata","_executionId":":XuqmGroup-HarmonySDK:entry:default@GenerateMetadata:1777374165501","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5",{"fileSnapShotHashValue":"45f0792f900f0b774c2d78199d68f493e806157a6b838cb91b6c35e5708405a1"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/hap_metadata/default/output_metadata.json",{"fileSnapShotHashValue":"07f2d503b94e7a50baef40c63a15593330da0ded0049d15b7fdc391d6cbb57fb"}]]}},":XuqmGroup-HarmonySDK:entry:default@MergeProfile":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"appJsonOpt\",\"_value\":\"{\\\"app\\\":{\\\"bundleName\\\":\\\"com.xuqmgroup.harmony.sdk\\\",\\\"vendor\\\":\\\"xuqm\\\",\\\"versionCode\\\":1000000,\\\"versionName\\\":\\\"1.0.0\\\",\\\"icon\\\":\\\"$media:app_icon\\\",\\\"label\\\":\\\"$string:EntryAbility_label\\\"}}\",\"_valueType\":\"string\",\"_hash\":\"78fdbb324e23f6854e4219697678a8e219252b5231e55796229cdb25f6e4ef4c\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"asanEnable\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"5de58ee96d39449ca7f885eeee57df5a760e34739a5248ac20e31818d201489d\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"buildProfileAbilities\",\"_valueType\":\"undefined\",\"_hash\":\"1b37f4c5d5e5e2c6096b0545d5c31b5bf64f747075a5e3c85f050e9e4079664b\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"buildRoot\",\"_value\":\"build\",\"_valueType\":\"string\",\"_hash\":\"57bdd28a519c384eec33006ccb97c870b2af8357499f1588cd8aacb47fc8884d\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"compatibleSdkVersion\",\"_value\":12,\"_valueType\":\"number\",\"_hash\":\"0483df92e8ea8f540a8c7aece5f2f53d8414d672e000c369fd521e6f3687de51\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"hwasanEnable\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"f8bd6c4afae917a91bd141551210297e8a9b68ab5fb0adf6880673768a5ed7c6\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"includeAppScopeRes\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"3c2a9052be609669b88b444d06b45b9cd9aa9bdbc5c549cf890a3bd37fc58d60\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"integratedHsp\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"ab7ebc56ff53ba733fc5e60a1c0e16725afa0b21d0966f7b50cce78a02e48d74\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isBundledDependencies\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"2a22b42a8504b32b68a8cc4173a9e266e6540a9372bf6553176105f698c20dc2\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isDebug\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"3a45940aa78d73204cdc3177ffe70a15eb93b11c64cbef458f919e1b86a6ec6e\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isHarModule\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"bc6aa6a015fd1e648c9c5e447449ece707a678e12fba08771f90ddfe134af3f0\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"moduleJsonOpt\",\"_value\":\"{\\\"module\\\":{\\\"name\\\":\\\"entry\\\",\\\"type\\\":\\\"entry\\\",\\\"description\\\":\\\"$string:module_desc\\\",\\\"mainElement\\\":\\\"EntryAbility\\\",\\\"deviceTypes\\\":[\\\"phone\\\",\\\"tablet\\\"],\\\"deliveryWithInstall\\\":true,\\\"installationFree\\\":false,\\\"pages\\\":\\\"$profile:main_pages\\\",\\\"abilities\\\":[{\\\"name\\\":\\\"EntryAbility\\\",\\\"srcEntry\\\":\\\"./ets/entryability/EntryAbility.ets\\\",\\\"description\\\":\\\"$string:EntryAbility_desc\\\",\\\"icon\\\":\\\"$media:app_icon\\\",\\\"label\\\":\\\"$string:EntryAbility_label\\\",\\\"startWindowIcon\\\":\\\"$media:app_icon\\\",\\\"startWindowBackground\\\":\\\"$color:start_window_background\\\",\\\"exported\\\":true,\\\"skills\\\":[{\\\"entities\\\":[\\\"entity.system.home\\\"],\\\"actions\\\":[\\\"action.system.home\\\"]}]}],\\\"requestPermissions\\\":[{\\\"name\\\":\\\"ohos.permission.INTERNET\\\"},{\\\"name\\\":\\\"ohos.permission.GET_BUNDLE_INFO\\\"}]}}\",\"_valueType\":\"string\",\"_hash\":\"5549cdcc6dacc53c41a5448ca399f0a021639e17e44cf942b168770fd08f38ca\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"multiProjects\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"dea8161c1a034ab86a9348c01dfdc4626089c413501f5016bc4be71f6214747b\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"ohLibs\",\"_value\":[\"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/merge_profile/default/module.json\"],\"_valueType\":\"object\",\"_hash\":\"64539627bfc366599209c941d2b7424ba76ab00cd4583bcee17f394ff6c1367f\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"packageName\",\"_value\":\"entry\",\"_valueType\":\"string\",\"_hash\":\"2d02010f87ac0c4b88be91ac58b940c03eada62489017432aebd339464bf633a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"projectConfigAppOpt\",\"_valueType\":\"undefined\",\"_hash\":\"690bf99bac27c7294cc7056baecf9d1f5996393f344fda6ad83f08f971cfc658\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"releaseType\",\"_value\":\"Release\",\"_valueType\":\"string\",\"_hash\":\"f9d0b6fb1c4b29b9f08a909bbe00e8b5aa50d5eaf9eb1d05491d02351d827df1\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"removePermissions\",\"_valueType\":\"undefined\",\"_hash\":\"68ce79e87f7bc97a0e03070101e01e1b68b101f52b35a57fde4a1b321be3bdde\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"targetSdkVersion\",\"_value\":22,\"_valueType\":\"number\",\"_hash\":\"c67e1d133c411dc227f9785a49c2d98c30a32c1e780eb0dfb5778b7f4a92708e\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"tsanEnable\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"4a39a3fadc194c5ff71505bb8da8930c39fe534c877674936b5fa82a4d0c2229\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"ubsanEnable\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"b7f8b201242d9c1e5fe6ef2f7faa4fddf88b1072d6bdbbac7f3e0841ecaf8a6f\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@MergeProfile","_key":":XuqmGroup-HarmonySDK:entry:default@MergeProfile","_executionId":":XuqmGroup-HarmonySDK:entry:default@MergeProfile:1777374230125","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5",{"fileSnapShotHashValue":"93abaa7167cb4f7156939cf7fc2fe27ec07fa7ad6cb1b051fe9505237492efab"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5",{"fileSnapShotHashValue":"e7a5d914285bcdc2366b1e3ca0a7b220a809c2b0b51f630e8ac0dd35e622c0e1"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5",{"fileSnapShotHashValue":"45f0792f900f0b774c2d78199d68f493e806157a6b838cb91b6c35e5708405a1"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/merge_profile/default/module.json",{"fileSnapShotHashValue":"23abf5a0659dba4200bdefa343047b6fa156d5c0e92aec49e9f382908dcbf973"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/merge_profile/default/module.json",{"fileSnapShotHashValue":"fb3aba78bc394efe68b62999e3417b79754c1e6e88e2e5259e92231155959b5d"}]]}},":XuqmGroup-HarmonySDK:entry:default@CreateBuildProfile":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"buildMode\",\"_value\":\"Debug\",\"_valueType\":\"string\",\"_hash\":\"e5ca4ddaac7575fd86f22541aff1adda5124dfd5735cfbc8d69a5813341024a2\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"buildModeName\",\"_value\":\"debug\",\"_valueType\":\"string\",\"_hash\":\"eed88fbd50af6d038f129b1446ece3710f8c3d0a5302679a6fb87ad47253410a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"buildProfileFields\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"c045d039f2ef60e781c590cc5f82f3d6d7f97bbb3b5af5252b100ace8eb332bf\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"projectOhosConfigAppOpt\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"31886fe858c1eb45b5d680c019a12d2bebebf813093c3583804d179ae701c5c3\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@CreateBuildProfile","_key":":XuqmGroup-HarmonySDK:entry:default@CreateBuildProfile","_executionId":":XuqmGroup-HarmonySDK:entry:default@CreateBuildProfile:1777374230123","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5",{"fileSnapShotHashValue":"93abaa7167cb4f7156939cf7fc2fe27ec07fa7ad6cb1b051fe9505237492efab"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5",{"fileSnapShotHashValue":"e7a5d914285bcdc2366b1e3ca0a7b220a809c2b0b51f630e8ac0dd35e622c0e1"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/BuildProfile.ets",{"fileSnapShotHashValue":"aff68ef38ae68e93b20a42a36f890e814d6a34ab91e86b74d5773563f091b9bd"}]]}},":XuqmGroup-HarmonySDK:entry:default@GeneratePkgContextInfo":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"pkgContextInfoMap\",\"_value\":\"{\\\"@xuqm/harmony-sdk\\\":{\\\"packageName\\\":\\\"@xuqm/harmony-sdk\\\",\\\"bundleName\\\":\\\"\\\",\\\"moduleName\\\":\\\"\\\",\\\"version\\\":\\\"0.1.0\\\",\\\"entryPath\\\":\\\"Index.ets\\\",\\\"isSO\\\":false,\\\"dependencyAlias\\\":\\\"\\\"},\\\"entry\\\":{\\\"packageName\\\":\\\"entry\\\",\\\"bundleName\\\":\\\"\\\",\\\"moduleName\\\":\\\"\\\",\\\"version\\\":\\\"\\\",\\\"entryPath\\\":\\\"src/main/\\\",\\\"isSO\\\":false,\\\"dependencyAlias\\\":\\\"\\\"}}\",\"_valueType\":\"string\",\"_hash\":\"7ea1aa0aba2d5d92ada39632935bd13224eb344c5e98f95d7d2eccd29055b0ec\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"useNormalizedOHMUrl\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"0224eeca0e5401fc0c653dbed2bab63ff91b2d1c8e23719fbab4e11e695311d9\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@GeneratePkgContextInfo","_key":":XuqmGroup-HarmonySDK:entry:default@GeneratePkgContextInfo","_executionId":":XuqmGroup-HarmonySDK:entry:default@GeneratePkgContextInfo:1777374230107","_inputFiles":{"dataType":"Map","value":[]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json",{"isDirectory":false,"fileSnapShotHashValue":"f20c571234667fce87bd15286ac0680fecee2a9889ede2a5f40d6ffbab9c56f9"}]]}},":XuqmGroup-HarmonySDK:entry:default@ProcessIntegratedHsp":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"bundleName\",\"_value\":\"com.xuqmgroup.harmony.sdk\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"versionCode\",\"_value\":1000000,\"_valueType\":\"number\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@ProcessIntegratedHsp","_key":":XuqmGroup-HarmonySDK:entry:default@ProcessIntegratedHsp","_executionId":":XuqmGroup-HarmonySDK:entry:default@ProcessIntegratedHsp:1777375313080","_inputFiles":{"dataType":"Map","value":[]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build/cache/default/integrated_hsp/integratedHspCache.json",{"isDirectory":false,"fileSnapShotHashValue":""}]]}},":XuqmGroup-HarmonySDK:entry:default@MakePackInfo":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"appResOpt\",\"_value\":\"{\\\"app\\\":{\\\"bundleName\\\":\\\"com.xuqmgroup.harmony.sdk\\\",\\\"vendor\\\":\\\"xuqm\\\",\\\"versionCode\\\":1000000,\\\"versionName\\\":\\\"1.0.0\\\",\\\"icon\\\":\\\"$media:app_icon\\\",\\\"label\\\":\\\"$string:EntryAbility_label\\\"}}\",\"_valueType\":\"string\",\"_hash\":\"b135de0c2b02147406ce27a4c5f845ea9fffcfa4a73233cad6ecea4b46fa2576\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"compatibleSdkVersion\",\"_value\":12,\"_valueType\":\"number\",\"_hash\":\"0483df92e8ea8f540a8c7aece5f2f53d8414d672e000c369fd521e6f3687de51\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"compileSdkVersion\",\"_value\":22,\"_valueType\":\"number\",\"_hash\":\"cdbd73464d63f9a9f731956e66ae36f7069748f13738b74b88adef9a3c71e9d7\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"deviceTypes\",\"_value\":[\"phone\",\"tablet\"],\"_valueType\":\"object\",\"_hash\":\"88d075caa4e523fc969feea447f60e3ed3904dfeeaff76c2fa26a63e115db577\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"integratedHsp\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"ab7ebc56ff53ba733fc5e60a1c0e16725afa0b21d0966f7b50cce78a02e48d74\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"moduleJsonOpt\",\"_value\":\"{\\\"module\\\":{\\\"name\\\":\\\"entry\\\",\\\"type\\\":\\\"entry\\\",\\\"description\\\":\\\"$string:module_desc\\\",\\\"mainElement\\\":\\\"EntryAbility\\\",\\\"deviceTypes\\\":[\\\"phone\\\",\\\"tablet\\\"],\\\"deliveryWithInstall\\\":true,\\\"pages\\\":\\\"$profile:main_pages\\\",\\\"abilities\\\":[{\\\"name\\\":\\\"EntryAbility\\\",\\\"srcEntry\\\":\\\"./ets/entryability/EntryAbility.ets\\\",\\\"description\\\":\\\"$string:EntryAbility_desc\\\",\\\"icon\\\":\\\"$media:app_icon\\\",\\\"label\\\":\\\"$string:EntryAbility_label\\\",\\\"startWindowIcon\\\":\\\"$media:app_icon\\\",\\\"startWindowBackground\\\":\\\"$color:start_window_background\\\",\\\"exported\\\":true,\\\"skills\\\":[{\\\"entities\\\":[\\\"entity.system.home\\\"],\\\"actions\\\":[\\\"action.system.home\\\"]}]}],\\\"requestPermissions\\\":[{\\\"name\\\":\\\"ohos.permission.INTERNET\\\"},{\\\"name\\\":\\\"ohos.permission.GET_BUNDLE_INFO\\\"}]}}\",\"_valueType\":\"string\",\"_hash\":\"91c80db2ab7b21299dbb65f6589c0967f22a2468ec0529cfa9146d581803e012\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"projectConfigAppOpt\",\"_valueType\":\"undefined\",\"_hash\":\"690bf99bac27c7294cc7056baecf9d1f5996393f344fda6ad83f08f971cfc658\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"releaseType\",\"_value\":\"Release\",\"_valueType\":\"string\",\"_hash\":\"f9d0b6fb1c4b29b9f08a909bbe00e8b5aa50d5eaf9eb1d05491d02351d827df1\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@MakePackInfo","_key":":XuqmGroup-HarmonySDK:entry:default@MakePackInfo","_executionId":":XuqmGroup-HarmonySDK:entry:default@MakePackInfo:1777374230132","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5",{"fileSnapShotHashValue":"93abaa7167cb4f7156939cf7fc2fe27ec07fa7ad6cb1b051fe9505237492efab"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5",{"fileSnapShotHashValue":"45f0792f900f0b774c2d78199d68f493e806157a6b838cb91b6c35e5708405a1"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5",{"fileSnapShotHashValue":"e7a5d914285bcdc2366b1e3ca0a7b220a809c2b0b51f630e8ac0dd35e622c0e1"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/pack.info",{"fileSnapShotHashValue":"f4d4ba848be93b38d82b3d8135215efd5e8a8b41ae564e103e06beb0e89a1177"}]]}},":XuqmGroup-HarmonySDK:entry:default@SyscapTransform":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"deviceTypes\",\"_value\":[\"phone\",\"tablet\"],\"_valueType\":\"object\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@SyscapTransform","_key":":XuqmGroup-HarmonySDK:entry:default@SyscapTransform","_executionId":":XuqmGroup-HarmonySDK:entry:default@SyscapTransform:1777375313083","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/syscap_tool",{"fileSnapShotHashValue":"b958209a3ec5cc7742a4a2b445cdac4238c26a5369352d0f25b7e05a7a3d450b"}],["/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/ets/api/device-define",{"fileSnapShotHashValue":"a8d85f0f9fc7442385b54f1d37db5a12d988988dbff9086e5548e2cdfd017fe3"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/syscap/default/rpcid.sc",{"fileSnapShotHashValue":""}]]}},":XuqmGroup-HarmonySDK:entry:default@ProcessProfile":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"arkEnable\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"7b9b15dd1b9fc3e86436218773a6dc9dc99032a90912d6a5212068ffccdf88eb\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"compatibleSdkVersionStage\",\"_value\":\"beta1\",\"_valueType\":\"string\",\"_hash\":\"dcb64e353fbf1e4f1d2a7e92558cda2355a4a8c7dfc17b5764ec81a2d75f2e6f\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"compileMode\",\"_value\":\"esmodule\",\"_valueType\":\"string\",\"_hash\":\"b252a618b764d3a16946606383b78d4fb15c248889fa7eeaeaf03053cb658f5a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"dependency\",\"_value\":\"[]\",\"_valueType\":\"string\",\"_hash\":\"9d1613100177e076da7529c27f37d83c55cc84cdbf3ea8ed9c413dfeab139615\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"deviceTypes\",\"_value\":[\"phone\",\"tablet\"],\"_valueType\":\"object\",\"_hash\":\"88d075caa4e523fc969feea447f60e3ed3904dfeeaff76c2fa26a63e115db577\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"harExcludeHSPDependencies\",\"_valueType\":\"undefined\",\"_hash\":\"331c1752db2c29f99b65f1d0dca12ed8c44c4c83200d526bea1a713724931403\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isFakeUIAbilityExists\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"8fa4cb980c078f05c591462c78d4698c9883955ec5066c75f3c2e9c2d4df22a1\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@ProcessProfile","_key":":XuqmGroup-HarmonySDK:entry:default@ProcessProfile","_executionId":":XuqmGroup-HarmonySDK:entry:default@ProcessProfile:1777374230134","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/merge_profile/default/module.json",{"fileSnapShotHashValue":"fb3aba78bc394efe68b62999e3417b79754c1e6e88e2e5259e92231155959b5d"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/process_profile/default/module.json",{"fileSnapShotHashValue":"dc3a6a264754cd1cb21944583e42581cf809f2dcb84cc9007b3e309208e94874"}]]}},":XuqmGroup-HarmonySDK:entry:default@ProcessRouterMap":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"bundleName\",\"_value\":\"com.xuqmgroup.harmony.sdk\",\"_valueType\":\"string\",\"_hash\":\"200a1a17d0aeeb634135c53f08571062b8738627a71bd9441d3e344cfbc73b24\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"byteCodeHar\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"4a2f0b0a7b1684665f4cfdf556e7849eb7b76fd73c8be3b83a43ccf9022a23dc\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"harPackageNameList\",\"_value\":\"[\\\"@xuqm/harmony-sdk\\\"]\",\"_valueType\":\"string\",\"_hash\":\"1323e8f60dbe9e3439734d158074231cf1eec7e8b546695fa1f4eae8d5d132ad\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"localDependencyRouterMapObjArray\",\"_value\":\"4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945\",\"_valueType\":\"string\",\"_hash\":\"4042f2c4db98fe6dee384ccf04397d52a7904830e20edf907c22121717b98bbc\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"moduleName\",\"_value\":\"entry\",\"_valueType\":\"string\",\"_hash\":\"b13b0eab8d69f39b957729567b7910ec0a18affd43229c684d0da472e0c01a72\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"obfuscated\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"63574f7bd39da453b2e948ec0bacfd459aa4c1261de54c243aad1a259378ea39\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"remoteDependencyRouterMapObjArray\",\"_value\":\"4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945\",\"_valueType\":\"string\",\"_hash\":\"c2f9b879ec13c08f47524d9989f1800176ace170a21357b038fa3ed206b6f28d\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"useNormalizedOHMUrl\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"0224eeca0e5401fc0c653dbed2bab63ff91b2d1c8e23719fbab4e11e695311d9\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@ProcessRouterMap","_key":":XuqmGroup-HarmonySDK:entry:default@ProcessRouterMap","_executionId":":XuqmGroup-HarmonySDK:entry:default@ProcessRouterMap:1777374230119","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/oh-package.json5",{"fileSnapShotHashValue":"dc5ab13285deddac685e9bccf21c9e6dc8c779ae156162d21d58c2c507609fed"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/oh-package.json5",{"fileSnapShotHashValue":"be4d9035ca8fe1dc36496464660318ffe4a96e78c4ddd65001173b3b831b38bd"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5",{"fileSnapShotHashValue":"45f0792f900f0b774c2d78199d68f493e806157a6b838cb91b6c35e5708405a1"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json",{"fileSnapShotHashValue":"f20c571234667fce87bd15286ac0680fecee2a9889ede2a5f40d6ffbab9c56f9"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/router_map/default/temp-router-map.json",{"fileSnapShotHashValue":"bdb98c33482c72055b71c5b95ba8bbcbfa7bc55784abec2c620d508a5b5526f2"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/router_map/default/loader-router-map.json",{"fileSnapShotHashValue":"c4fe93460f3d43bf4013c337a0e8af3878fb533f6bfb21bcfe557300762ea109"}]]}},":XuqmGroup-HarmonySDK:entry:default@ProcessShareConfig":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@ProcessShareConfig","_key":":XuqmGroup-HarmonySDK:entry:default@ProcessShareConfig","_executionId":":XuqmGroup-HarmonySDK:entry:default@ProcessShareConfig:1777374230121","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/oh-package.json5",{"fileSnapShotHashValue":"dc5ab13285deddac685e9bccf21c9e6dc8c779ae156162d21d58c2c507609fed"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/oh-package.json5",{"fileSnapShotHashValue":"be4d9035ca8fe1dc36496464660318ffe4a96e78c4ddd65001173b3b831b38bd"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5",{"fileSnapShotHashValue":"45f0792f900f0b774c2d78199d68f493e806157a6b838cb91b6c35e5708405a1"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json",{"fileSnapShotHashValue":"f20c571234667fce87bd15286ac0680fecee2a9889ede2a5f40d6ffbab9c56f9"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/share_config/default/temp-share-config.json",{"fileSnapShotHashValue":"aed98b36b6d5b208231e5d5453f4fce93e907ea4d227c84bc921ee7773d2e0ba"}]]}},":XuqmGroup-HarmonySDK:entry:default@ProcessStartupConfig":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"appStartupFileName\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"@xuqm/harmony-sdk\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"useNormalizedOHMUrl\",\"_value\":true,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"shouldCollectPreloadSystemSo\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@ProcessStartupConfig","_key":":XuqmGroup-HarmonySDK:entry:default@ProcessStartupConfig","_executionId":":XuqmGroup-HarmonySDK:entry:default@ProcessStartupConfig:1777375313092","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json",{"fileSnapShotHashValue":"f20c571234667fce87bd15286ac0680fecee2a9889ede2a5f40d6ffbab9c56f9"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/startup/default/startup_config.json",{"fileSnapShotHashValue":""}]]}},":XuqmGroup-HarmonySDK:entry:default@ProcessResource":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/opt-compression.json\",\"_value\":\"{\\\"context\\\":{\\\"extensionPath\\\":\\\"/Users/xuqinmin/sdk/command-line-tools/sdk/default/hms/toolchains/lib/libimage_transcoder_shared.dylib\\\"},\\\"compression\\\":{\\\"media\\\":{\\\"enable\\\":false},\\\"filters\\\":[]}}\",\"_valueType\":\"string\",\"_hash\":\"847261dabb0f2418e3e6a8f433589686f43d21c0e012ba3ccbf0ac8583bb4674\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"ignoreResourcePattern\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fa8a2bf7e8701fa08ecd49defdde15eba74e0f6f1c0edd32f96fec2db98c287d\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"includeAppScopeRes\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"3c2a9052be609669b88b444d06b45b9cd9aa9bdbc5c549cf890a3bd37fc58d60\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"resConfigJsonContent\",\"_value\":\"{\\\"configPath\\\":\\\"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/process_profile/default/module.json\\\",\\\"packageName\\\":\\\"com.xuqmgroup.harmony.sdk\\\",\\\"output\\\":\\\"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default\\\",\\\"moduleNames\\\":\\\"entry,xuqmSdk\\\",\\\"ResourceTable\\\":[\\\"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/r/default/ResourceTable.h\\\"],\\\"moduleResources\\\":[\\\"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources\\\"],\\\"dependencies\\\":[],\\\"iconCheck\\\":true,\\\"ids\\\":\\\"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ids_map\\\",\\\"definedIds\\\":\\\"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ids_map/id_defined.json\\\",\\\"definedSysIds\\\":\\\"/Users/xuqinmin/sdk/command-line-tools/sdk/default/hms/toolchains/id_defined.json\\\"}\",\"_valueType\":\"string\",\"_hash\":\"7b24424e981b0face6b7767d0e10c81e182448d99863633d90954f25653cb4d4\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"resource_str\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"9a11b63a88a050aea92ebf0b9b95f6e60d441fcbadd1c0a4a4e8470f9b9fa1e3\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@ProcessResource","_key":":XuqmGroup-HarmonySDK:entry:default@ProcessResource","_executionId":":XuqmGroup-HarmonySDK:entry:default@ProcessResource:1777374230180","_inputFiles":{"dataType":"Map","value":[]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resConfig.json",{"isDirectory":false,"fileSnapShotHashValue":"95068df3ab6f1a1a62b5bea41be79f5b2b4ea75c8db41a1d5bf05075ad001045"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/opt-compression.json",{"isDirectory":false,"fileSnapShotHashValue":"a5e01f349ffc5d480fc56e56cea4df0fdcf98b2ee91a46909b7421b96f38c00b"}]]}},":XuqmGroup-HarmonySDK:entry:default@GenerateLoaderJson":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"anBuildMode\",\"_value\":\"type\",\"_valueType\":\"string\",\"_hash\":\"b6c2cdf83442e0a2e9276b44ad76436c6d0bcc210edecb703114e95a598dc3c3\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"apPath\",\"_value\":\"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/modules.ap\",\"_valueType\":\"string\",\"_hash\":\"b8059407ab31144b3df714e88fed7d9294db8c2afbbe70ab2afb320d401dc605\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"appStartupFileName\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"08d4364dd4e30f366a567cdf729bce6192c7be3a576ec780f3246de4aab394b2\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"compatibleApiVersion\",\"_value\":12,\"_valueType\":\"number\",\"_hash\":\"3044b764a8e3877e0efd8c4a1f9a29375d8109057ef019dbc16ee2bd0977fdf4\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"compileApiVersion\",\"_value\":22,\"_valueType\":\"number\",\"_hash\":\"39a8179c13c106fe3669a913c239b7127f336f3907ceb40b31dbed36dd1719c0\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"compileMode\",\"_value\":\"esmodule\",\"_valueType\":\"string\",\"_hash\":\"b252a618b764d3a16946606383b78d4fb15c248889fa7eeaeaf03053cb658f5a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"dependencyModuleAbility\",\"_valueType\":\"undefined\",\"_hash\":\"bab8a6d024eec92d9e8c6141d046c98fc050bd3d5639e87bc82d241bca917faa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"fallbackAnBuild\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"6f8ed2a511c0bba942d7dcfa03ce73e61df388e1078d8aa764eab1ed2579ffbe\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"harNameOhmMap\",\"_value\":\"{}\",\"_valueType\":\"string\",\"_hash\":\"acc11cef2aff25c28c5419917e8ca31d827bff2f1f80b5f15bed3075b95d2453\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"hspNameOhmMap\",\"_value\":\"{}\",\"_valueType\":\"string\",\"_hash\":\"aa81d73257173f0b16a1e81016649a76f0a7185c632329bedc7591c5cd891a26\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isBundledDependencies\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"2a22b42a8504b32b68a8cc4173a9e266e6540a9372bf6553176105f698c20dc2\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isByteCodeHar\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"31aa2831dc8ab7d38bfe1091d4eb58c38ef100d622c96497f4e1c6e12552058f\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isByteCodeHarOptimize\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"765fcc2a093117f1d048b712c99977ad120ee4b32fbeed77fca6f1d07d4b3bc0\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isCustomizedHar\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"6db6fd1f39d1744e2e57a81969a3512fdb144b7185d321984df3500918db3f84\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isFullCompilationEnabled\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"bdc425fc76182216717b60e6f66f4259cd2a62ca4644d08b4c942f5424be8abc\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isHarWithCoverage\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"7a6ae2a3f4fb0a66f3dc3df4cb8e5ed15d62ba95343bf2c447c668fc09bd75cd\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isOhosTest\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"de6340d3d0a55dfab74711d2022cbe7a75d555e002e47935640e8115424af634\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"modulePathMap\",\"_value\":\"{\\\"xuqmSdk\\\":\\\"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk\\\",\\\"entry\\\":\\\"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry\\\"}\",\"_valueType\":\"string\",\"_hash\":\"94d5db25b7b4883b364cb9e49de36e9f4454f36e83d7e82d828d3a2e22770bf5\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"module_dependencies\",\"_value\":\"{\\\"@xuqm/harmony-sdk\\\":\\\"file:../xuqm-sdk\\\"}\",\"_valueType\":\"string\",\"_hash\":\"a23be7af3088bf098b3e79b1ebf74999a301ef7155b0577aa1e623409540e2bd\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"needSubmitArkTsWidget\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"b7eb2cc34539dd6a8fc1ccae4b3b043e164f4e8b113031a5fe6444fdb13433e7\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"nodeModulesPath\",\"_value\":\"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/node_modules\",\"_valueType\":\"string\",\"_hash\":\"13f7eb67d6b1a038727f5db558da6d07e8399e3a82ee02d4c2f207de990e5bea\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"overrides\",\"_valueType\":\"undefined\",\"_hash\":\"76b98eeb6f5b5311e5e4846e8d49c6f29c84b1224760f1658f8089449a1bf5a8\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"projectRootPath\",\"_value\":\"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK\",\"_valueType\":\"string\",\"_hash\":\"4d444dce2652a77669c6c628dc2904589cb70645a9d2599d48b882ea9554e830\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"project_dependencies\",\"_valueType\":\"undefined\",\"_hash\":\"4c252cfc3242ee0b6bf219bcf876e1d4ae50a488587e573dc8c32b26b40176a3\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"shouldTreatHarAsHap\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"9722cc179e8721df3beeeebd7c6023318e49eea338f2c3a57f278c73cb4fa861\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"targetConfig\",\"_value\":\"{\\\"name\\\":\\\"default\\\",\\\"runtimeOS\\\":\\\"HarmonyOS\\\"}\",\"_valueType\":\"string\",\"_hash\":\"7ad92f60e2fd77af3dbc83817459151c9bef443dfaa7f71055e9da4150769890\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"useNormalizedOHMUrl\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"0224eeca0e5401fc0c653dbed2bab63ff91b2d1c8e23719fbab4e11e695311d9\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@GenerateLoaderJson","_key":":XuqmGroup-HarmonySDK:entry:default@GenerateLoaderJson","_executionId":":XuqmGroup-HarmonySDK:entry:default@GenerateLoaderJson:1777374230128","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json",{"fileSnapShotHashValue":"f20c571234667fce87bd15286ac0680fecee2a9889ede2a5f40d6ffbab9c56f9"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/router_map/default/temp-router-map.json",{"fileSnapShotHashValue":"bdb98c33482c72055b71c5b95ba8bbcbfa7bc55784abec2c620d508a5b5526f2"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/loader.json",{"isDirectory":false,"fileSnapShotHashValue":"f6850188cdb425425bc140de4fde4f75089bf9a11080ded55b835720edeb9d8e"}]]}},":XuqmGroup-HarmonySDK:entry:default@ProcessLibs":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"excludeFromHar\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"6df8c70e1286b558ff469defa1217f7ab51015a20dce3ca94cf8685c9537866d\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isBundledDependencies\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"2a22b42a8504b32b68a8cc4173a9e266e6540a9372bf6553176105f698c20dc2\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isByteCodeHar\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"31aa2831dc8ab7d38bfe1091d4eb58c38ef100d622c96497f4e1c6e12552058f\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@ProcessLibs","_key":":XuqmGroup-HarmonySDK:entry:default@ProcessLibs","_executionId":":XuqmGroup-HarmonySDK:entry:default@ProcessLibs:1777374230259","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/libs/default",{"fileSnapShotHashValue":""}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5",{"fileSnapShotHashValue":"e7a5d914285bcdc2366b1e3ca0a7b220a809c2b0b51f630e8ac0dd35e622c0e1"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build-profile.json5",{"fileSnapShotHashValue":"637eb00fec419bbf9cc3531c0bd5dfabc002588e06b17e5b48f7889c647ec6af"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/libs/default",{"isDirectory":true,"fileSnapShotHashValue":""}]]}},":XuqmGroup-HarmonySDK:entry:default@CompileResource":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/restool,-l,/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resConfig.json\",\"_valueType\":\"string\",\"_hash\":\"1497d4cf29e6c04fcb54834e286933f7326051c5f3a59a2fef8c725fbc8a2409\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/restool\",\"_valueType\":\"string\",\"_hash\":\"a877052faf8389f77cac191cc901f865ddb0d41bb7c601619bd68eb9536bba99\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"TARGET_CONFIG\",\"_value\":\"{\\\"name\\\":\\\"default\\\",\\\"runtimeOS\\\":\\\"HarmonyOS\\\"}\",\"_valueType\":\"string\",\"_hash\":\"7fdcf3f64196fcedfa428177782e041d50d8aa55637c02d356aeb8f32f08304e\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"useNormalizedOHMUrl\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"0224eeca0e5401fc0c653dbed2bab63ff91b2d1c8e23719fbab4e11e695311d9\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@CompileResource","_key":":XuqmGroup-HarmonySDK:entry:default@CompileResource","_executionId":":XuqmGroup-HarmonySDK:entry:default@CompileResource:1777374230183","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources",{"fileSnapShotHashValue":"d8710f0fec6df6ca625d0eb1544d988243a8cc79ff8be0e59ed7ba3212d22db5"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/process_profile/default/module.json",{"isDirectory":false,"fileSnapShotHashValue":"dc3a6a264754cd1cb21944583e42581cf809f2dcb84cc9007b3e309208e94874"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resConfig.json",{"isDirectory":false,"fileSnapShotHashValue":"95068df3ab6f1a1a62b5bea41be79f5b2b4ea75c8db41a1d5bf05075ad001045"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default",{"isDirectory":true,"fileSnapShotHashValue":"78d7c4d30fe855899aa58cff447c13b717c45217f50e7743bfaa574579b07138"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/r/default/ResourceTable.h",{"isDirectory":false,"fileSnapShotHashValue":"23315d26a9bd75c66720756fff3733f6baa027ec356aeaa867c2d69233599260"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/r/default",{"isDirectory":true,"fileSnapShotHashValue":"f61eb502cdf4aba036736f3aeeecbe1321cff969117c172d436964ac2d62e164"}]]}},":XuqmGroup-HarmonySDK:entry:default@DoNativeStrip":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"debugSymbol\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"1082dd5e6f56bef4530b1600ccdfc7599cf6cc8a5c6d5087d1cab1f405df3d2f\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@DoNativeStrip","_key":":XuqmGroup-HarmonySDK:entry:default@DoNativeStrip","_executionId":":XuqmGroup-HarmonySDK:entry:default@DoNativeStrip:1777374165772","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/libs/default",{"isDirectory":true,"fileSnapShotHashValue":""}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/stripped_native_libs/default",{"isDirectory":true,"fileSnapShotHashValue":""}]]}},":XuqmGroup-HarmonySDK:entry:default@CompileArkTS":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"debuggable\",\"_value\":true,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isArk\",\"_value\":true,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"needCoverageInsert\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"ark.tsImportSendable\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"customTypes\",\"_value\":[],\"_valueType\":\"object\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isByteCodeHarOptimize\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"@xuqm/harmony-sdk\",\"_value\":\"@xuqm/harmony-sdk: file:../xuqm-sdk\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"caseSensitiveCheck\",\"_value\":true,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"useNormalizedOHMUrl\",\"_value\":true,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"transformLib\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"compatibleSdkVersionStage\",\"_value\":\"beta1\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"skipOhModulesLint\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"autoLazyImport\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"allowEmptyBundleName\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"reExportCheckMode\",\"_value\":\"noCheck\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"executionMode\",\"_value\":\"memory\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"usePathPlaceholder\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"writeRollupCache\",\"_value\":true,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isExpandImportEnabled\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"expandImportExclude\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"lazyImportExclude\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"lazyImportInclude\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"ignoreCrossplatformCheck\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isHarDeduplicateEnabled\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"enableStrictCheckOHModule\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"disableSendableCheckRules\",\"_value\":[],\"_valueType\":\"object\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"useDeclarationFileSignature\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"customizedOptions\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"integratedHsp\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isPreloadSoEnabled\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"arkTsWdiget\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"OBFUSCATION_ENABLE\",\"_value\":\"undefined\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"OBFUSCATION_FILES_HASH\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"maxFlowDepth\",\"_value\":\"undefined\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"noExternalImportByPath\",\"_value\":true,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"copyCodeResourceEnable\",\"_value\":true,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"copyCodeResourceExcludes\",\"_value\":[],\"_valueType\":\"object\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"copyCodeResourceIncludes\",\"_value\":\"undefined\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"ohos.uiTransform.Optimization\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"ohos.rollupCache.useSourceHash\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"localModuleParamMap\",\"_value\":\"{}\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"autoLazyFilter\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@CompileArkTS","_key":":XuqmGroup-HarmonySDK:entry:default@CompileArkTS","_executionId":":XuqmGroup-HarmonySDK:entry:default@CompileArkTS:1777375313109","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default",{"isDirectory":true,"fileSnapShotHashValue":"c3ed678adc01183f8cbf5202361a29e2ce52ecd7b0e13797ae59155a83befcf6"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/Index.ets",{"fileSnapShotHashValue":"368e66a50a180644fff2c6d3a47e130e0fbe37e6b12cd0268bdb858540ef6c67"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets",{"isDirectory":true,"fileSnapShotHashValue":"6f24dae8dead7f95164f20bcd4968153a14d90b9ccfb077437757be562a2533e"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile",{"isDirectory":true,"fileSnapShotHashValue":"93d5507192eace4b371a866fa5bec024622b3587a7cb6cf41b1430fc39c6dbba"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ResourceTable.txt",{"fileSnapShotHashValue":"9f0a6cddfba2a3c8ed075219467ca9fe090347d113ba48ba5dc7d42c6f89c298"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ark_module.json",{"fileSnapShotHashValue":"8f7c4a9a77daa18bc88b64b9bb6ed10f237535326b92e594aebd86ec535f2ff2"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile",{"isDirectory":true,"fileSnapShotHashValue":"5731eaff68c23a09a8c5a0514736d4673fdf14e9a20be71844cca1d418febb1b"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets",{"isDirectory":true,"fileSnapShotHashValue":"adfe6bec7475a9ac26765280aa413bec178deffc4d717b3ca85e4034c6e2d0fd"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json",{"fileSnapShotHashValue":"f20c571234667fce87bd15286ac0680fecee2a9889ede2a5f40d6ffbab9c56f9"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/BuildProfile.ets",{"fileSnapShotHashValue":"aff68ef38ae68e93b20a42a36f890e814d6a34ab91e86b74d5773563f091b9bd"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/BuildProfile.ets",{"fileSnapShotHashValue":"4724f59bdd3add6300cfe9cd8da3e5fe09c3cff2c234aab308259afdc24b6a9d"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets",{"isDirectory":true,"fileSnapShotHashValue":"934d3fd1f70c2f269250169c8ab0f456945b50c47d57285b0b8072c0646950ed"}]]}},":XuqmGroup-HarmonySDK:entry:default@BuildJS":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"debuggable\",\"_value\":true,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isArk\",\"_value\":true,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"needCoverageInsert\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"ark.tsImportSendable\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"customTypes\",\"_value\":[],\"_valueType\":\"object\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isByteCodeHarOptimize\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"@xuqm/harmony-sdk\",\"_value\":\"@xuqm/harmony-sdk: file:../xuqm-sdk\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"caseSensitiveCheck\",\"_value\":true,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"useNormalizedOHMUrl\",\"_value\":true,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"transformLib\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"compatibleSdkVersionStage\",\"_value\":\"beta1\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"skipOhModulesLint\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"autoLazyImport\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"allowEmptyBundleName\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"reExportCheckMode\",\"_value\":\"noCheck\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"executionMode\",\"_value\":\"memory\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"usePathPlaceholder\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"writeRollupCache\",\"_value\":true,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isExpandImportEnabled\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"expandImportExclude\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"lazyImportExclude\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"lazyImportInclude\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"ignoreCrossplatformCheck\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isHarDeduplicateEnabled\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"enableStrictCheckOHModule\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"disableSendableCheckRules\",\"_value\":[],\"_valueType\":\"object\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"useDeclarationFileSignature\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"customizedOptions\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"integratedHsp\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"autoLazyFilter\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\"}"}],"_successful":false,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@BuildJS","_key":":XuqmGroup-HarmonySDK:entry:default@BuildJS","_executionId":":XuqmGroup-HarmonySDK:entry:default@BuildJS:1777375313117","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default",{"isDirectory":true,"fileSnapShotHashValue":"c3ed678adc01183f8cbf5202361a29e2ce52ecd7b0e13797ae59155a83befcf6"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/Index.ets",{"fileSnapShotHashValue":"368e66a50a180644fff2c6d3a47e130e0fbe37e6b12cd0268bdb858540ef6c67"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile",{"isDirectory":true,"fileSnapShotHashValue":"93d5507192eace4b371a866fa5bec024622b3587a7cb6cf41b1430fc39c6dbba"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ResourceTable.txt",{"fileSnapShotHashValue":"9f0a6cddfba2a3c8ed075219467ca9fe090347d113ba48ba5dc7d42c6f89c298"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ark_module.json",{"fileSnapShotHashValue":"8f7c4a9a77daa18bc88b64b9bb6ed10f237535326b92e594aebd86ec535f2ff2"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile",{"isDirectory":true,"fileSnapShotHashValue":"5731eaff68c23a09a8c5a0514736d4673fdf14e9a20be71844cca1d418febb1b"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json",{"fileSnapShotHashValue":"f20c571234667fce87bd15286ac0680fecee2a9889ede2a5f40d6ffbab9c56f9"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/js",{"isDirectory":true,"fileSnapShotHashValue":""}]]}},":XuqmGroup-HarmonySDK:entry:default@CacheNativeLibs":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"debugSymbol\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"1082dd5e6f56bef4530b1600ccdfc7599cf6cc8a5c6d5087d1cab1f405df3d2f\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@CacheNativeLibs","_key":":XuqmGroup-HarmonySDK:entry:default@CacheNativeLibs","_executionId":":XuqmGroup-HarmonySDK:entry:default@CacheNativeLibs:1777374165785","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/stripped_native_libs/default",{"isDirectory":true,"fileSnapShotHashValue":""}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/libs/default",{"isDirectory":true,"fileSnapShotHashValue":""}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/patch/default/base_native_libs.json",{"isDirectory":false,"fileSnapShotHashValue":"97cf11a1c8e797209af9b1ebb9e848464221aa1f272c3a01fe840d91bfa25637"}]]}},":XuqmGroup-HarmonySDK:xuqm-sdk:default@PreBuild":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"compileApiVersion\",\"_value\":22,\"_valueType\":\"number\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"compatibleApiVersion\",\"_value\":12,\"_valueType\":\"number\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"targetStatusCode\",\"_value\":2,\"_valueType\":\"number\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"apiType\",\"_value\":\"stageMode\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"deviceType\",\"_value\":[\"phone\",\"tablet\"],\"_valueType\":\"object\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"codeType\",\"_value\":true,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"sdkToolchainsComponentVersion\",\"_value\":\"6.0.2.130\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"profileModuleName\",\"_value\":\"xuqm-sdk\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"moduleJsonOpt\",\"_value\":\"{\\\"jsonFilePath\\\":\\\"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/module.json5\\\",\\\"profile\\\":{\\\"module\\\":{\\\"name\\\":\\\"xuqm-sdk\\\",\\\"type\\\":\\\"har\\\",\\\"deviceTypes\\\":[\\\"phone\\\",\\\"tablet\\\"]}},\\\"deviceTypes\\\":[\\\"phone\\\",\\\"tablet\\\"],\\\"deviceConfig\\\":\\\"deviceTypes\\\",\\\"configurationProfile\\\":\\\"module.json5\\\"}\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isSupportOhpmProj\",\"_value\":true,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"removePermissions\",\"_valueType\":\"undefined\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isPreloadSystemSoEnabled\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isSingleFileEmitEnabled\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"customTypes\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"requiredDeviceType\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"useNormalizedOHMUrl\",\"_value\":true,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"integrated_hsp\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"sourceRoots\",\"_value\":true,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"transformLib\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"byteCodeHar\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"configuration\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"configurationFileJson\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"moduleDependencyNames\",\"_value\":[],\"_valueType\":\"object\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isExpandImportEnabled\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"excludeExpandImportDependencyNames\",\"_value\":[],\"_valueType\":\"object\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\"}"}],"_successful":false,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"xuqm-sdk","_taskName":"default@PreBuild","_key":":XuqmGroup-HarmonySDK:xuqm-sdk:default@PreBuild","_executionId":":XuqmGroup-HarmonySDK:xuqm-sdk:default@PreBuild:1777374210686","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5",{"isDirectory":false,"fileSnapShotHashValue":"93abaa7167cb4f7156939cf7fc2fe27ec07fa7ad6cb1b051fe9505237492efab"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/module.json5",{"isDirectory":false,"fileSnapShotHashValue":"2d48a40220df7640dda922a9bab97ae18bd4575f8df5e499d8d7e797aa70a5f4"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5",{"fileSnapShotHashValue":"e14d32336fed3daaed334cb211ba11d0d5e4d26370921e0d45305b2fe97e21d3"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build-profile.json5",{"fileSnapShotHashValue":"1b74e6f3f180b2053b19d6b0b83ef1e21e72cbafb15ac8227df1494d99dbf183"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigor/hvigor-config.json5",{"isDirectory":true,"fileSnapShotHashValue":"d23916aa724b4d8c931cc359160909580acef6ac7906edb118fe5b86ae3d6734"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/oh-package.json5",{"fileSnapShotHashValue":"bb1fc6ce7ed60366262e9404e2f9bc73ef94a4673cb2de7c739478889abe6129"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/oh-package.json5",{"fileSnapShotHashValue":"be4d9035ca8fe1dc36496464660318ffe4a96e78c4ddd65001173b3b831b38bd"}]]},"_outputFiles":{"dataType":"Map","value":[]}},":XuqmGroup-HarmonySDK:xuqmSdk:default@PreBuild":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"apiType\",\"_value\":\"stageMode\",\"_valueType\":\"string\",\"_hash\":\"9ac09f1ae36c615b7034e57604d143ee6f7923a31f49ed79ba5af84e65bd2cd5\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"byteCodeHar\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"4a2f0b0a7b1684665f4cfdf556e7849eb7b76fd73c8be3b83a43ccf9022a23dc\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"codeType\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"55d417a3ae2590190c5eec1f80e83526051dc5fd38bfdf095543a8ebfb0969d0\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"compatibleApiVersion\",\"_value\":12,\"_valueType\":\"number\",\"_hash\":\"3044b764a8e3877e0efd8c4a1f9a29375d8109057ef019dbc16ee2bd0977fdf4\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"compileApiVersion\",\"_value\":22,\"_valueType\":\"number\",\"_hash\":\"39a8179c13c106fe3669a913c239b7127f336f3907ceb40b31dbed36dd1719c0\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"configuration\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"b041968df1b26a31cfc4ac747e70435fa5a69b22512251322233d70b778fdade\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"configurationFileJson\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"38995319d700f1305e6f6c3f020f422155fa8dbd43f1ebc9125ad7fdfa41a760\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"customTypes\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"a53b59d3cf3d0e26864fb7740c427a8bb49c88847f89d2674bae0714f005cd69\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"deviceType\",\"_value\":[\"phone\",\"tablet\"],\"_valueType\":\"object\",\"_hash\":\"bdc817a61f297144fb6f3f8b4fc0be385c7d269e4a82da80ba2f27727c0b5825\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"excludeExpandImportDependencyNames\",\"_value\":[],\"_valueType\":\"object\",\"_hash\":\"7ac740b7270690c6ad8e2c54545fb0683a607618b35bc56fa079abd95d469671\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"integrated_hsp\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"c8e0a42238b6cb31ba5369f43f42fa7da63c8b99e3bc85ae67f55c6b25ba0540\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isExpandImportEnabled\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"b67a29a46e7f73582199a2914054cf91c9c3c5201bae6150d41cb4ff12f75a33\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isPreloadSystemSoEnabled\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"6ac08297964668ba6d6497fff711f690384b7295ce0ad8544261dd56d792025c\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isSingleFileEmitEnabled\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"e4c94844e729a98f2b41957f8a30299cb4b7008cbb2b94ad9f2b339252b2a3e8\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isSupportOhpmProj\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"9338de8e6e2136c4fbf4aca514d6b4410fe55bc08b27a9df26930b1bc45b181b\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"moduleDependencyNames\",\"_value\":[],\"_valueType\":\"object\",\"_hash\":\"a371086d2024edef8e9b6734d528894e3bd2f5c7a4f7158b62a2545963146831\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"moduleJsonOpt\",\"_value\":\"{\\\"jsonFilePath\\\":\\\"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/module.json5\\\",\\\"profile\\\":{\\\"module\\\":{\\\"name\\\":\\\"xuqmSdk\\\",\\\"type\\\":\\\"har\\\",\\\"deviceTypes\\\":[\\\"phone\\\",\\\"tablet\\\"]}},\\\"deviceTypes\\\":[\\\"phone\\\",\\\"tablet\\\"],\\\"deviceConfig\\\":\\\"deviceTypes\\\",\\\"configurationProfile\\\":\\\"module.json5\\\"}\",\"_valueType\":\"string\",\"_hash\":\"3f8b31a436b8aafd6702a1415ea768aad36efd59da7a6d21867ac612f7b43664\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"profileModuleName\",\"_value\":\"xuqmSdk\",\"_valueType\":\"string\",\"_hash\":\"0162af91b8a5599ceed141d225222e8b283c493c6300aac0181c37e345a06b83\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"removePermissions\",\"_valueType\":\"undefined\",\"_hash\":\"68ce79e87f7bc97a0e03070101e01e1b68b101f52b35a57fde4a1b321be3bdde\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"requiredDeviceType\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"d53e6eaa8506ecaa660904b04d0296bd447ad8d55785334aa590509fbf0cf454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"sdkToolchainsComponentVersion\",\"_value\":\"6.0.2.130\",\"_valueType\":\"string\",\"_hash\":\"d651b80755b24f6cd3201d7d9bec0cf9db0e83953fe88dd1e138b5a8d3860de5\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"sourceRoots\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"09f6b4afb8ee03e299b12d3d2d17163933dca5fed9db3a9d0bc0694a7c1a8ff8\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"targetStatusCode\",\"_value\":2,\"_valueType\":\"number\",\"_hash\":\"6946489f2257d736396b7b570077542aef0edefbcd7f8686c6020a2a9d5530fa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"transformLib\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"e290891c0838ca6470020dcf292833f2588221dca1a7fa6af21969fb642d4e6d\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"useNormalizedOHMUrl\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"0224eeca0e5401fc0c653dbed2bab63ff91b2d1c8e23719fbab4e11e695311d9\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"xuqmSdk","_taskName":"default@PreBuild","_key":":XuqmGroup-HarmonySDK:xuqmSdk:default@PreBuild","_executionId":":XuqmGroup-HarmonySDK:xuqmSdk:default@PreBuild:1777374230083","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5",{"isDirectory":false,"fileSnapShotHashValue":"93abaa7167cb4f7156939cf7fc2fe27ec07fa7ad6cb1b051fe9505237492efab"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/module.json5",{"isDirectory":false,"fileSnapShotHashValue":"a54d0da0a32fad146f07a6266dea27d36a1d2732ab08a530c03fde91d1988222"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5",{"fileSnapShotHashValue":"e7a5d914285bcdc2366b1e3ca0a7b220a809c2b0b51f630e8ac0dd35e622c0e1"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build-profile.json5",{"fileSnapShotHashValue":"1b74e6f3f180b2053b19d6b0b83ef1e21e72cbafb15ac8227df1494d99dbf183"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigor/hvigor-config.json5",{"isDirectory":true,"fileSnapShotHashValue":"d23916aa724b4d8c931cc359160909580acef6ac7906edb118fe5b86ae3d6734"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/oh-package.json5",{"fileSnapShotHashValue":"bb1fc6ce7ed60366262e9404e2f9bc73ef94a4673cb2de7c739478889abe6129"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/oh-package.json5",{"fileSnapShotHashValue":"be4d9035ca8fe1dc36496464660318ffe4a96e78c4ddd65001173b3b831b38bd"}]]},"_outputFiles":{"dataType":"Map","value":[]}},":XuqmGroup-HarmonySDK:xuqmSdk:default@CreateHarBuildProfile":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"buildMode\",\"_value\":\"Debug\",\"_valueType\":\"string\",\"_hash\":\"e5ca4ddaac7575fd86f22541aff1adda5124dfd5735cfbc8d69a5813341024a2\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"buildModeName\",\"_value\":\"debug\",\"_valueType\":\"string\",\"_hash\":\"eed88fbd50af6d038f129b1446ece3710f8c3d0a5302679a6fb87ad47253410a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"buildProfileFields\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"c045d039f2ef60e781c590cc5f82f3d6d7f97bbb3b5af5252b100ace8eb332bf\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"harTargetName\",\"_value\":\"default\",\"_valueType\":\"string\",\"_hash\":\"407d4268ae88ccd4c690eed143b7c6861a072e07f1641479985687e5db26b287\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"harVersion\",\"_value\":\"0.1.0\",\"_valueType\":\"string\",\"_hash\":\"96f6eec51774b6c47b59ec414090ef0ee33db8b496d2790c4b82a13abdf2dcb4\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"xuqmSdk","_taskName":"default@CreateHarBuildProfile","_key":":XuqmGroup-HarmonySDK:xuqmSdk:default@CreateHarBuildProfile","_executionId":":XuqmGroup-HarmonySDK:xuqmSdk:default@CreateHarBuildProfile:1777374230110","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5",{"fileSnapShotHashValue":"93abaa7167cb4f7156939cf7fc2fe27ec07fa7ad6cb1b051fe9505237492efab"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5",{"fileSnapShotHashValue":"e7a5d914285bcdc2366b1e3ca0a7b220a809c2b0b51f630e8ac0dd35e622c0e1"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/BuildProfile.ets",{"fileSnapShotHashValue":"4724f59bdd3add6300cfe9cd8da3e5fe09c3cff2c234aab308259afdc24b6a9d"}]]}},":XuqmGroup-HarmonySDK:xuqmSdk:default@MergeProfile":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"appJsonOpt\",\"_value\":\"{\\\"app\\\":{\\\"bundleName\\\":\\\"com.xuqmgroup.harmony.sdk\\\",\\\"vendor\\\":\\\"xuqm\\\",\\\"versionCode\\\":1000000,\\\"versionName\\\":\\\"1.0.0\\\",\\\"icon\\\":\\\"$media:app_icon\\\",\\\"label\\\":\\\"$string:EntryAbility_label\\\"}}\",\"_valueType\":\"string\",\"_hash\":\"78fdbb324e23f6854e4219697678a8e219252b5231e55796229cdb25f6e4ef4c\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"asanEnable\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"5de58ee96d39449ca7f885eeee57df5a760e34739a5248ac20e31818d201489d\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"buildProfileAbilities\",\"_valueType\":\"undefined\",\"_hash\":\"1b37f4c5d5e5e2c6096b0545d5c31b5bf64f747075a5e3c85f050e9e4079664b\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"buildRoot\",\"_value\":\"build\",\"_valueType\":\"string\",\"_hash\":\"57bdd28a519c384eec33006ccb97c870b2af8357499f1588cd8aacb47fc8884d\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"compatibleSdkVersion\",\"_value\":12,\"_valueType\":\"number\",\"_hash\":\"0483df92e8ea8f540a8c7aece5f2f53d8414d672e000c369fd521e6f3687de51\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"hwasanEnable\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"f8bd6c4afae917a91bd141551210297e8a9b68ab5fb0adf6880673768a5ed7c6\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"includeAppScopeRes\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"3c2a9052be609669b88b444d06b45b9cd9aa9bdbc5c549cf890a3bd37fc58d60\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"integratedHsp\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"ab7ebc56ff53ba733fc5e60a1c0e16725afa0b21d0966f7b50cce78a02e48d74\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isBundledDependencies\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"2a22b42a8504b32b68a8cc4173a9e266e6540a9372bf6553176105f698c20dc2\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isDebug\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"3a45940aa78d73204cdc3177ffe70a15eb93b11c64cbef458f919e1b86a6ec6e\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isHarModule\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"dd757589e029eac007dd7621041965056dc8fc78e38167fcb18de719f47033b9\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"moduleJsonOpt\",\"_value\":\"{\\\"module\\\":{\\\"name\\\":\\\"xuqmSdk\\\",\\\"type\\\":\\\"har\\\",\\\"deviceTypes\\\":[\\\"phone\\\",\\\"tablet\\\"]}}\",\"_valueType\":\"string\",\"_hash\":\"97c5c7d9fc7aeb36717d5d2df8daea31ff7ae0a03cca2082b2d4e213b01816d6\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"multiProjects\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"dea8161c1a034ab86a9348c01dfdc4626089c413501f5016bc4be71f6214747b\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"ohLibs\",\"_value\":[],\"_valueType\":\"object\",\"_hash\":\"a126612b51ae7b5b49f64e029e1534ed38b87d56c35915c9b19e6d46695e567b\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"packageName\",\"_value\":\"@xuqm/harmony-sdk\",\"_valueType\":\"string\",\"_hash\":\"6710362af9feeb99cc5c5810e71d2d272773ade630f4a40b98d22d48abfb5bbe\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"projectConfigAppOpt\",\"_valueType\":\"undefined\",\"_hash\":\"690bf99bac27c7294cc7056baecf9d1f5996393f344fda6ad83f08f971cfc658\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"releaseType\",\"_value\":\"Release\",\"_valueType\":\"string\",\"_hash\":\"f9d0b6fb1c4b29b9f08a909bbe00e8b5aa50d5eaf9eb1d05491d02351d827df1\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"removePermissions\",\"_valueType\":\"undefined\",\"_hash\":\"68ce79e87f7bc97a0e03070101e01e1b68b101f52b35a57fde4a1b321be3bdde\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"targetSdkVersion\",\"_value\":22,\"_valueType\":\"number\",\"_hash\":\"c67e1d133c411dc227f9785a49c2d98c30a32c1e780eb0dfb5778b7f4a92708e\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"tsanEnable\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"4a39a3fadc194c5ff71505bb8da8930c39fe534c877674936b5fa82a4d0c2229\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"ubsanEnable\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"b7f8b201242d9c1e5fe6ef2f7faa4fddf88b1072d6bdbbac7f3e0841ecaf8a6f\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"xuqmSdk","_taskName":"default@MergeProfile","_key":":XuqmGroup-HarmonySDK:xuqmSdk:default@MergeProfile","_executionId":":XuqmGroup-HarmonySDK:xuqmSdk:default@MergeProfile:1777374230111","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5",{"fileSnapShotHashValue":"93abaa7167cb4f7156939cf7fc2fe27ec07fa7ad6cb1b051fe9505237492efab"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5",{"fileSnapShotHashValue":"e7a5d914285bcdc2366b1e3ca0a7b220a809c2b0b51f630e8ac0dd35e622c0e1"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/module.json5",{"fileSnapShotHashValue":"a54d0da0a32fad146f07a6266dea27d36a1d2732ab08a530c03fde91d1988222"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/merge_profile/default/module.json",{"fileSnapShotHashValue":"23abf5a0659dba4200bdefa343047b6fa156d5c0e92aec49e9f382908dcbf973"}]]}},":XuqmGroup-HarmonySDK:xuqmSdk:default@ProcessLibs":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"excludeFromHar\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"6df8c70e1286b558ff469defa1217f7ab51015a20dce3ca94cf8685c9537866d\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isBundledDependencies\",\"_value\":false,\"_valueType\":\"boolean\",\"_hash\":\"2a22b42a8504b32b68a8cc4173a9e266e6540a9372bf6553176105f698c20dc2\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"isByteCodeHar\",\"_value\":true,\"_valueType\":\"boolean\",\"_hash\":\"602aca23bc42f16e63c6411023c60a9ceca39a4f98997f1a59a27b4f1e4e1620\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"xuqmSdk","_taskName":"default@ProcessLibs","_key":":XuqmGroup-HarmonySDK:xuqmSdk:default@ProcessLibs","_executionId":":XuqmGroup-HarmonySDK:xuqmSdk:default@ProcessLibs:1777374230176","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5",{"fileSnapShotHashValue":"e7a5d914285bcdc2366b1e3ca0a7b220a809c2b0b51f630e8ac0dd35e622c0e1"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build-profile.json5",{"fileSnapShotHashValue":"1b74e6f3f180b2053b19d6b0b83ef1e21e72cbafb15ac8227df1494d99dbf183"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/libs/default",{"isDirectory":true,"fileSnapShotHashValue":""}]]}},":XuqmGroup-HarmonySDK:xuqmSdk:default@DoNativeStrip":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"6c1049eece256c5ecd9a72bb60d260f5eaa0c767e9261531c19a2711a4384caa\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"fab23d53b4bed861bede91aa55abd54ccbb48f2366122ec79fa9d6a917cab83a\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"f354d8b3443da1d086e3f8d488045965d1abb7d86e6d7602e63c46d85ae85454\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"debugSymbol\",\"_value\":\"\",\"_valueType\":\"string\",\"_hash\":\"1082dd5e6f56bef4530b1600ccdfc7599cf6cc8a5c6d5087d1cab1f405df3d2f\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"xuqmSdk","_taskName":"default@DoNativeStrip","_key":":XuqmGroup-HarmonySDK:xuqmSdk:default@DoNativeStrip","_executionId":":XuqmGroup-HarmonySDK:xuqmSdk:default@DoNativeStrip:1777374230181","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/libs/default",{"isDirectory":true,"fileSnapShotHashValue":""}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/stripped_native_libs/default",{"isDirectory":true,"fileSnapShotHashValue":""}]]}},":XuqmGroup-HarmonySDK:entry:default@GeneratePkgModuleJson":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@GeneratePkgModuleJson","_key":":XuqmGroup-HarmonySDK:entry:default@GeneratePkgModuleJson","_executionId":":XuqmGroup-HarmonySDK:entry:default@GeneratePkgModuleJson:1777375315701","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/module.json",{"fileSnapShotHashValue":"5dfa3926ef379ca7fb9ff69cb167d5d1fcac6be898f2e18fbc0a98cae5dd1776"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/package/default/module.json",{"fileSnapShotHashValue":"3cae8de704c4b182a356465bc04f0bf2bf1205e85a1c1bc2a17ae8f34abe974c"}]]}},":XuqmGroup-HarmonySDK:entry:default@ProcessCompiledResources":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"resourcePath\",\"_value\":\"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\"}"}],"_successful":false,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@ProcessCompiledResources","_key":":XuqmGroup-HarmonySDK:entry:default@ProcessCompiledResources","_executionId":":XuqmGroup-HarmonySDK:entry:default@ProcessCompiledResources:1777375315702","_inputFiles":{"dataType":"Map","value":[]},"_outputFiles":{"dataType":"Map","value":[]}},":XuqmGroup-HarmonySDK:entry:default@PackageHap":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"hotReload\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"integrated_hsp\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"projectConfigAppOpt\",\"_valueType\":\"undefined\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"sourceMapDir\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"bundleType\",\"_value\":\"app\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"java,-Dfile.encoding=utf-8,-jar,/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/lib/app_packing_tool.jar,--mode,hap,--force,true,--lib-path,/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/stripped_native_libs/default,--json-path,/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/package/default/module.json,--resources-path,/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources,--index-path,/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources.index,--pack-info-path,/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/pack.info,--out-path,/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/entry-default-unsigned.hap,--ets-path,/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets,--pkg-context-path,/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/lib/app_packing_tool.jar\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@PackageHap","_key":":XuqmGroup-HarmonySDK:entry:default@PackageHap","_executionId":":XuqmGroup-HarmonySDK:entry:default@PackageHap:1777375315703","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/stripped_native_libs/default",{"isDirectory":false,"fileSnapShotHashValue":""}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/module.json",{"isDirectory":false,"fileSnapShotHashValue":"5dfa3926ef379ca7fb9ff69cb167d5d1fcac6be898f2e18fbc0a98cae5dd1776"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources",{"isDirectory":false,"fileSnapShotHashValue":"c09c1ca6ab0657c5f70bba687f97dec9b91b85d43cbe271571c2d7ce0713179d"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources.index",{"isDirectory":false,"fileSnapShotHashValue":"70d50210794429422d9eb71f5275b7f00e3c07cf24b19046948f1221f08e62c8"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/pack.info",{"isDirectory":false,"fileSnapShotHashValue":"f4d4ba848be93b38d82b3d8135215efd5e8a8b41ae564e103e06beb0e89a1177"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets",{"isDirectory":false,"fileSnapShotHashValue":"934d3fd1f70c2f269250169c8ab0f456945b50c47d57285b0b8072c0646950ed"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json",{"isDirectory":false,"fileSnapShotHashValue":"f20c571234667fce87bd15286ac0680fecee2a9889ede2a5f40d6ffbab9c56f9"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets/sourceMaps.map",{"isDirectory":false,"fileSnapShotHashValue":"0be5e11f80b4afd1533a8bb896ed98c0442a3bf5e7d2fa5c2b3e6a2230f57af9"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/BuildProfile.ets",{"fileSnapShotHashValue":"aff68ef38ae68e93b20a42a36f890e814d6a34ab91e86b74d5773563f091b9bd"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/entry-default-unsigned.hap",{"isDirectory":false,"fileSnapShotHashValue":"002aa681315c74dbbfdbfc555875aa2b4bf33fd2906d2647c0facc9c1a400dcc"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/source_map/default/sourceMaps.map",{"fileSnapShotHashValue":"ed3ea10fa1805257dabfb0ac7f6ca56cf5c35404e2b74bfa5a94105f7028bda4"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/mapping/sourceMaps.map",{"fileSnapShotHashValue":"ed3ea10fa1805257dabfb0ac7f6ca56cf5c35404e2b74bfa5a94105f7028bda4"}]]}},":XuqmGroup-HarmonySDK:entry:default@SignHap":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"enableSignTask\",\"_value\":true,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"sdkToolchainsComponentVersion\",\"_value\":\"6.0.2.130\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"existSigningConfig\",\"_value\":false,\"_valueType\":\"boolean\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\"}"}],"_successful":true,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@SignHap","_key":":XuqmGroup-HarmonySDK:entry:default@SignHap","_executionId":":XuqmGroup-HarmonySDK:entry:default@SignHap:1777375315960","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/entry-default-unsigned.hap",{"isDirectory":false,"fileSnapShotHashValue":"002aa681315c74dbbfdbfc555875aa2b4bf33fd2906d2647c0facc9c1a400dcc"}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/entry-default-signed.hap",{"isDirectory":false,"fileSnapShotHashValue":""}]]}},":XuqmGroup-HarmonySDK:entry:default@CollectDebugSymbol":{"_inputs":[{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_COMMAND\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_TOOLCHAIN\",\"_value\":\"\",\"_valueType\":\"string\"}"},{"dataType":"ValueEntry","value":"{\"_name\":\"BUILTIN_TASK_ENV\",\"_value\":\"\",\"_valueType\":\"string\"}"}],"_successful":false,"_projectName":"XuqmGroup-HarmonySDK","_moduleName":"entry","_taskName":"default@CollectDebugSymbol","_key":":XuqmGroup-HarmonySDK:entry:default@CollectDebugSymbol","_executionId":":XuqmGroup-HarmonySDK:entry:default@CollectDebugSymbol:1777375315960","_inputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets/sourceMaps.map",{"fileSnapShotHashValue":"0be5e11f80b4afd1533a8bb896ed98c0442a3bf5e7d2fa5c2b3e6a2230f57af9"}],["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/libs/default",{"isDirectory":true,"fileSnapShotHashValue":""}]]},"_outputFiles":{"dataType":"Map","value":[["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/symbol",{"isDirectory":true,"fileSnapShotHashValue":""}]]}}} \ No newline at end of file diff --git a/.hvigor/dependencyMap/dependencyMap.json5 b/.hvigor/dependencyMap/dependencyMap.json5 new file mode 100644 index 0000000..78a21ec --- /dev/null +++ b/.hvigor/dependencyMap/dependencyMap.json5 @@ -0,0 +1 @@ +{"basePath":"/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/.hvigor/dependencyMap/dependencyMap.json5","rootDependency":"./oh-package.json5","dependencyMap":{"xuqmSdk":"./xuqmSdk/oh-package.json5","entry":"./entry/oh-package.json5"},"modules":[{"name":"xuqmSdk","srcPath":"../../../xuqm-sdk"},{"name":"entry","srcPath":"../../../entry"}]} \ No newline at end of file diff --git a/.hvigor/dependencyMap/entry/oh-package.json5 b/.hvigor/dependencyMap/entry/oh-package.json5 new file mode 100644 index 0000000..db08bfb --- /dev/null +++ b/.hvigor/dependencyMap/entry/oh-package.json5 @@ -0,0 +1 @@ +{"name":"entry","version":"1.0.0","description":"SDK sample app","main":"","author":"","license":"MIT","dependencies":{"@xuqm/harmony-sdk":"file:../xuqm-sdk"}} \ No newline at end of file diff --git a/.hvigor/dependencyMap/oh-package.json5 b/.hvigor/dependencyMap/oh-package.json5 new file mode 100644 index 0000000..7201656 --- /dev/null +++ b/.hvigor/dependencyMap/oh-package.json5 @@ -0,0 +1 @@ +{"name":"xuqm-harmony-sdk-workspace","version":"0.1.0","modelVersion":"5.0.0","description":"XuqmGroup HarmonyOS SDK workspace","author":"xuqm","license":"MIT"} \ No newline at end of file diff --git a/.hvigor/dependencyMap/xuqmSdk/oh-package.json5 b/.hvigor/dependencyMap/xuqmSdk/oh-package.json5 new file mode 100644 index 0000000..58420ed --- /dev/null +++ b/.hvigor/dependencyMap/xuqmSdk/oh-package.json5 @@ -0,0 +1 @@ +{"name":"@xuqm/harmony-sdk","version":"0.1.0","description":"XuqmGroup HarmonyOS SDK — IM, Push, Version Management","main":"Index.ets","author":"xuqm","license":"MIT","publishConfig":{"registry":"https://ohpm.openharmony.cn/ohpm/"},"dependencies":{}} \ No newline at end of file diff --git a/.hvigor/outputs/logs/details/details.json b/.hvigor/outputs/logs/details/details.json new file mode 100644 index 0000000..278de50 --- /dev/null +++ b/.hvigor/outputs/logs/details/details.json @@ -0,0 +1,70 @@ +{ + "HVIGOR_OHOS_PLUGIN": { + "MODULES": [ + { + "MODULE_NAME": "77aabe6c19463543339f337db9c84e4d10fd2f56ea0aedaf85a0214d59e93ec4", + "API_TYPE": "stageMode", + "INCLUDE_IN_BUILD": true, + "IS_COMMAND_LINE_ENTRY_MODULE": false, + "MODULE_TYPE": "har", + "IS_INCREMENTAL_MODULE": true + }, + { + "MODULE_NAME": "923fe53966c6cd9343e11af776cd4b05be315ea4b200b02e4d5dfb0f929b73bf", + "API_TYPE": "stageMode", + "INCLUDE_IN_BUILD": true, + "IS_COMMAND_LINE_ENTRY_MODULE": false, + "MODULE_TYPE": "entry", + "INCREMENTAL_TASKS": { + "COMPILE_ARKTS": false + }, + "IS_INCREMENTAL_MODULE": false + } + ], + "NATIVE_COMPILER": "Default", + "IS_FULL_BUILD": true, + "BUILD_MODE": "debug" + }, + "HVIGOR": { + "IS_INCREMENTAL": true, + "IS_DAEMON": false, + "IS_PARALLEL": true, + "IS_HVIGORFILE_TYPE_CHECK": false, + "TASK_TIME": { + "923fe53966c6cd9343e11af776cd4b05be315ea4b200b02e4d5dfb0f929b73bf": { + "CreateModuleInfo": 327208, + "PreCheckSyscap": 124792, + "ProcessIntegratedHsp": 226959, + "SyscapTransform": 6058625, + "ProcessStartupConfig": 545625, + "ConfigureCmake": 60125, + "BuildNativeWithCmake": 69833, + "BuildNativeWithNinja": 146584, + "BuildJS": 700000, + "CompileArkTS": 2592629166, + "GeneratePkgModuleJson": 988958, + "ProcessCompiledResources": 154291, + "PackageHap": 252960708, + "PackingCheck": 2527625, + "SignHap": 375083, + "CollectDebugSymbol": 263875, + "assembleHap": 49500 + }, + "77aabe6c19463543339f337db9c84e4d10fd2f56ea0aedaf85a0214d59e93ec4": { + "ConfigureCmake": 69459, + "BuildNativeWithCmake": 70958, + "BuildNativeWithNinja": 202959 + } + }, + "APIS": [ + "getProperty" + ], + "CONFIG_EXPERIMENT": { + "ENABLE_MODULE_SKIP": false, + "ENABLE_CPP_FUNCTION_LEVEL_INCREMENTAL": false + }, + "CONFIG_PROPERTIES": {}, + "BUILD_ID": "202604281921524500", + "TOTAL_TIME": 3511224541 + } +} \ No newline at end of file diff --git a/.hvigor/report/report-202604281901190590.json b/.hvigor/report/report-202604281901190590.json new file mode 100644 index 0000000..3a1eaee --- /dev/null +++ b/.hvigor/report/report-202604281901190590.json @@ -0,0 +1,1234 @@ +{ + "version": "2.0", + "ppid": 11847, + "events": [ + { + "head": { + "id": "3b1ffb4f-4c70-486e-907a-41355b550671", + "name": "env: nodejsVersion=v18.20.1", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452039980500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f2e9d776-9e61-4406-9abe-dec67ff2c996", + "name": "env: hvigor-config.json5 content = {\n modelVersion: '5.0.0',\n execution: {\n daemon: false,\n incremental: true,\n parallel: true,\n typeCheck: false\n },\n logging: { level: 'info' },\n debugging: { stacktrace: false },\n nodeOptions: { maxOldSpaceSize: 4096 }\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452040643958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9b451fa8-dbbd-44f1-ac67-18450f190d4d", + "name": "env: daemon=false", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452041473708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5ccbb007-e7f2-4948-b7aa-ea03d082abc6", + "name": "no-daemon, use the parent process.execArgv --max-old-space-size=4096,--max-semi-space-size=16,--expose-gc", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452041506750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a85a6e68-946b-4fc0-917e-3e913b6ec75c", + "name": "init", + "description": "Initialize and build task graph.", + "type": "duration" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452159568458 + }, + "additional": { + "children": [ + "b9fa20eb-910b-4fd6-8822-53be7378f751", + "16439897-0c87-463f-95c7-695699cc635c", + "18a663b2-f7bf-4595-af8a-bc8868fbaf38", + "70c82492-8e2c-41b2-b2f9-41110456ab32", + "1f368a8c-24f5-40f1-8595-e9afc8e6c9ec", + "bb56312b-2845-4101-bd19-c77fceeb8dfb" + ], + "state": "running", + "targetName": "", + "moduleName": "", + "category": "Init", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b9fa20eb-910b-4fd6-8822-53be7378f751", + "name": "create hvigor project model", + "description": "Initialize hvigor project model.", + "type": "duration" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452159571375, + "endTime": 340452162697541 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "a85a6e68-946b-4fc0-917e-3e913b6ec75c", + "logId": "4f69b422-51cb-497f-b6e3-22102d0f8fba" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "16439897-0c87-463f-95c7-695699cc635c", + "name": "configure hvigor plugin", + "description": "Configure hvigor plugin.", + "type": "duration" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452162709458 + }, + "additional": { + "children": [ + "bc9f708d-ef5c-40c4-9a13-cfbc1110fe2e", + "2b599b7e-14ef-4884-b7e4-90da8c0dd037", + "28a773aa-0bd3-4256-8e3d-1976d625e919", + "5e0b29a5-feba-46f1-8b19-bb82bc56a50f", + "268586f0-5cc5-4d0f-a9f0-54a63f450cd5", + "a21b503e-4758-44ee-b4cf-fb8beaef3702", + "ea9a22b4-1f0b-4f39-acb8-8d44e681f0f3", + "c776acd6-0b1c-48d3-905e-fd4fc93b2891" + ], + "state": "running", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "a85a6e68-946b-4fc0-917e-3e913b6ec75c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "1f368a8c-24f5-40f1-8595-e9afc8e6c9ec", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452161082958, + "endTime": 340452161184375 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "a85a6e68-946b-4fc0-917e-3e913b6ec75c", + "logId": "425db599-0d2e-4510-a4b7-3ddc2c30c32f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "425db599-0d2e-4510-a4b7-3ddc2c30c32f", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452161082958, + "endTime": 340452161184375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "1f368a8c-24f5-40f1-8595-e9afc8e6c9ec" + } + }, + { + "head": { + "id": "bb56312b-2845-4101-bd19-c77fceeb8dfb", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452161774083, + "endTime": 340452161786958 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "a85a6e68-946b-4fc0-917e-3e913b6ec75c", + "logId": "00c233c1-049c-4ca6-bb93-eafcc38540b9" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "00c233c1-049c-4ca6-bb93-eafcc38540b9", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452161774083, + "endTime": 340452161786958 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "bb56312b-2845-4101-bd19-c77fceeb8dfb" + } + }, + { + "head": { + "id": "22bf5374-0df4-40cf-8734-b57c7e744499", + "name": "Hvigor init with startParameters:{\n hvigorfileTypeCheck: false,\n parallelExecution: true,\n incrementalExecution: true,\n printStackTrace: false,\n daemon: false,\n analyze: 0,\n logLevel: Level { level: 20000, levelStr: 'INFO', colour: 'green' },\n optimizationStrategy: 'memory',\n hotCompile: undefined,\n hotReloadBuild: undefined,\n customizedParam: undefined\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452161919500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7b8fcd9c-dffa-4c99-b556-e5193ef73a6d", + "name": "Since current hvigor version 6.22.4 differs from last hvigor version \n undefined, delete file-cache.json and task-cache.json.", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452162196875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b6339bd9-4f20-412c-8e92-af61e0d2563e", + "name": "Cache service initialization finished in 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452162670041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4f69b422-51cb-497f-b6e3-22102d0f8fba", + "name": "create hvigor project model", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452159571375, + "endTime": 340452162697541 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "b9fa20eb-910b-4fd6-8822-53be7378f751" + } + }, + { + "head": { + "id": "bc9f708d-ef5c-40c4-9a13-cfbc1110fe2e", + "name": "init configuration", + "description": "Initialize configuration.", + "type": "duration" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452162866625, + "endTime": 340452162874916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "16439897-0c87-463f-95c7-695699cc635c", + "logId": "b11c2675-e597-4dad-9357-30871a5d7194" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2b599b7e-14ef-4884-b7e4-90da8c0dd037", + "name": "configure project task", + "description": "Configure project task.", + "type": "duration" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452162885250, + "endTime": 340452163125791 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "16439897-0c87-463f-95c7-695699cc635c", + "logId": "a442d857-76a5-4044-b1a4-db4dc0d57626" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "28a773aa-0bd3-4256-8e3d-1976d625e919", + "name": "eval project", + "description": "Evaluate project.", + "type": "duration" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452163160500 + }, + "additional": { + "children": [ + "cd9a0c1d-67ca-4c4a-9e07-ed22a9a304d4", + "ab3c99ca-a62c-4ecc-ae38-f0372d87a85f" + ], + "state": "running", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "16439897-0c87-463f-95c7-695699cc635c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b11c2675-e597-4dad-9357-30871a5d7194", + "name": "init configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452162866625, + "endTime": 340452162874916 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "bc9f708d-ef5c-40c4-9a13-cfbc1110fe2e" + } + }, + { + "head": { + "id": "a442d857-76a5-4044-b1a4-db4dc0d57626", + "name": "configure project task", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452162885250, + "endTime": 340452163125791 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "2b599b7e-14ef-4884-b7e4-90da8c0dd037" + } + }, + { + "head": { + "id": "cd9a0c1d-67ca-4c4a-9e07-ed22a9a304d4", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452163228250, + "endTime": 340452163239541 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "28a773aa-0bd3-4256-8e3d-1976d625e919", + "logId": "50f5babb-1d43-4fbe-ba3a-40fa6e26d791" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "50f5babb-1d43-4fbe-ba3a-40fa6e26d791", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452163228250, + "endTime": 340452163239541 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "cd9a0c1d-67ca-4c4a-9e07-ed22a9a304d4" + } + }, + { + "head": { + "id": "ab3c99ca-a62c-4ecc-ae38-f0372d87a85f", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452163338333 + }, + "additional": { + "children": [ + "cdc35e20-7288-4226-8f29-71385101450a", + "f50c2fbe-e242-4628-aa6d-8db1dad11647" + ], + "state": "running", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "28a773aa-0bd3-4256-8e3d-1976d625e919" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "cdc35e20-7288-4226-8f29-71385101450a", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452163338833, + "endTime": 340452633577125 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ab3c99ca-a62c-4ecc-ae38-f0372d87a85f", + "logId": "acf0f749-a7b5-4445-a122-e6653b9d9b63" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f50c2fbe-e242-4628-aa6d-8db1dad11647", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452633591416 + }, + "additional": { + "children": [], + "state": "running", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ab3c99ca-a62c-4ecc-ae38-f0372d87a85f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "5c6bfc1d-5d21-4ad1-b69e-08189c9b7a2c", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452163340375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d5fb863d-a4d8-4638-a7f3-6bb28c5c5c69", + "name": "hvigorfile, require result: { default: { system: [Function: appTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452633331750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "acf0f749-a7b5-4445-a122-e6653b9d9b63", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452163338833, + "endTime": 340452633577125 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "cdc35e20-7288-4226-8f29-71385101450a" + } + }, + { + "head": { + "id": "9d314405-0196-4079-bf66-3503809394a5", + "name": "hvigorfile, binding system plugins [Function: appTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452633638833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5f43ac76-ccf3-4f7d-b483-e7525c200869", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452634051000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8a50caf8-1b86-4a83-99b2-04d78f285eeb", + "name": "App plugin prepare start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452634082666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ff73de44-bf41-4e26-8efe-7ea0755df2f2", + "name": "App plugin prepare end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452634115500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8bd0c6ca-40c6-475c-90ee-feea8398f744", + "name": "App plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452634129500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9c1c7d6a-dfda-4f32-a1b8-458a8e045790", + "name": "App plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452714175583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5ddd67bf-62eb-4dfa-8e27-001241ea0005", + "name": "App plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452714374708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e2ca9e90-d8ad-4050-b2b1-327e9d0f6480", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452714391375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0f1d27ac-7872-45f4-902a-4af66da9dfd3", + "name": "Start initialize project's product build option map with build mode debug.", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452715091041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "de500cf6-5903-4c84-bc4f-bc27b53962b4", + "name": "Picking option from product 'default' with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452715146916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bdfcc986-be27-4d87-a855-dc3910745cc6", + "name": "Product 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452715326458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9c3b70b0-3076-42b3-af11-a8952d03891e", + "name": "End initialize project's product build option map with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452715346166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ca2e348d-c223-4b53-bae1-a541ae90f039", + "name": "Obtain build option for product 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452716272458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "aa8933b6-41d6-4cd4-982b-9ef2a5e3d580", + "name": "No signingConfig found, initRemoteHspCache failed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452717356666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cd7bca1b-17f7-4072-8e4c-525237f7beca", + "name": "not found resModel json file in : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452717513833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "13937891-313e-4e2a-aead-269f850f3e0e", + "name": "hvigor build process will be closed with an error.", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452719638166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2dc07a2c-2fcb-43a8-a5f1-25cd6ee16d0b", + "name": "\u001b[31m00304067 Not Found\nError Message: app.json5 file not found. At file: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5\n\n* Try the following:\n > Make sure the app.json5 file exists.\n\u001b[39m\n\n\u001b[31m* Try:\n> Run with --stacktrace option to get the stack trace.\n> Run with --debug option to get more log output.\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452719687375 + }, + "additional": { + "logType": "error", + "children": [] + } + }, + { + "head": { + "id": "1ced911f-15ea-4f41-8ff6-848451962931", + "name": "ERROR: stacktrace = AdaptorError: \u001b[31m00304067 Not Found\nError Message: app.json5 file not found. At file: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5\n\n* Try the following:\n > Make sure the app.json5 file exists.\n\u001b[39m\n at OhosLogger.printErrorExit (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/log/hvigor-log.js:1:5087)\n at IntegratedHspUtils.initIntegratedHspCache (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/utils/integrated-hsp-utils.js:1:1521)\n at new IntegratedHspUtils (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/utils/integrated-hsp-utils.js:1:1255)\n at GlobalProjectDataService.initGlobalProjectData (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/tasks/service/global-project-data-service.js:1:1745)\n at new ProjectTaskService (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/tasks/service/project-task-service.js:1:2376)\n at AppPlugin.initTaskService (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/app-plugin.js:1:715)\n at ProjectImpl. (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js:1:2161)\n at ProjectImpl.executeAfterBindSystemPluginsHook (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/hvigor-node-impl/default-node-impl.js:1:5526)\n at evaluateNodeVigorFile (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js:1:9214)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452720247416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "64861d2b-35ac-4b89-8971-02fa6e8e5a94", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452720493416, + "endTime": 340452720519750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "13c2933a-ad2b-4b6b-9b4f-452aed245387", + "logId": "bd173eb7-6d52-4cb6-9879-6e705f43d7d8" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "bd173eb7-6d52-4cb6-9879-6e705f43d7d8", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452720493416, + "endTime": 340452720519750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "64861d2b-35ac-4b89-8971-02fa6e8e5a94" + } + }, + { + "head": { + "id": "c0604540-ea26-4d37-a027-0ec5e75173a0", + "name": "assembleHap", + "description": "", + "type": "mark" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452157799333, + "endTime": 340452720903666 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 1, + "second": 19 + }, + "completeCommand": "{\"prop\":[],\"_\":[\"assembleHap\"]};assembleHap", + "hvigorVersion": "6.22.4", + "markType": "history", + "nodeVersion": "v18.20.1", + "category": "build", + "state": "failed" + } + }, + { + "head": { + "id": "cc30b323-fd03-4f4c-9540-aaef4a911511", + "name": "BUILD FAILED in 563 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 11853, + "tid": "Main Thread", + "startTime": 340452720921458 + }, + "additional": { + "logType": "error", + "children": [] + } + } + ] +} \ No newline at end of file diff --git a/.hvigor/report/report-202604281901526640.json b/.hvigor/report/report-202604281901526640.json new file mode 100644 index 0000000..1af1be8 --- /dev/null +++ b/.hvigor/report/report-202604281901526640.json @@ -0,0 +1,4622 @@ +{ + "version": "2.0", + "ppid": 12920, + "events": [ + { + "head": { + "id": "cda02c3d-6506-4bac-9224-8651409d0a7b", + "name": "env: nodejsVersion=v18.20.1", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485640730375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6c3d390f-5067-4015-b7c3-d743c60aa4fd", + "name": "env: hvigor-config.json5 content = {\n modelVersion: '5.0.0',\n execution: {\n daemon: false,\n incremental: true,\n parallel: true,\n typeCheck: false\n },\n logging: { level: 'info' },\n debugging: { stacktrace: false },\n nodeOptions: { maxOldSpaceSize: 4096 }\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485641375041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c1c87c10-39d4-462b-9c13-554d306bc0c0", + "name": "env: daemon=false", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485642189666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e44362cf-e141-4bed-a937-3dd274205799", + "name": "no-daemon, use the parent process.execArgv --max-old-space-size=4096,--max-semi-space-size=16,--expose-gc", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485642220125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "842435a8-c7fc-4cd3-afc2-ae0366b6e209", + "name": "init", + "description": "Initialize and build task graph.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485763636000, + "endTime": 340486364189708 + }, + "additional": { + "children": [ + "0d972499-d317-470d-b158-bd451063d6ba", + "662b0c1a-90be-4961-8e6e-bc19b12e8349", + "87ef1f85-4c6e-4933-9245-b954f58007d1", + "b0096cd3-34a1-4d63-bb67-fd287ec837c6", + "10fa695f-f626-4465-9a21-57e3f0211860", + "342286cb-1cb0-4d9c-8e9a-8be9c6ef545f", + "874a5866-e078-4179-9c49-016d9b9c0950" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Init", + "taskRunReasons": [], + "logId": "3f3c2ca8-5f12-46ef-8080-de07087b1db5" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0d972499-d317-470d-b158-bd451063d6ba", + "name": "create hvigor project model", + "description": "Initialize hvigor project model.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485763639916, + "endTime": 340485766424125 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "842435a8-c7fc-4cd3-afc2-ae0366b6e209", + "logId": "334bf2f3-2d24-45f9-a698-82fb13db49fb" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "662b0c1a-90be-4961-8e6e-bc19b12e8349", + "name": "configure hvigor plugin", + "description": "Configure hvigor plugin.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485766438833, + "endTime": 340486363196541 + }, + "additional": { + "children": [ + "f021813e-a730-441e-a947-b308a8e2a737", + "f8d91e46-a9c6-44d7-95dc-9757c3205f2c", + "478c933e-5770-404f-bafe-928e6d4be2f4", + "e3edea50-0ddd-492b-afd5-f697d2219587", + "d6e71821-1252-4fdb-9ec0-6bab60533a91", + "3a109cc8-bc86-4c06-a036-0945fcabb791", + "d791272f-3f4b-4529-9190-9670049372ad", + "25a4d02e-e0f3-4aab-ac5c-9f9a6552b959", + "9a56f5dc-e87e-4f4e-91a8-a400737990dd" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "842435a8-c7fc-4cd3-afc2-ae0366b6e209", + "logId": "4ef49a18-cd42-4717-934b-5b9ce8e7af19" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "87ef1f85-4c6e-4933-9245-b954f58007d1", + "name": "build task graph", + "description": "Build task graph.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486363214166, + "endTime": 340486364181583 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "842435a8-c7fc-4cd3-afc2-ae0366b6e209", + "logId": "2011e629-37c6-49c0-afc8-bbe721b558d1" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b0096cd3-34a1-4d63-bb67-fd287ec837c6", + "name": "init task execution option", + "description": "Init task execution option.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486364183666, + "endTime": 340486364186791 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "842435a8-c7fc-4cd3-afc2-ae0366b6e209", + "logId": "2b059dd1-539c-416a-b621-9f19d7590bb2" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "10fa695f-f626-4465-9a21-57e3f0211860", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485764961750, + "endTime": 340485765048750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "842435a8-c7fc-4cd3-afc2-ae0366b6e209", + "logId": "7cb79a57-f16e-4623-8819-16d77cf81ac6" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "7cb79a57-f16e-4623-8819-16d77cf81ac6", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485764961750, + "endTime": 340485765048750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "10fa695f-f626-4465-9a21-57e3f0211860", + "parent": "3f3c2ca8-5f12-46ef-8080-de07087b1db5" + } + }, + { + "head": { + "id": "342286cb-1cb0-4d9c-8e9a-8be9c6ef545f", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485765595666, + "endTime": 340485765607208 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "842435a8-c7fc-4cd3-afc2-ae0366b6e209", + "logId": "c638ba5f-0451-46da-9912-536ca07d2e5e" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c638ba5f-0451-46da-9912-536ca07d2e5e", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485765595666, + "endTime": 340485765607208 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "342286cb-1cb0-4d9c-8e9a-8be9c6ef545f", + "parent": "3f3c2ca8-5f12-46ef-8080-de07087b1db5" + } + }, + { + "head": { + "id": "5fb2d255-aa67-4583-8d80-830f7fb564b5", + "name": "Hvigor init with startParameters:{\n hvigorfileTypeCheck: false,\n parallelExecution: true,\n incrementalExecution: true,\n printStackTrace: false,\n daemon: false,\n analyze: 0,\n logLevel: Level { level: 20000, levelStr: 'INFO', colour: 'green' },\n optimizationStrategy: 'memory',\n hotCompile: undefined,\n hotReloadBuild: undefined,\n customizedParam: undefined\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485765740083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7cb49501-d7f4-4493-9966-f4607fdd3ac1", + "name": "Since current hvigor version 6.22.4 differs from last hvigor version \n undefined, delete file-cache.json and task-cache.json.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485765963541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a2454e35-780a-4561-a22e-a047b1e048b4", + "name": "Cache service initialization finished in 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485766403208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "334bf2f3-2d24-45f9-a698-82fb13db49fb", + "name": "create hvigor project model", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485763639916, + "endTime": 340485766424125 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "0d972499-d317-470d-b158-bd451063d6ba", + "parent": "3f3c2ca8-5f12-46ef-8080-de07087b1db5" + } + }, + { + "head": { + "id": "f021813e-a730-441e-a947-b308a8e2a737", + "name": "init configuration", + "description": "Initialize configuration.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485766575916, + "endTime": 340485766581541 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "662b0c1a-90be-4961-8e6e-bc19b12e8349", + "logId": "96ceb293-07e7-41c3-bcb4-bbab9fab7c33" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f8d91e46-a9c6-44d7-95dc-9757c3205f2c", + "name": "configure project task", + "description": "Configure project task.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485766591083, + "endTime": 340485766785250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "662b0c1a-90be-4961-8e6e-bc19b12e8349", + "logId": "44e6f054-255e-411f-a890-5e4547670c71" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "478c933e-5770-404f-bafe-928e6d4be2f4", + "name": "eval project", + "description": "Evaluate project.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485766818791, + "endTime": 340486322848250 + }, + "additional": { + "children": [ + "b6e3a6a5-6091-48b6-9533-1810700d091d", + "f524a154-6ddf-4369-b0c3-bf9efa3f3f31", + "30397da5-a572-4dba-aca8-d2c2034f5d8f" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "662b0c1a-90be-4961-8e6e-bc19b12e8349", + "logId": "2e8ee33f-40c7-4b5a-8f7d-3faf3936337e" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e3edea50-0ddd-492b-afd5-f697d2219587", + "name": "eval modules", + "description": "Evaluate modules.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486322972083, + "endTime": 340486356435708 + }, + "additional": { + "children": [ + "939c2ad0-107c-4463-9596-d7bf043e4bd7", + "d065ff07-8798-4973-829a-2a4769886ec4" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "662b0c1a-90be-4961-8e6e-bc19b12e8349", + "logId": "7e7e9cbf-0e1e-45d6-bed5-f67e498a7b15" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "d6e71821-1252-4fdb-9ec0-6bab60533a91", + "name": "add config dependencies", + "description": "Add configuration dependencies.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486356452583, + "endTime": 340486356452916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "662b0c1a-90be-4961-8e6e-bc19b12e8349", + "logId": "6d223681-be3c-4cae-8bdd-c8ba219675a9" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3a109cc8-bc86-4c06-a036-0945fcabb791", + "name": "ohpm install", + "description": "Ohpm install event.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486356597791, + "endTime": 340486358928083 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "662b0c1a-90be-4961-8e6e-bc19b12e8349", + "logId": "1e429a43-8a95-47a6-9359-457ac718bbbd" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "d791272f-3f4b-4529-9190-9670049372ad", + "name": "eval hook", + "description": "EvaluateEvent hook.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486358944666, + "endTime": 340486363153250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "662b0c1a-90be-4961-8e6e-bc19b12e8349", + "logId": "d915ffcf-5459-4df7-8fd2-84c6d17cf807" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "25a4d02e-e0f3-4aab-ac5c-9f9a6552b959", + "name": "fin configuration", + "description": "Finish configuration.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486363162125, + "endTime": 340486363192958 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "662b0c1a-90be-4961-8e6e-bc19b12e8349", + "logId": "043b4046-d172-45b2-a93c-1eb4d0860953" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "96ceb293-07e7-41c3-bcb4-bbab9fab7c33", + "name": "init configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485766575916, + "endTime": 340485766581541 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f021813e-a730-441e-a947-b308a8e2a737", + "parent": "4ef49a18-cd42-4717-934b-5b9ce8e7af19" + } + }, + { + "head": { + "id": "44e6f054-255e-411f-a890-5e4547670c71", + "name": "configure project task", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485766591083, + "endTime": 340485766785250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f8d91e46-a9c6-44d7-95dc-9757c3205f2c", + "parent": "4ef49a18-cd42-4717-934b-5b9ce8e7af19" + } + }, + { + "head": { + "id": "b6e3a6a5-6091-48b6-9533-1810700d091d", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485766875583, + "endTime": 340485766884000 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "478c933e-5770-404f-bafe-928e6d4be2f4", + "logId": "38a91707-4349-421c-beae-b9f8dda32291" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "38a91707-4349-421c-beae-b9f8dda32291", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485766875583, + "endTime": 340485766884000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "b6e3a6a5-6091-48b6-9533-1810700d091d", + "parent": "2e8ee33f-40c7-4b5a-8f7d-3faf3936337e" + } + }, + { + "head": { + "id": "f524a154-6ddf-4369-b0c3-bf9efa3f3f31", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485766978291, + "endTime": 340486322782583 + }, + "additional": { + "children": [ + "94f59a51-0fa1-4ed0-bb6e-8beaeed765ba", + "9bde313b-9b7e-4cf0-a4a2-bc3ec2f6bcb9" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "478c933e-5770-404f-bafe-928e6d4be2f4", + "logId": "f860c6bd-0ad1-492a-9dfd-675cafbe49d3" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "94f59a51-0fa1-4ed0-bb6e-8beaeed765ba", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485766978666, + "endTime": 340486214255583 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "f524a154-6ddf-4369-b0c3-bf9efa3f3f31", + "logId": "7e256510-aa67-4d4b-8e64-e1bace1b8bd6" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9bde313b-9b7e-4cf0-a4a2-bc3ec2f6bcb9", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486214268291, + "endTime": 340486322775750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "f524a154-6ddf-4369-b0c3-bf9efa3f3f31", + "logId": "8c9422d8-743c-4a03-b6f7-a70a7e35a6de" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c77c393f-f6a6-4bc6-9a00-21954763afda", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485766979958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dd7c557b-28cc-41ec-ac9b-81358f6949a4", + "name": "hvigorfile, require result: { default: { system: [Function: appTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486213975666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7e256510-aa67-4d4b-8e64-e1bace1b8bd6", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485766978666, + "endTime": 340486214255583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "94f59a51-0fa1-4ed0-bb6e-8beaeed765ba", + "parent": "f860c6bd-0ad1-492a-9dfd-675cafbe49d3" + } + }, + { + "head": { + "id": "1945e37f-92e4-4f4c-ac80-0b79ba09e18e", + "name": "hvigorfile, binding system plugins [Function: appTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486214316916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "319a596c-37cd-48c6-86e2-a59930723b23", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486214670958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8d8f5ddd-344d-4fd2-9954-512bdebd4447", + "name": "App plugin prepare start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486214697250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5712aee0-8234-44cf-bcb6-7fd143bbac4e", + "name": "App plugin prepare end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486214724833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7111aa17-90ba-45c3-9d50-8818f702e6ce", + "name": "App plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486214738375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "89f80211-80d2-4324-b0b3-379e3b77d8ee", + "name": "App plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486297456083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dc63c70b-89f8-477b-a079-ccc23926eb50", + "name": "App plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486297695166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7259b1ac-72fb-492c-acf0-e89e83384430", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486297714583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3ffe534d-eaa6-4367-9566-3cd55e5c870c", + "name": "Start initialize project's product build option map with build mode debug.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486298404000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "839d0627-bbcb-4510-a519-239a5e49d0e5", + "name": "Picking option from product 'default' with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486298460166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "87f79f23-4027-4359-b5b2-81b9a862245c", + "name": "Product 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486298647958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e638896b-eaf5-4051-b5cb-4cc1bda4ebcc", + "name": "End initialize project's product build option map with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486298667125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "63ae3f68-4ae7-42f6-96a5-21ac8003f3d4", + "name": "Obtain build option for product 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486299567166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "69e60cb1-1ce5-4521-ae10-f9bd1567d33b", + "name": "No signingConfig found, initRemoteHspCache failed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486300255208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3e9d4395-3a81-4b52-810a-00134289247a", + "name": "harmonyOS sdk scan", + "description": "HarmonyOS sdk scan", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486300924833, + "endTime": 340486302098625 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Other", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a793da44-29f8-40c0-81c5-43fdacdfeac0", + "name": "Local scan or download HarmonyOS sdk components toolchains,ets,js,native,previewer", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486300931750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fbc0e334-d5fb-44d7-a946-5d92b33cd950", + "name": "hmscore sdk scan", + "description": "Hmscore sdk scan", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486302262041, + "endTime": 340486302505708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Other", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a26e41a5-c689-46bd-a8ff-ff55b03682ee", + "name": "Local scan or download hmscore sdk components toolchains,ets,native", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486302268333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4df71f08-f056-4f34-be29-e31553bc4fd5", + "name": "Start recording SDK configuration permission data.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486303443708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7eae6a4b-3c5e-4790-a584-0776fa8a11da", + "name": "Sdk init in 20 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486320012791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "20583b35-7195-4acc-be5e-cfae79146133", + "name": "sdkVersion", + "description": "6.0.2.130", + "type": "mark" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486320119291 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 1, + "second": 53 + }, + "markType": "other" + } + }, + { + "head": { + "id": "c30bbd8d-c93d-4ba5-a329-ce4cfa9f5d85", + "name": "caseSensitiveCheckOn", + "description": "caseSensitiveCheck check is on", + "type": "mark" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486320155958 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 1, + "second": 53 + }, + "markType": "other" + } + }, + { + "head": { + "id": "731a6347-ec85-4a7d-add5-94662918e0d1", + "name": "Project task initialization takes 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486322666208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "45f1b644-5e1f-4edb-88fe-87f552df0adc", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486322743333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ed893974-7edd-46bf-8394-f3e25bd95aba", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486322758166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c6032bf3-5468-4971-be77-da0fefc47f6b", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486322768875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8c9422d8-743c-4a03-b6f7-a70a7e35a6de", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486214268291, + "endTime": 340486322775750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9bde313b-9b7e-4cf0-a4a2-bc3ec2f6bcb9", + "parent": "f860c6bd-0ad1-492a-9dfd-675cafbe49d3" + } + }, + { + "head": { + "id": "f860c6bd-0ad1-492a-9dfd-675cafbe49d3", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485766978291, + "endTime": 340486322782583 + }, + "additional": { + "logType": "info", + "children": [ + "7e256510-aa67-4d4b-8e64-e1bace1b8bd6", + "8c9422d8-743c-4a03-b6f7-a70a7e35a6de" + ], + "durationId": "f524a154-6ddf-4369-b0c3-bf9efa3f3f31", + "parent": "2e8ee33f-40c7-4b5a-8f7d-3faf3936337e" + } + }, + { + "head": { + "id": "30397da5-a572-4dba-aca8-d2c2034f5d8f", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486322828083, + "endTime": 340486322840958 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "478c933e-5770-404f-bafe-928e6d4be2f4", + "logId": "c2a3eb5c-6466-4aaa-b0a5-6a4c9eb6164b" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c2a3eb5c-6466-4aaa-b0a5-6a4c9eb6164b", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486322828083, + "endTime": 340486322840958 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "30397da5-a572-4dba-aca8-d2c2034f5d8f", + "parent": "2e8ee33f-40c7-4b5a-8f7d-3faf3936337e" + } + }, + { + "head": { + "id": "2e8ee33f-40c7-4b5a-8f7d-3faf3936337e", + "name": "eval project", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485766818791, + "endTime": 340486322848250 + }, + "additional": { + "logType": "info", + "children": [ + "38a91707-4349-421c-beae-b9f8dda32291", + "f860c6bd-0ad1-492a-9dfd-675cafbe49d3", + "c2a3eb5c-6466-4aaa-b0a5-6a4c9eb6164b" + ], + "durationId": "478c933e-5770-404f-bafe-928e6d4be2f4", + "parent": "4ef49a18-cd42-4717-934b-5b9ce8e7af19" + } + }, + { + "head": { + "id": "939c2ad0-107c-4463-9596-d7bf043e4bd7", + "name": "eval submodule", + "description": "Evaluate submodule.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486322976750, + "endTime": 340486350594375 + }, + "additional": { + "children": [ + "0f3a4b06-dcf0-4a73-b0ab-b60118b72387", + "cf5d9037-d200-473f-89ab-98f5ab0a6a41", + "455d99a5-718f-4d43-84e1-e67072cd731f" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e3edea50-0ddd-492b-afd5-f697d2219587", + "logId": "0f2f47a0-3777-450d-8ec4-407c99dcf7b7" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0f3a4b06-dcf0-4a73-b0ab-b60118b72387", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486323016416, + "endTime": 340486323021041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "939c2ad0-107c-4463-9596-d7bf043e4bd7", + "logId": "3b060288-6c32-4157-8c5c-6de908cab235" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3b060288-6c32-4157-8c5c-6de908cab235", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486323016416, + "endTime": 340486323021041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "0f3a4b06-dcf0-4a73-b0ab-b60118b72387", + "parent": "0f2f47a0-3777-450d-8ec4-407c99dcf7b7" + } + }, + { + "head": { + "id": "cf5d9037-d200-473f-89ab-98f5ab0a6a41", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486323037375, + "endTime": 340486350189750 + }, + "additional": { + "children": [ + "b31d1b2b-6810-416e-b667-e6b6dfcee1d7", + "d806f714-5e24-4d3c-b190-14a8b7dfc55e" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "939c2ad0-107c-4463-9596-d7bf043e4bd7", + "logId": "ca828616-5056-49f3-a021-efae45d67fb9" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b31d1b2b-6810-416e-b667-e6b6dfcee1d7", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486323037541, + "endTime": 340486326175458 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "cf5d9037-d200-473f-89ab-98f5ab0a6a41", + "logId": "0cbe7ff9-6793-4817-8c2d-326857487646" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "d806f714-5e24-4d3c-b190-14a8b7dfc55e", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486326179666, + "endTime": 340486350185125 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "cf5d9037-d200-473f-89ab-98f5ab0a6a41", + "logId": "3b4bc021-07f0-430c-942d-db2ac5cfd6b8" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "920f187c-a616-4cf6-9e7a-d1642cf916c3", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486323038291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "43a1d948-a6cd-41a7-876f-e1abe24b5b0f", + "name": "hvigorfile, require result: { default: { system: [Function: harTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486326151583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0cbe7ff9-6793-4817-8c2d-326857487646", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486323037541, + "endTime": 340486326175458 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "b31d1b2b-6810-416e-b667-e6b6dfcee1d7", + "parent": "ca828616-5056-49f3-a021-efae45d67fb9" + } + }, + { + "head": { + "id": "912646cf-3a6e-4a66-a453-4b7abe485ed3", + "name": "hvigorfile, binding system plugins [Function: harTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486326183208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5b7ba9c7-c4fb-4107-94d5-ce6c83745cd4", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486326220000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "de15d48f-d50c-4817-802e-f09778f08fba", + "name": "Har plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486326238833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0d953aae-a3c3-4a4c-9a3e-aebc5d1d86b1", + "name": "failed to load cangjie to dynamically generate schemas: Error: Cannot find module '@ohos/cangjie-build-support/index'\nRequire stack:\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/hooks/cangjie-register.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/strategy/stage-init-strategy.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/abstract-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/factory/plugin-factory.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/index.js\n- /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/boot/index.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/cli/main/cli.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/bin/hvigor.js", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486326519458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "115606f7-b0b3-449b-9486-36aa5abac280", + "name": "Start initialize module-target build option map, moduleName=xuqm-sdk, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486346721250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5f723160-e66a-4afd-9c7f-4c78eaf1a4a4", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486346832250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "688aff32-a0c1-4ffb-90f0-05bf9d87b6e8", + "name": "Module 'xuqm-sdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486347042083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "090e087a-f889-4eb7-8a5c-a1a3eb7b7a60", + "name": "End initialize module-target build option map, moduleName=xuqm-sdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486347052083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "24a96a65-3fa8-44ba-b5b4-e77cf9f6bf34", + "name": "Start initialize module-target build option map, moduleName=xuqm-sdk, buildMode=release", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486347073291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "487eecd9-b9dd-43a7-9fee-7746b352ba3d", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486347085583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "aceaeb25-e414-4f0f-b8f2-dd13f4211653", + "name": "Module 'xuqm-sdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486347415541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cb3fdb23-0f15-48f3-9edc-026f877a1c18", + "name": "End initialize module-target build option map, moduleName=xuqm-sdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486347456125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7e05f74d-56fc-4a60-9cd2-6abdc1ccef42", + "name": "Start initialize module-target build option map, moduleName=xuqm-sdk, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486347589250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c2158d2a-39d1-48cc-9047-c8f5b37bdae1", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486347611958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f884dbdb-3881-43f8-aa87-8cd65f2a9d5d", + "name": "Module 'xuqm-sdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486347752833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fe56eca1-7d07-4175-8275-e2ab8f75362f", + "name": "End initialize module-target build option map, moduleName=xuqm-sdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486347761916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "39ee2783-60f9-4241-9071-dfa689eaee85", + "name": "Obtain build option for module 'xuqm-sdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486347867541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "28cf6eff-59a3-4378-a7ed-b3f2b2a574bb", + "name": "Module xuqm-sdk task initialization takes 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486350066333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "20e9cae2-365c-4844-a9ba-de31b6d5116b", + "name": "Har plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486350101000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "55f5d0fa-4cb8-471d-b53c-3a9f86c93af4", + "name": "Har plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486350119333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b2ea6e2a-f6a3-4e00-8316-7574774fa9f5", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486350126000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ea2db74f-3425-4d20-8c8d-06c2a5dfe597", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486350158000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5d77e9f3-024f-44fb-80f6-0d3a717eecd4", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486350173500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ff13ba02-d69c-4318-be10-33706f1a201a", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486350179541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3b4bc021-07f0-430c-942d-db2ac5cfd6b8", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486326179666, + "endTime": 340486350185125 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "d806f714-5e24-4d3c-b190-14a8b7dfc55e", + "parent": "ca828616-5056-49f3-a021-efae45d67fb9" + } + }, + { + "head": { + "id": "ca828616-5056-49f3-a021-efae45d67fb9", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486323037375, + "endTime": 340486350189750 + }, + "additional": { + "logType": "info", + "children": [ + "0cbe7ff9-6793-4817-8c2d-326857487646", + "3b4bc021-07f0-430c-942d-db2ac5cfd6b8" + ], + "durationId": "cf5d9037-d200-473f-89ab-98f5ab0a6a41", + "parent": "0f2f47a0-3777-450d-8ec4-407c99dcf7b7" + } + }, + { + "head": { + "id": "455d99a5-718f-4d43-84e1-e67072cd731f", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486350585541, + "endTime": 340486350589750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "939c2ad0-107c-4463-9596-d7bf043e4bd7", + "logId": "ad5b8e02-2478-4a00-9cb2-35ec7a97ed14" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ad5b8e02-2478-4a00-9cb2-35ec7a97ed14", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486350585541, + "endTime": 340486350589750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "455d99a5-718f-4d43-84e1-e67072cd731f", + "parent": "0f2f47a0-3777-450d-8ec4-407c99dcf7b7" + } + }, + { + "head": { + "id": "0f2f47a0-3777-450d-8ec4-407c99dcf7b7", + "name": "eval submodule", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486322976750, + "endTime": 340486350594375 + }, + "additional": { + "logType": "info", + "children": [ + "3b060288-6c32-4157-8c5c-6de908cab235", + "ca828616-5056-49f3-a021-efae45d67fb9", + "ad5b8e02-2478-4a00-9cb2-35ec7a97ed14" + ], + "durationId": "939c2ad0-107c-4463-9596-d7bf043e4bd7", + "parent": "7e7e9cbf-0e1e-45d6-bed5-f67e498a7b15" + } + }, + { + "head": { + "id": "d065ff07-8798-4973-829a-2a4769886ec4", + "name": "eval submodule", + "description": "Evaluate submodule.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486350606208, + "endTime": 340486356431375 + }, + "additional": { + "children": [ + "9fa86b48-f3fe-40ab-ad5d-014270ae1f56", + "2aa3fc15-f3dd-49ee-a1b3-f969785c66d3", + "661a0a64-6ae1-42b2-bbc7-3bcf7a9dc804" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e3edea50-0ddd-492b-afd5-f697d2219587", + "logId": "afb6a192-da95-4c42-a05f-586f770aea20" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9fa86b48-f3fe-40ab-ad5d-014270ae1f56", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486350638875, + "endTime": 340486350641125 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "d065ff07-8798-4973-829a-2a4769886ec4", + "logId": "2c94724e-e302-4c24-9d33-8ecfca89dc14" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2c94724e-e302-4c24-9d33-8ecfca89dc14", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486350638875, + "endTime": 340486350641125 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9fa86b48-f3fe-40ab-ad5d-014270ae1f56", + "parent": "afb6a192-da95-4c42-a05f-586f770aea20" + } + }, + { + "head": { + "id": "2aa3fc15-f3dd-49ee-a1b3-f969785c66d3", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486350657291, + "endTime": 340486356396833 + }, + "additional": { + "children": [ + "f1d29fe2-35b4-407e-a68e-6bd6f1d9ec13", + "c0611e64-5c46-4222-b43c-5c1c8b1c908b" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "d065ff07-8798-4973-829a-2a4769886ec4", + "logId": "3740b1c3-4d2b-4fb1-9c93-96236890c2aa" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f1d29fe2-35b4-407e-a68e-6bd6f1d9ec13", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486350657416, + "endTime": 340486353641500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "2aa3fc15-f3dd-49ee-a1b3-f969785c66d3", + "logId": "938d5e6e-46b8-4e68-96e4-32fce3c237e4" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c0611e64-5c46-4222-b43c-5c1c8b1c908b", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486353647250, + "endTime": 340486356392625 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "2aa3fc15-f3dd-49ee-a1b3-f969785c66d3", + "logId": "b269208a-e200-4635-9583-917c1fb9e55a" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2c516964-381f-4669-a50a-0e1c0b645071", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486350658291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2140a4b5-2884-42cd-a6e4-a461f33d2e37", + "name": "hvigorfile, require result: { default: { system: [Function: hapTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486353608666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "938d5e6e-46b8-4e68-96e4-32fce3c237e4", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486350657416, + "endTime": 340486353641500 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f1d29fe2-35b4-407e-a68e-6bd6f1d9ec13", + "parent": "3740b1c3-4d2b-4fb1-9c93-96236890c2aa" + } + }, + { + "head": { + "id": "6de04888-4987-4871-8eed-2111874112ec", + "name": "hvigorfile, binding system plugins [Function: hapTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486353651583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "079e8121-8749-45a4-9299-9ecafbab5d00", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486353698583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7690476f-9c67-46c6-a0fa-75f6cee6d55f", + "name": "Hap plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486353718583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ad606be8-5748-41b3-a0e8-9304b2fcf5cd", + "name": "failed to load cangjie to dynamically generate schemas: Error: Cannot find module '@ohos/cangjie-build-support/index'\nRequire stack:\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/hooks/cangjie-register.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/strategy/stage-init-strategy.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/abstract-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/factory/plugin-factory.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/index.js\n- /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/boot/index.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/cli/main/cli.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/bin/hvigor.js", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486353828625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "385d175f-07ad-4a9f-a07d-b00603d9c0e5", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486355446541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8e0d1f78-893d-4d36-9594-3d24ffa4f2a8", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486355466083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "609e76ed-ca68-4d3a-8aec-6813cc0a124e", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486355519708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f1abcc55-4081-434c-a986-e8d2274cb0e4", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486355527166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "965da8db-efb9-456d-94a6-9daf96975491", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=release", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486355541041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "361141dc-7360-4f1e-ae65-7d90d056969c", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486355550375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1fd82a33-0388-4264-bc2c-b395cec85679", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486355593041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6c8ae3b5-05e5-4424-8681-a9838d2a42b5", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486355600208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7c9bc224-e531-4257-8f27-7697a489f1d1", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486355614625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b2ffb473-9282-4838-8f8f-9be92ccab9e0", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486355623541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8b25169a-1956-4235-9ea6-d0fb6bf083ec", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486355656708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f3872753-f636-4df5-8a9c-8086ce2e8b7b", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486355662583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fc87849e-272e-4643-b710-4ab22381d72a", + "name": "Obtain build option for module 'entry' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486355671541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b2b6d74d-b155-4d59-a407-2932c8f45bcd", + "name": "Module entry task initialization takes 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486356301583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f45d2a46-1180-422c-8e7a-9321648da9b2", + "name": "Hap plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486356337291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c2bb767a-3cfa-4d8f-9a70-2bebb825c327", + "name": "Hap plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486356346083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b4f20908-ba79-4aa0-a412-c78e0a44ea96", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486356351833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d890338b-10ee-42f5-88e3-d43bada0cb52", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486356373250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "70f94a18-f87b-43b9-a8c8-0cb5d1cca7d7", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486356381875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "794593ab-1323-4587-9292-56149bef5c45", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486356387708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b269208a-e200-4635-9583-917c1fb9e55a", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486353647250, + "endTime": 340486356392625 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "c0611e64-5c46-4222-b43c-5c1c8b1c908b", + "parent": "3740b1c3-4d2b-4fb1-9c93-96236890c2aa" + } + }, + { + "head": { + "id": "3740b1c3-4d2b-4fb1-9c93-96236890c2aa", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486350657291, + "endTime": 340486356396833 + }, + "additional": { + "logType": "info", + "children": [ + "938d5e6e-46b8-4e68-96e4-32fce3c237e4", + "b269208a-e200-4635-9583-917c1fb9e55a" + ], + "durationId": "2aa3fc15-f3dd-49ee-a1b3-f969785c66d3", + "parent": "afb6a192-da95-4c42-a05f-586f770aea20" + } + }, + { + "head": { + "id": "661a0a64-6ae1-42b2-bbc7-3bcf7a9dc804", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486356424541, + "endTime": 340486356427750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "d065ff07-8798-4973-829a-2a4769886ec4", + "logId": "e7122ee6-9134-47b5-b418-79b91c9ccd8b" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e7122ee6-9134-47b5-b418-79b91c9ccd8b", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486356424541, + "endTime": 340486356427750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "661a0a64-6ae1-42b2-bbc7-3bcf7a9dc804", + "parent": "afb6a192-da95-4c42-a05f-586f770aea20" + } + }, + { + "head": { + "id": "afb6a192-da95-4c42-a05f-586f770aea20", + "name": "eval submodule", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486350606208, + "endTime": 340486356431375 + }, + "additional": { + "logType": "info", + "children": [ + "2c94724e-e302-4c24-9d33-8ecfca89dc14", + "3740b1c3-4d2b-4fb1-9c93-96236890c2aa", + "e7122ee6-9134-47b5-b418-79b91c9ccd8b" + ], + "durationId": "d065ff07-8798-4973-829a-2a4769886ec4", + "parent": "7e7e9cbf-0e1e-45d6-bed5-f67e498a7b15" + } + }, + { + "head": { + "id": "7e7e9cbf-0e1e-45d6-bed5-f67e498a7b15", + "name": "eval modules", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486322972083, + "endTime": 340486356435708 + }, + "additional": { + "logType": "info", + "children": [ + "0f2f47a0-3777-450d-8ec4-407c99dcf7b7", + "afb6a192-da95-4c42-a05f-586f770aea20" + ], + "durationId": "e3edea50-0ddd-492b-afd5-f697d2219587", + "parent": "4ef49a18-cd42-4717-934b-5b9ce8e7af19" + } + }, + { + "head": { + "id": "6d223681-be3c-4cae-8bdd-c8ba219675a9", + "name": "add config dependencies", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486356452583, + "endTime": 340486356452916 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "d6e71821-1252-4fdb-9ec0-6bab60533a91", + "parent": "4ef49a18-cd42-4717-934b-5b9ce8e7af19" + } + }, + { + "head": { + "id": "9a56f5dc-e87e-4f4e-91a8-a400737990dd", + "name": "\"nodesEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486356459208, + "endTime": 340486356594875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "662b0c1a-90be-4961-8e6e-bc19b12e8349", + "logId": "837f8a7e-838d-41e9-ba36-9dbb87a33c87" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c001115d-4176-4864-a69b-b2486012099e", + "name": "project has submodules:xuqm-sdk,entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486356486416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "02269344-c271-4290-9db5-f8de17eb5535", + "name": "module:xuqm-sdk no need to execute packageHap", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486356558875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "837f8a7e-838d-41e9-ba36-9dbb87a33c87", + "name": "\"nodesEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486356459208, + "endTime": 340486356594875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9a56f5dc-e87e-4f4e-91a8-a400737990dd", + "parent": "4ef49a18-cd42-4717-934b-5b9ce8e7af19" + } + }, + { + "head": { + "id": "f94f2c2d-ca9d-4bbe-b122-1c1d61580fb8", + "name": "start to load updatedOhPackageInfo to the disk", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486357236250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9068d818-6fa7-4bba-9c0a-8afbe7929a12", + "name": "load to the disk finished", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486358542333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1e429a43-8a95-47a6-9359-457ac718bbbd", + "name": "ohpm install", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486356597791, + "endTime": 340486358928083 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3a109cc8-bc86-4c06-a036-0945fcabb791", + "parent": "4ef49a18-cd42-4717-934b-5b9ce8e7af19" + } + }, + { + "head": { + "id": "da982eb0-e764-437b-a811-32175d6e3191", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486358995625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5c4305d2-0e4b-4e6f-9c74-5538d7ee1789", + "name": "Module XuqmGroup-HarmonySDK Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486359684583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c3d0f253-d2a5-4bbd-8717-911f903d34f0", + "name": "Module XuqmGroup-HarmonySDK's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486359695583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d1c28879-9d1d-4522-8326-47c7a9efd417", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486360322416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f88bfa9c-3f61-4914-b063-f2e326a530f2", + "name": "Module xuqm-sdk Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486360728250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9feae0ee-d302-41cf-abd4-3cd91fec11a6", + "name": "Module xuqm-sdk's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486360738333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a864107e-b160-4b43-8eef-1ccdb5a3855d", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486361989625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cdd1d1ed-fd28-4453-b5d8-adfd7f7bd54d", + "name": "Module entry Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486362805916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c70658fb-50b4-4aae-9b12-b8e7e6eafdd7", + "name": "Module entry's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486362816750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d915ffcf-5459-4df7-8fd2-84c6d17cf807", + "name": "eval hook", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486358944666, + "endTime": 340486363153250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "d791272f-3f4b-4529-9190-9670049372ad", + "parent": "4ef49a18-cd42-4717-934b-5b9ce8e7af19" + } + }, + { + "head": { + "id": "c32f1107-9a2a-4d93-ad03-28d1f42bd115", + "name": "Configuration phase cost:597 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486363183416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "043b4046-d172-45b2-a93c-1eb4d0860953", + "name": "fin configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486363162125, + "endTime": 340486363192958 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "25a4d02e-e0f3-4aab-ac5c-9f9a6552b959", + "parent": "4ef49a18-cd42-4717-934b-5b9ce8e7af19" + } + }, + { + "head": { + "id": "4ef49a18-cd42-4717-934b-5b9ce8e7af19", + "name": "configure hvigor plugin", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485766438833, + "endTime": 340486363196541 + }, + "additional": { + "logType": "info", + "children": [ + "96ceb293-07e7-41c3-bcb4-bbab9fab7c33", + "44e6f054-255e-411f-a890-5e4547670c71", + "2e8ee33f-40c7-4b5a-8f7d-3faf3936337e", + "7e7e9cbf-0e1e-45d6-bed5-f67e498a7b15", + "6d223681-be3c-4cae-8bdd-c8ba219675a9", + "1e429a43-8a95-47a6-9359-457ac718bbbd", + "d915ffcf-5459-4df7-8fd2-84c6d17cf807", + "043b4046-d172-45b2-a93c-1eb4d0860953", + "837f8a7e-838d-41e9-ba36-9dbb87a33c87" + ], + "durationId": "662b0c1a-90be-4961-8e6e-bc19b12e8349", + "parent": "3f3c2ca8-5f12-46ef-8080-de07087b1db5" + } + }, + { + "head": { + "id": "874a5866-e078-4179-9c49-016d9b9c0950", + "name": "\"taskGraphResolved\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486364162875, + "endTime": 340486364178041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "842435a8-c7fc-4cd3-afc2-ae0366b6e209", + "logId": "ea31fceb-f6be-4ec5-8ea8-e41f9ee8cdc1" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ea31fceb-f6be-4ec5-8ea8-e41f9ee8cdc1", + "name": "\"taskGraphResolved\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486364162875, + "endTime": 340486364178041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "874a5866-e078-4179-9c49-016d9b9c0950", + "parent": "3f3c2ca8-5f12-46ef-8080-de07087b1db5" + } + }, + { + "head": { + "id": "2011e629-37c6-49c0-afc8-bbe721b558d1", + "name": "build task graph", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486363214166, + "endTime": 340486364181583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "87ef1f85-4c6e-4933-9245-b954f58007d1", + "parent": "3f3c2ca8-5f12-46ef-8080-de07087b1db5" + } + }, + { + "head": { + "id": "2b059dd1-539c-416a-b621-9f19d7590bb2", + "name": "init task execution option", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486364183666, + "endTime": 340486364186791 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "b0096cd3-34a1-4d63-bb67-fd287ec837c6", + "parent": "3f3c2ca8-5f12-46ef-8080-de07087b1db5" + } + }, + { + "head": { + "id": "3f3c2ca8-5f12-46ef-8080-de07087b1db5", + "name": "init", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485763636000, + "endTime": 340486364189708 + }, + "additional": { + "logType": "info", + "children": [ + "334bf2f3-2d24-45f9-a698-82fb13db49fb", + "4ef49a18-cd42-4717-934b-5b9ce8e7af19", + "2011e629-37c6-49c0-afc8-bbe721b558d1", + "2b059dd1-539c-416a-b621-9f19d7590bb2", + "7cb79a57-f16e-4623-8819-16d77cf81ac6", + "c638ba5f-0451-46da-9912-536ca07d2e5e", + "ea31fceb-f6be-4ec5-8ea8-e41f9ee8cdc1" + ], + "durationId": "842435a8-c7fc-4cd3-afc2-ae0366b6e209" + } + }, + { + "head": { + "id": "ae5b2768-002f-4530-ac8f-1a60e857a312", + "name": "Configuration task cost before running: 602 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486364453041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f64b5276-9edd-4c0d-b693-486d70ce8a94", + "name": "entry:clean", + "description": "Clear the cache information.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486364657791, + "endTime": 340486365342833 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "entry", + "category": "Other", + "taskRunReasons": [], + "detailId": "c514560d-ec72-4ce6-883a-91bf7cdcc971", + "logId": "1dd88c67-d5b9-4c37-886d-80673ea3375c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c514560d-ec72-4ce6-883a-91bf7cdcc971", + "name": "create entry:clean task", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486364564125 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "f64b5276-9edd-4c0d-b693-486d70ce8a94" + } + }, + { + "head": { + "id": "16c853fa-3aa2-42b9-99e7-932fa620fd63", + "name": "Executing task :entry:clean", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486364667250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "72f37b92-4777-405f-8c2f-fd031c6c0d90", + "name": "clean: Worker pool is inactive.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486364758375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "496e9364-f8cc-4350-8981-fdc02429103d", + "name": "entry : clean cost memory 0.10303497314453125", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486365203750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "098cad84-3bb9-4d83-9bc9-a3f43eb673c5", + "name": "runTaskFromQueue task cost before running: 602 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486365307416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1dd88c67-d5b9-4c37-886d-80673ea3375c", + "name": "Finished :entry:clean", + "description": "Clear the cache information.", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486364657791, + "endTime": 340486365342833, + "totalTime": 570334 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f64b5276-9edd-4c0d-b693-486d70ce8a94" + } + }, + { + "head": { + "id": "0367169a-f6d9-40e8-bed9-5b4003141ddf", + "name": "entry:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486367766833, + "endTime": 340486383945000 + }, + "additional": { + "children": [], + "state": "failed", + "targetName": "default", + "moduleName": "entry", + "category": "Verification", + "taskRunReasons": [], + "detailId": "6af7a38a-a5bc-48da-a99a-ce9c1771c12e", + "logId": "1eeec8f9-88ca-47be-a188-4b64e0326ae0" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "6af7a38a-a5bc-48da-a99a-ce9c1771c12e", + "name": "create entry:default@PreBuild task", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486366044875 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "0367169a-f6d9-40e8-bed9-5b4003141ddf" + } + }, + { + "head": { + "id": "578698d7-57c7-4033-a47a-76a0f8262a28", + "name": "Executing task :entry:default@PreBuild", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486367771291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "383cd203-dd37-4a6d-8083-078969796ef6", + "name": "The project has not explicitly set the 'targetSdkVersion' version at build-profile.json5. It is recommended to configure it. Reference: https://developer.huawei.com/consumer/cn/doc/harmonyos-guides/ide-hvigor-build-profile-app#section45865492619", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486367959583 + }, + "additional": { + "logType": "warn", + "children": [] + } + }, + { + "head": { + "id": "ab2b20bc-529e-4ae4-a006-749ebd896541", + "name": "Task 'entry:default@PreBuild' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486368710583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1eeec8f9-88ca-47be-a188-4b64e0326ae0", + "name": "Failed :entry:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486367766833, + "endTime": 340486383945000 + }, + "additional": { + "logType": "error", + "children": [], + "durationId": "0367169a-f6d9-40e8-bed9-5b4003141ddf" + } + }, + { + "head": { + "id": "e9cbecf4-b125-4659-bd9b-452fb8d1892b", + "name": "hvigor build process will be closed with an error.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486384096083 + }, + "additional": { + "logType": "debug", + "children": [], + "durationId": "0367169a-f6d9-40e8-bed9-5b4003141ddf" + } + }, + { + "head": { + "id": "976b85ed-67b0-4bee-aeb0-e97940d39a31", + "name": "\u001b[31m00303038 Configuration Error\nError Message: Schema validate failed, at file: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5\n\n* Try the following:\n > Please check the following fields. \n {\n instancePath: 'app',\n keyword: 'required',\n params: { missingProperty: 'icon' },\n message: \"must have required property 'icon'\",\n location: '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5:2:11'\n} \n{\n instancePath: 'app',\n keyword: 'required',\n params: { missingProperty: 'label' },\n message: \"must have required property 'label'\",\n location: '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5:2:11'\n} \n\n\u001b[39m\n\n\u001b[31m* Try:\n> Run with --stacktrace option to get the stack trace.\n> Run with --debug option to get more log output.\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486384134958 + }, + "additional": { + "logType": "error", + "children": [], + "durationId": "0367169a-f6d9-40e8-bed9-5b4003141ddf" + } + }, + { + "head": { + "id": "dabac642-8172-4878-b407-ed4e8bff9c7c", + "name": "ERROR: stacktrace = AdaptorError: \u001b[31m00303038 Configuration Error\nError Message: Schema validate failed, at file: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5\n\n* Try the following:\n > Please check the following fields. \n {\n instancePath: 'app',\n keyword: 'required',\n params: { missingProperty: 'icon' },\n message: \"must have required property 'icon'\",\n location: '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5:2:11'\n} \n{\n instancePath: 'app',\n keyword: 'required',\n params: { missingProperty: 'label' },\n message: \"must have required property 'label'\",\n location: '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5:2:11'\n} \n\n\u001b[39m\n at OhosLogger.printErrorExit (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/log/hvigor-log.js:1:5087)\n at ValidateUtil.doSchemaCheck (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/utils/validate/validate-util.js:1:8177)\n at ValidateUtil.submitSchemaCheckWork (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/utils/validate/validate-util.js:1:7013)\n at PreBuild.appJson5Validate (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/tasks/pre-build.js:1:14286)\n at PreBuild.doValidateForDiffApiType (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/tasks/pre-build.js:1:9573)\n at PreBuild.doTaskAction (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/tasks/abstract/abstract-pre-build.js:1:7450)\n at PreBuild. (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/tasks/task/ohos-module-task.js:1:2074)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async PreBuild.execute (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/external/task/core-task-impl.js:1:2191)\n at async TaskProxy.execute (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/task/proxy/task-proxy.js:1:6139)", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486384473708 + }, + "additional": { + "logType": "debug", + "children": [], + "durationId": "0367169a-f6d9-40e8-bed9-5b4003141ddf" + } + }, + { + "head": { + "id": "53eaf849-a3df-49e5-9817-0fcfb145893d", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486384801666, + "endTime": 340486384931750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "3bf4b80d-dbe8-4ff0-9e56-cc1c4b7b1a36", + "logId": "e007ff2d-ae3e-41f7-9f2c-6f6c6816aacc" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e007ff2d-ae3e-41f7-9f2c-6f6c6816aacc", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486384801666, + "endTime": 340486384931750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "53eaf849-a3df-49e5-9817-0fcfb145893d" + } + }, + { + "head": { + "id": "7f3c2e5a-46e6-4a00-ae72-b0eef52de4ad", + "name": "assembleHap", + "description": "", + "type": "mark" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340485763259125, + "endTime": 340486385164291 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 1, + "second": 53 + }, + "completeCommand": "{\"prop\":[],\"_\":[\"assembleHap\"]};assembleHap", + "hvigorVersion": "6.22.4", + "markType": "history", + "nodeVersion": "v18.20.1", + "category": "build", + "state": "failed" + } + }, + { + "head": { + "id": "96569c10-a87b-4324-9175-813de605d22e", + "name": "BUILD FAILED in 622 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486385181166 + }, + "additional": { + "logType": "error", + "children": [] + } + }, + { + "head": { + "id": "47c3913e-952c-4cd9-b06f-ce3e30c32d71", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486385391250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5c21df6a-d366-4d1c-9cb9-53b12609b25c", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486385625708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0414e503-6c9b-4b0d-a330-be96ad469ad8", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486385654833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "aaf0b6b0-d048-40ba-b94c-b96284a50592", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486385776583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c931341a-6da9-4599-b5f1-a8281b05830e", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base/profile/main_pages.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486385804833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0409400b-7e51-4572-825e-edf6c75f73ac", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigor/hvigor-config.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486385828500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "75ef853a-43b1-4956-9dff-e15cf5d65d07", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486385851625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "106823cf-9fb1-4d26-863b-af6b4beb25ac", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486385874000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2095a98a-ea96-436a-9de1-c1bd9a5fdfa6", + "name": "Incremental task entry:default@PreBuild post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 12926, + "tid": "Main Thread", + "startTime": 340486385959583 + }, + "additional": { + "logType": "debug", + "children": [] + } + } + ] +} \ No newline at end of file diff --git a/.hvigor/report/report-202604281902322490.json b/.hvigor/report/report-202604281902322490.json new file mode 100644 index 0000000..5d2897a --- /dev/null +++ b/.hvigor/report/report-202604281902322490.json @@ -0,0 +1,4456 @@ +{ + "version": "2.0", + "ppid": 14074, + "events": [ + { + "head": { + "id": "1fc5900b-14a0-4c5b-8f4e-cdf2f6bc3254", + "name": "env: nodejsVersion=v18.20.1", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525206427708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9b968917-d381-4546-8c13-de6e75594ec1", + "name": "env: hvigor-config.json5 content = {\n modelVersion: '5.0.0',\n execution: {\n daemon: false,\n incremental: true,\n parallel: true,\n typeCheck: false\n },\n logging: { level: 'info' },\n debugging: { stacktrace: false },\n nodeOptions: { maxOldSpaceSize: 4096 }\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525207113000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bd38430c-aa37-4a94-8725-236075109e2d", + "name": "env: daemon=false", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525208016208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "04a76517-bff9-413c-8ca6-d245cd1c0086", + "name": "no-daemon, use the parent process.execArgv --max-old-space-size=4096,--max-semi-space-size=16,--expose-gc", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525208053750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "20c6e302-9337-488b-b4df-0e11922dd50c", + "name": "init", + "description": "Initialize and build task graph.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525348047333, + "endTime": 340526110953583 + }, + "additional": { + "children": [ + "8db92bf0-df6e-4b2b-b009-56688a642b56", + "b3ab6363-b97e-4b3f-8748-74f235d829c9", + "e3609340-19ee-4e5c-be29-ac59b48eaead", + "1e5dc0ff-661a-45c6-a7bc-f94370a0bd13", + "f8a9784b-3b30-47d5-88bf-9efe3065c698", + "ba2814b0-3311-46c9-a0f7-c433a92f14b4", + "a74eb479-667d-4995-b8dd-21f7bd9e8346" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Init", + "taskRunReasons": [], + "logId": "f812147e-a9cf-4198-8186-a0a85cd1eb23" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8db92bf0-df6e-4b2b-b009-56688a642b56", + "name": "create hvigor project model", + "description": "Initialize hvigor project model.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525348050875, + "endTime": 340525351854333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "20c6e302-9337-488b-b4df-0e11922dd50c", + "logId": "257c0cce-d269-4d68-8c95-0bd64cab156d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b3ab6363-b97e-4b3f-8748-74f235d829c9", + "name": "configure hvigor plugin", + "description": "Configure hvigor plugin.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525351955250, + "endTime": 340526109890125 + }, + "additional": { + "children": [ + "3d6feac6-8aed-46db-b386-e109baf80395", + "53503262-a1db-4b8b-842b-3946572d0c77", + "9fc89dae-91cf-40af-ac12-b2e7d39487ad", + "236dc954-d94e-46ba-815a-604ab7375fec", + "06918bb9-4db4-4385-ac09-c8848062df3c", + "5afd1b10-64b6-4acf-b79c-416fe97f9b6f", + "db0df5ff-6cf0-45a3-9d48-e7128bd9c3f4", + "94e930cb-639d-423b-8dfe-46728035cac1", + "43ecde67-c80d-4562-88f7-1bc7ba8ade5b" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "20c6e302-9337-488b-b4df-0e11922dd50c", + "logId": "d55def5f-f421-41c1-806b-d6939a56188f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e3609340-19ee-4e5c-be29-ac59b48eaead", + "name": "build task graph", + "description": "Build task graph.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526109904375, + "endTime": 340526110943500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "20c6e302-9337-488b-b4df-0e11922dd50c", + "logId": "1fb9a999-cc8a-4386-a061-5fb6ed92a275" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "1e5dc0ff-661a-45c6-a7bc-f94370a0bd13", + "name": "init task execution option", + "description": "Init task execution option.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526110945708, + "endTime": 340526110949916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "20c6e302-9337-488b-b4df-0e11922dd50c", + "logId": "43658485-e58d-4a17-ad90-e91130e535b8" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f8a9784b-3b30-47d5-88bf-9efe3065c698", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525349697041, + "endTime": 340525349797833 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "20c6e302-9337-488b-b4df-0e11922dd50c", + "logId": "7ff1d587-4b43-4a24-a6d9-c6637a598e48" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "7ff1d587-4b43-4a24-a6d9-c6637a598e48", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525349697041, + "endTime": 340525349797833 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f8a9784b-3b30-47d5-88bf-9efe3065c698", + "parent": "f812147e-a9cf-4198-8186-a0a85cd1eb23" + } + }, + { + "head": { + "id": "ba2814b0-3311-46c9-a0f7-c433a92f14b4", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525350391166, + "endTime": 340525350403958 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "20c6e302-9337-488b-b4df-0e11922dd50c", + "logId": "2f6cce7e-ec6f-47de-853e-65bfc8d5aa0a" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2f6cce7e-ec6f-47de-853e-65bfc8d5aa0a", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525350391166, + "endTime": 340525350403958 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ba2814b0-3311-46c9-a0f7-c433a92f14b4", + "parent": "f812147e-a9cf-4198-8186-a0a85cd1eb23" + } + }, + { + "head": { + "id": "c407c38e-ec4f-4c2e-af06-a542353b2581", + "name": "Hvigor init with startParameters:{\n hvigorfileTypeCheck: false,\n parallelExecution: true,\n incrementalExecution: true,\n printStackTrace: false,\n daemon: false,\n analyze: 0,\n logLevel: Level { level: 20000, levelStr: 'INFO', colour: 'green' },\n optimizationStrategy: 'memory',\n hotCompile: undefined,\n hotReloadBuild: undefined,\n customizedParam: undefined\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525350548541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d49ca04c-3689-43ca-84f4-3afb38002b24", + "name": "Cache service initialization finished in 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525351783166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "257c0cce-d269-4d68-8c95-0bd64cab156d", + "name": "create hvigor project model", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525348050875, + "endTime": 340525351854333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "8db92bf0-df6e-4b2b-b009-56688a642b56", + "parent": "f812147e-a9cf-4198-8186-a0a85cd1eb23" + } + }, + { + "head": { + "id": "3d6feac6-8aed-46db-b386-e109baf80395", + "name": "init configuration", + "description": "Initialize configuration.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525352037625, + "endTime": 340525352045166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "b3ab6363-b97e-4b3f-8748-74f235d829c9", + "logId": "63eb9b1d-13a2-4fd5-b8d1-6b28c9f8b508" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "53503262-a1db-4b8b-842b-3946572d0c77", + "name": "configure project task", + "description": "Configure project task.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525352061541, + "endTime": 340525352328333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "b3ab6363-b97e-4b3f-8748-74f235d829c9", + "logId": "3184cdcc-6c39-45c9-b288-4714b404c5a3" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9fc89dae-91cf-40af-ac12-b2e7d39487ad", + "name": "eval project", + "description": "Evaluate project.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525352365708, + "endTime": 340526068016083 + }, + "additional": { + "children": [ + "56e884fd-24c2-4f66-8a45-dfa7f20edb02", + "164f9064-94b4-4f92-89ab-f8f6acbc600a", + "817a1586-4007-4ea9-971a-46d3d613caeb" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "b3ab6363-b97e-4b3f-8748-74f235d829c9", + "logId": "35d1ad91-baf6-471b-a1e7-e1aef9e85de0" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "236dc954-d94e-46ba-815a-604ab7375fec", + "name": "eval modules", + "description": "Evaluate modules.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526068138541, + "endTime": 340526102243583 + }, + "additional": { + "children": [ + "dfc54856-b99e-4bf6-bfb2-c45bef7b6249", + "ab646af5-155b-4e0f-bcb5-abcebba995e6" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "b3ab6363-b97e-4b3f-8748-74f235d829c9", + "logId": "677de22c-e514-4607-9402-75c5595cc816" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "06918bb9-4db4-4385-ac09-c8848062df3c", + "name": "add config dependencies", + "description": "Add configuration dependencies.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526102277125, + "endTime": 340526102277583 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "b3ab6363-b97e-4b3f-8748-74f235d829c9", + "logId": "3c607c80-1328-4ffd-b220-7f0ef1bed4db" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "5afd1b10-64b6-4acf-b79c-416fe97f9b6f", + "name": "ohpm install", + "description": "Ohpm install event.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526102412958, + "endTime": 340526105121583 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "b3ab6363-b97e-4b3f-8748-74f235d829c9", + "logId": "6cc34643-14c6-4a60-94cf-bee0e93b588b" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "db0df5ff-6cf0-45a3-9d48-e7128bd9c3f4", + "name": "eval hook", + "description": "EvaluateEvent hook.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526105125791, + "endTime": 340526109845250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "b3ab6363-b97e-4b3f-8748-74f235d829c9", + "logId": "34796447-b6c4-4501-a434-7934dfab4483" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "94e930cb-639d-423b-8dfe-46728035cac1", + "name": "fin configuration", + "description": "Finish configuration.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526109855458, + "endTime": 340526109886166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "b3ab6363-b97e-4b3f-8748-74f235d829c9", + "logId": "6edaf669-f374-49aa-b52b-9a194e9482a9" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "63eb9b1d-13a2-4fd5-b8d1-6b28c9f8b508", + "name": "init configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525352037625, + "endTime": 340525352045166 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3d6feac6-8aed-46db-b386-e109baf80395", + "parent": "d55def5f-f421-41c1-806b-d6939a56188f" + } + }, + { + "head": { + "id": "3184cdcc-6c39-45c9-b288-4714b404c5a3", + "name": "configure project task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525352061541, + "endTime": 340525352328333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "53503262-a1db-4b8b-842b-3946572d0c77", + "parent": "d55def5f-f421-41c1-806b-d6939a56188f" + } + }, + { + "head": { + "id": "56e884fd-24c2-4f66-8a45-dfa7f20edb02", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525352427916, + "endTime": 340525352438416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "9fc89dae-91cf-40af-ac12-b2e7d39487ad", + "logId": "8f129922-2c62-4a1c-aa07-4b481f4a61da" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8f129922-2c62-4a1c-aa07-4b481f4a61da", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525352427916, + "endTime": 340525352438416 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "56e884fd-24c2-4f66-8a45-dfa7f20edb02", + "parent": "35d1ad91-baf6-471b-a1e7-e1aef9e85de0" + } + }, + { + "head": { + "id": "164f9064-94b4-4f92-89ab-f8f6acbc600a", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525352534333, + "endTime": 340526067956458 + }, + "additional": { + "children": [ + "0e182ac9-6ebf-44b4-bb8d-0ae7bde38d24", + "c322b28f-4e8f-4404-bdd2-78fd70f15537" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "9fc89dae-91cf-40af-ac12-b2e7d39487ad", + "logId": "7583916c-6239-48fa-9039-25df6e0a3523" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0e182ac9-6ebf-44b4-bb8d-0ae7bde38d24", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525352534708, + "endTime": 340525961391041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "164f9064-94b4-4f92-89ab-f8f6acbc600a", + "logId": "8cec87ce-114c-4ea7-a6c3-1ae2ecf6533c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c322b28f-4e8f-4404-bdd2-78fd70f15537", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525961409666, + "endTime": 340526067949041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "164f9064-94b4-4f92-89ab-f8f6acbc600a", + "logId": "50ec8303-ab2f-406f-9e9a-8e28f0fb0903" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3e1603f3-f06b-4015-be1d-f52460f7f6ad", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525352536291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a5336d07-6855-415f-a26d-1aba924be682", + "name": "hvigorfile, require result: { default: { system: [Function: appTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525961222291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8cec87ce-114c-4ea7-a6c3-1ae2ecf6533c", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525352534708, + "endTime": 340525961391041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "0e182ac9-6ebf-44b4-bb8d-0ae7bde38d24", + "parent": "7583916c-6239-48fa-9039-25df6e0a3523" + } + }, + { + "head": { + "id": "2bc93aac-a969-4a4b-b844-60107ad3ecda", + "name": "hvigorfile, binding system plugins [Function: appTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525961462208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f20ed2ae-4d23-4f00-b3cb-102cce89df87", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525962117625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "95900c0c-78d9-462a-b6c4-4129d14d327a", + "name": "App plugin prepare start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525962169875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "17ff0b5c-8340-4a8b-a788-0d02116ee6fe", + "name": "App plugin prepare end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525962210625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "95af7b08-4767-4a23-8b3a-d0aa612c1646", + "name": "App plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525962226458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b7da06f5-c99c-4fad-be1e-b40ff712eaee", + "name": "App plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526042846333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0b265c27-f008-436b-a2f6-690cbfb6cdac", + "name": "App plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526043073833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9edeec78-9ba4-4b42-bdad-cbad7c49e65d", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526043091875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "98b620c4-27d6-4145-814c-e3924aeb81ac", + "name": "Start initialize project's product build option map with build mode debug.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526043797416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e2d8f4c4-0793-4ff3-95fd-0a8350a5b6bb", + "name": "Picking option from product 'default' with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526043922666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5b8cb15b-7d3f-4f59-91b4-8cc0038b068a", + "name": "Product 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526044103083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "197bc5e4-5717-49a4-8fde-e1a4130c1da7", + "name": "End initialize project's product build option map with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526044123166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "87794c38-5831-469c-bb99-47fa0baff03e", + "name": "Obtain build option for product 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526045052083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "762a8b04-4932-46cb-a3c1-c8ac968e4573", + "name": "No signingConfig found, initRemoteHspCache failed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526045860750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9b53dc32-7907-4df0-843b-486b18552a75", + "name": "harmonyOS sdk scan", + "description": "HarmonyOS sdk scan", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526046537291, + "endTime": 340526047430416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Other", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "974eb91f-fc2d-49d3-b257-e3fbbaebadb7", + "name": "Local scan or download HarmonyOS sdk components toolchains,ets,js,native,previewer", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526046547333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "60ead63e-7a75-4133-8427-69e050851ab0", + "name": "hmscore sdk scan", + "description": "Hmscore sdk scan", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526047492166, + "endTime": 340526047682333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Other", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b7610ac9-8ee1-4fb7-9831-9d373a9d648a", + "name": "Local scan or download hmscore sdk components toolchains,ets,native", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526047495625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ba894c9d-47af-4033-bc27-ffe90ce6de1e", + "name": "Start recording SDK configuration permission data.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526048324291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "69ee373a-c206-4bdb-8db7-2f07c193b5b2", + "name": "Sdk init in 19 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526064903583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b5880f8f-276d-422d-88bc-f04f2369ceee", + "name": "sdkVersion", + "description": "6.0.2.130", + "type": "mark" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526064993791 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 2, + "second": 32 + }, + "markType": "other" + } + }, + { + "head": { + "id": "77ef17d0-b846-4926-8b70-4129edc46f11", + "name": "caseSensitiveCheckOn", + "description": "caseSensitiveCheck check is on", + "type": "mark" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526065028250 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 2, + "second": 32 + }, + "markType": "other" + } + }, + { + "head": { + "id": "871fbb1c-0345-47eb-ab60-54d66111dc30", + "name": "Project task initialization takes 3 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526067848833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e7fdf86b-766f-4c82-8187-5c83ca363e5d", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526067921916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6d492dae-b27b-4c37-b436-9aa0301ab0cc", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526067934958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e7e40cc2-1e1b-4431-9d75-4170c3fdb749", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526067942875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "50ec8303-ab2f-406f-9e9a-8e28f0fb0903", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525961409666, + "endTime": 340526067949041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "c322b28f-4e8f-4404-bdd2-78fd70f15537", + "parent": "7583916c-6239-48fa-9039-25df6e0a3523" + } + }, + { + "head": { + "id": "7583916c-6239-48fa-9039-25df6e0a3523", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525352534333, + "endTime": 340526067956458 + }, + "additional": { + "logType": "info", + "children": [ + "8cec87ce-114c-4ea7-a6c3-1ae2ecf6533c", + "50ec8303-ab2f-406f-9e9a-8e28f0fb0903" + ], + "durationId": "164f9064-94b4-4f92-89ab-f8f6acbc600a", + "parent": "35d1ad91-baf6-471b-a1e7-e1aef9e85de0" + } + }, + { + "head": { + "id": "817a1586-4007-4ea9-971a-46d3d613caeb", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526067997583, + "endTime": 340526068009458 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "9fc89dae-91cf-40af-ac12-b2e7d39487ad", + "logId": "70f154fc-1ae7-4b14-8c80-654285a5ee3e" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "70f154fc-1ae7-4b14-8c80-654285a5ee3e", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526067997583, + "endTime": 340526068009458 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "817a1586-4007-4ea9-971a-46d3d613caeb", + "parent": "35d1ad91-baf6-471b-a1e7-e1aef9e85de0" + } + }, + { + "head": { + "id": "35d1ad91-baf6-471b-a1e7-e1aef9e85de0", + "name": "eval project", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525352365708, + "endTime": 340526068016083 + }, + "additional": { + "logType": "info", + "children": [ + "8f129922-2c62-4a1c-aa07-4b481f4a61da", + "7583916c-6239-48fa-9039-25df6e0a3523", + "70f154fc-1ae7-4b14-8c80-654285a5ee3e" + ], + "durationId": "9fc89dae-91cf-40af-ac12-b2e7d39487ad", + "parent": "d55def5f-f421-41c1-806b-d6939a56188f" + } + }, + { + "head": { + "id": "dfc54856-b99e-4bf6-bfb2-c45bef7b6249", + "name": "eval submodule", + "description": "Evaluate submodule.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526068143083, + "endTime": 340526096559416 + }, + "additional": { + "children": [ + "a4f8ced8-6e79-49ba-a773-0c5c042db8a7", + "5d5472ca-5ac7-4312-9791-e6d215b621a7", + "25451a92-0e4e-4117-8856-01a61a9fb2b8" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "236dc954-d94e-46ba-815a-604ab7375fec", + "logId": "8597b751-8dca-4fac-8c9b-0af76a913b81" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a4f8ced8-6e79-49ba-a773-0c5c042db8a7", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526068180125, + "endTime": 340526068184208 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "dfc54856-b99e-4bf6-bfb2-c45bef7b6249", + "logId": "e5164720-295d-4dde-b633-686f3fcbfc2e" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e5164720-295d-4dde-b633-686f3fcbfc2e", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526068180125, + "endTime": 340526068184208 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "a4f8ced8-6e79-49ba-a773-0c5c042db8a7", + "parent": "8597b751-8dca-4fac-8c9b-0af76a913b81" + } + }, + { + "head": { + "id": "5d5472ca-5ac7-4312-9791-e6d215b621a7", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526068199791, + "endTime": 340526096119541 + }, + "additional": { + "children": [ + "72a8c57e-94d8-4c46-9f26-83cc0a8695b6", + "5eb75dfc-7df8-4b23-a36e-cd143a72c2c8" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "dfc54856-b99e-4bf6-bfb2-c45bef7b6249", + "logId": "ae1d6307-c0d3-4fd6-8f0f-6d1712e74e69" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "72a8c57e-94d8-4c46-9f26-83cc0a8695b6", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526068199958, + "endTime": 340526072269291 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "5d5472ca-5ac7-4312-9791-e6d215b621a7", + "logId": "8a6e9a6e-edb0-46cd-ae1b-0c8a6ae51416" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "5eb75dfc-7df8-4b23-a36e-cd143a72c2c8", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526072279750, + "endTime": 340526096110416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "5d5472ca-5ac7-4312-9791-e6d215b621a7", + "logId": "81d2a54e-e528-4b21-9bff-fd8aa24e1dd4" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "d14325c7-a9b7-48b0-98c4-75ba795454cb", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526068200666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1e16d5ff-a22b-43bc-adb7-f45a90d000cb", + "name": "hvigorfile, require result: { default: { system: [Function: harTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526072210500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8a6e9a6e-edb0-46cd-ae1b-0c8a6ae51416", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526068199958, + "endTime": 340526072269291 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "72a8c57e-94d8-4c46-9f26-83cc0a8695b6", + "parent": "ae1d6307-c0d3-4fd6-8f0f-6d1712e74e69" + } + }, + { + "head": { + "id": "7c45bda8-d92f-4474-8eb9-0c6f11ba6a62", + "name": "hvigorfile, binding system plugins [Function: harTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526072284875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f3e0bb9e-c7f4-4b39-97c0-eab942c3f086", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526072344666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "daa995bf-4c86-4c86-a94f-3c7c41314c4e", + "name": "Har plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526072368125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9e71299a-ed2d-4743-a450-3b2c90627c7f", + "name": "failed to load cangjie to dynamically generate schemas: Error: Cannot find module '@ohos/cangjie-build-support/index'\nRequire stack:\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/hooks/cangjie-register.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/strategy/stage-init-strategy.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/abstract-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/factory/plugin-factory.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/index.js\n- /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/boot/index.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/cli/main/cli.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/bin/hvigor.js", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526072789541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "79a60282-220e-4668-a3d5-1243fa578e9a", + "name": "Start initialize module-target build option map, moduleName=xuqm-sdk, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526092658291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "877593ef-dde9-491a-9907-f58dea2a50ce", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526092775500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "77af87af-ea7a-4b58-9ebc-7854d308e1a4", + "name": "Module 'xuqm-sdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526093016208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "56b17c8f-f5c6-4cbf-bf97-592cc8bba41e", + "name": "End initialize module-target build option map, moduleName=xuqm-sdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526093028375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7f5d5540-59ad-492d-af19-42d4240b7dfa", + "name": "Start initialize module-target build option map, moduleName=xuqm-sdk, buildMode=release", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526093049583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bc14f9a7-460d-4ece-992c-78f0ad8b46e3", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526093062958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "01158446-03f2-4c27-a954-b1ca861d8533", + "name": "Module 'xuqm-sdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526093218708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "23808014-853a-429a-8e0b-73701514cf20", + "name": "End initialize module-target build option map, moduleName=xuqm-sdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526093228666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "aff4fe1c-e177-418a-9d63-0b037c65d4cf", + "name": "Start initialize module-target build option map, moduleName=xuqm-sdk, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526093313041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9c8c0a92-1327-45fa-8393-7fc33f3be103", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526093326541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "28d0664f-ffec-4705-85fc-5b5a7fd0053e", + "name": "Module 'xuqm-sdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526093436083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bebc55f7-5c23-400c-ae43-697fe1c9d693", + "name": "End initialize module-target build option map, moduleName=xuqm-sdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526093442875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e9992b6f-e344-436d-89b1-43a807f6a37d", + "name": "Obtain build option for module 'xuqm-sdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526093528416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "12f3e490-46a3-4698-8bc6-db7fe35729e1", + "name": "Module xuqm-sdk task initialization takes 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526095944000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e6f05965-2d18-475c-b0d5-bb4711ba94b6", + "name": "Har plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526096012458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c0020a5a-faaf-4b37-bd49-77e16113bd5f", + "name": "Har plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526096037250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5306fc7e-5bb0-4631-8d59-101d34d60564", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526096046000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fc726c42-c8b3-40a5-9e5f-65741673593c", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526096084583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "57ea104f-20c4-455a-872a-0259738b7683", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526096097166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b342fe55-0a86-49d6-b63d-49a5e3e5aae5", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526096103916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "81d2a54e-e528-4b21-9bff-fd8aa24e1dd4", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526072279750, + "endTime": 340526096110416 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "5eb75dfc-7df8-4b23-a36e-cd143a72c2c8", + "parent": "ae1d6307-c0d3-4fd6-8f0f-6d1712e74e69" + } + }, + { + "head": { + "id": "ae1d6307-c0d3-4fd6-8f0f-6d1712e74e69", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526068199791, + "endTime": 340526096119541 + }, + "additional": { + "logType": "info", + "children": [ + "8a6e9a6e-edb0-46cd-ae1b-0c8a6ae51416", + "81d2a54e-e528-4b21-9bff-fd8aa24e1dd4" + ], + "durationId": "5d5472ca-5ac7-4312-9791-e6d215b621a7", + "parent": "8597b751-8dca-4fac-8c9b-0af76a913b81" + } + }, + { + "head": { + "id": "25451a92-0e4e-4117-8856-01a61a9fb2b8", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526096549875, + "endTime": 340526096554458 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "dfc54856-b99e-4bf6-bfb2-c45bef7b6249", + "logId": "c7e6876a-eb56-4bbb-9069-b341f2273d90" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c7e6876a-eb56-4bbb-9069-b341f2273d90", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526096549875, + "endTime": 340526096554458 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "25451a92-0e4e-4117-8856-01a61a9fb2b8", + "parent": "8597b751-8dca-4fac-8c9b-0af76a913b81" + } + }, + { + "head": { + "id": "8597b751-8dca-4fac-8c9b-0af76a913b81", + "name": "eval submodule", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526068143083, + "endTime": 340526096559416 + }, + "additional": { + "logType": "info", + "children": [ + "e5164720-295d-4dde-b633-686f3fcbfc2e", + "ae1d6307-c0d3-4fd6-8f0f-6d1712e74e69", + "c7e6876a-eb56-4bbb-9069-b341f2273d90" + ], + "durationId": "dfc54856-b99e-4bf6-bfb2-c45bef7b6249", + "parent": "677de22c-e514-4607-9402-75c5595cc816" + } + }, + { + "head": { + "id": "ab646af5-155b-4e0f-bcb5-abcebba995e6", + "name": "eval submodule", + "description": "Evaluate submodule.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526096571541, + "endTime": 340526102239500 + }, + "additional": { + "children": [ + "9b50a0e7-66e9-47c2-ad0d-6245de41d044", + "7422bb25-f434-4a5b-bd23-c125b5f56c23", + "ab85e005-24f8-4e14-bc13-c5060e5a1cd2" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "236dc954-d94e-46ba-815a-604ab7375fec", + "logId": "57e5078c-6989-4029-bdd2-996336c8f6b9" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9b50a0e7-66e9-47c2-ad0d-6245de41d044", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526096612666, + "endTime": 340526096614875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ab646af5-155b-4e0f-bcb5-abcebba995e6", + "logId": "a52c6eae-faa7-4cf4-b7f6-dbfc31a8c412" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a52c6eae-faa7-4cf4-b7f6-dbfc31a8c412", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526096612666, + "endTime": 340526096614875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9b50a0e7-66e9-47c2-ad0d-6245de41d044", + "parent": "57e5078c-6989-4029-bdd2-996336c8f6b9" + } + }, + { + "head": { + "id": "7422bb25-f434-4a5b-bd23-c125b5f56c23", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526096631250, + "endTime": 340526102208166 + }, + "additional": { + "children": [ + "0d198b04-9934-4029-98ba-3f24724f33cc", + "8978ce76-977d-4110-b5b7-31da562451bf" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ab646af5-155b-4e0f-bcb5-abcebba995e6", + "logId": "ab7bf00d-5df3-4446-ac80-585b2b7a5183" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0d198b04-9934-4029-98ba-3f24724f33cc", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526096631416, + "endTime": 340526099603333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "7422bb25-f434-4a5b-bd23-c125b5f56c23", + "logId": "f493294a-f6c6-4a22-b003-1d84844f5c96" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8978ce76-977d-4110-b5b7-31da562451bf", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526099609250, + "endTime": 340526102204041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "7422bb25-f434-4a5b-bd23-c125b5f56c23", + "logId": "f6b783c1-ded1-4fee-889c-ea3c6ab29b57" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2a21e118-3e8b-471a-a9a7-b69175ac2492", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526096632250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "89655508-7a66-4257-ab04-20da31e46da0", + "name": "hvigorfile, require result: { default: { system: [Function: hapTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526099572500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f493294a-f6c6-4a22-b003-1d84844f5c96", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526096631416, + "endTime": 340526099603333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "0d198b04-9934-4029-98ba-3f24724f33cc", + "parent": "ab7bf00d-5df3-4446-ac80-585b2b7a5183" + } + }, + { + "head": { + "id": "829a45d6-5645-43b9-bcd5-610db8dca6da", + "name": "hvigorfile, binding system plugins [Function: hapTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526099613791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9d07ba9a-5a59-44ab-881f-afad137a0408", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526099661041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "86f3db5f-8ddd-497e-9585-9eb3a29c5197", + "name": "Hap plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526099679875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e2fe8578-a023-4472-a99e-1ea98efebf8c", + "name": "failed to load cangjie to dynamically generate schemas: Error: Cannot find module '@ohos/cangjie-build-support/index'\nRequire stack:\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/hooks/cangjie-register.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/strategy/stage-init-strategy.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/abstract-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/factory/plugin-factory.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/index.js\n- /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/boot/index.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/cli/main/cli.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/bin/hvigor.js", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526099781875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1bbc5d97-ae54-4f8b-8de9-ccd520c69a82", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526101301291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0504fa43-cd9a-412b-a6c9-23127722b2e1", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526101320625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6b606331-5119-410f-b084-b87680eedefa", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526101372333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3a5aab5f-ec7f-4242-85e4-ea80d7176b03", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526101380250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1849514e-f4b7-4d54-ab0c-97d3f272fb4f", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=release", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526101394208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "83654767-91b8-4d2a-81bb-5d4eaebfd25a", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526101403916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8e537737-e60f-4b39-8069-2f3eb477c330", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526101446583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ca2f2438-d92b-4e55-bbcb-c4ae5d0b1947", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526101453708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "34a8e94c-97f1-4d19-86e4-0d3f0a94105c", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526101467875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9e9d9c5b-ad83-4038-a6a7-0358d6839034", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526101477375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "64196fcd-1c59-4df8-8539-bc724cfac2e2", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526101510666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dca7579a-ff70-4d1c-ba67-f1d27400510a", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526101516625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b79a91cb-decf-4baa-9aeb-1fbd48b618aa", + "name": "Obtain build option for module 'entry' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526101527291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0ff47dc9-6a23-4c53-a623-35b6aa04b499", + "name": "Module entry task initialization takes 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526102117458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "008be2e9-e76a-4b29-8ac1-ee3eb8a10135", + "name": "Hap plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526102147750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "84fb162c-5738-41cf-b4ab-76e5465e66cc", + "name": "Hap plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526102156750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e3b118b3-b0a7-4307-83de-134f55ca9879", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526102162708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f54a30ca-0895-4f78-8614-b748bb3c3d8d", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526102183833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c58de243-b5df-4801-89b5-94eecb94c563", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526102192708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "581b6675-cef9-4120-8ed3-79fb229fd4db", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526102198708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f6b783c1-ded1-4fee-889c-ea3c6ab29b57", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526099609250, + "endTime": 340526102204041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "8978ce76-977d-4110-b5b7-31da562451bf", + "parent": "ab7bf00d-5df3-4446-ac80-585b2b7a5183" + } + }, + { + "head": { + "id": "ab7bf00d-5df3-4446-ac80-585b2b7a5183", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526096631250, + "endTime": 340526102208166 + }, + "additional": { + "logType": "info", + "children": [ + "f493294a-f6c6-4a22-b003-1d84844f5c96", + "f6b783c1-ded1-4fee-889c-ea3c6ab29b57" + ], + "durationId": "7422bb25-f434-4a5b-bd23-c125b5f56c23", + "parent": "57e5078c-6989-4029-bdd2-996336c8f6b9" + } + }, + { + "head": { + "id": "ab85e005-24f8-4e14-bc13-c5060e5a1cd2", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526102232791, + "endTime": 340526102235708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ab646af5-155b-4e0f-bcb5-abcebba995e6", + "logId": "15cb4797-935d-492d-b3f3-389e8259cd4e" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "15cb4797-935d-492d-b3f3-389e8259cd4e", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526102232791, + "endTime": 340526102235708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ab85e005-24f8-4e14-bc13-c5060e5a1cd2", + "parent": "57e5078c-6989-4029-bdd2-996336c8f6b9" + } + }, + { + "head": { + "id": "57e5078c-6989-4029-bdd2-996336c8f6b9", + "name": "eval submodule", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526096571541, + "endTime": 340526102239500 + }, + "additional": { + "logType": "info", + "children": [ + "a52c6eae-faa7-4cf4-b7f6-dbfc31a8c412", + "ab7bf00d-5df3-4446-ac80-585b2b7a5183", + "15cb4797-935d-492d-b3f3-389e8259cd4e" + ], + "durationId": "ab646af5-155b-4e0f-bcb5-abcebba995e6", + "parent": "677de22c-e514-4607-9402-75c5595cc816" + } + }, + { + "head": { + "id": "677de22c-e514-4607-9402-75c5595cc816", + "name": "eval modules", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526068138541, + "endTime": 340526102243583 + }, + "additional": { + "logType": "info", + "children": [ + "8597b751-8dca-4fac-8c9b-0af76a913b81", + "57e5078c-6989-4029-bdd2-996336c8f6b9" + ], + "durationId": "236dc954-d94e-46ba-815a-604ab7375fec", + "parent": "d55def5f-f421-41c1-806b-d6939a56188f" + } + }, + { + "head": { + "id": "3c607c80-1328-4ffd-b220-7f0ef1bed4db", + "name": "add config dependencies", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526102277125, + "endTime": 340526102277583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "06918bb9-4db4-4385-ac09-c8848062df3c", + "parent": "d55def5f-f421-41c1-806b-d6939a56188f" + } + }, + { + "head": { + "id": "43ecde67-c80d-4562-88f7-1bc7ba8ade5b", + "name": "\"nodesEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526102284250, + "endTime": 340526102410208 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "b3ab6363-b97e-4b3f-8748-74f235d829c9", + "logId": "1048c32b-f9c5-4af0-9d6a-2e3ccfba015c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b0839caf-eaa6-4096-bffd-04b37bd3fb03", + "name": "project has submodules:xuqm-sdk,entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526102311500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "33a2e66f-e780-4f42-b0e5-fca8498172b3", + "name": "module:xuqm-sdk no need to execute packageHap", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526102372916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1048c32b-f9c5-4af0-9d6a-2e3ccfba015c", + "name": "\"nodesEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526102284250, + "endTime": 340526102410208 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "43ecde67-c80d-4562-88f7-1bc7ba8ade5b", + "parent": "d55def5f-f421-41c1-806b-d6939a56188f" + } + }, + { + "head": { + "id": "10b14653-3671-43fc-afa9-843936d7d3b0", + "name": "start to load updatedOhPackageInfo to the disk", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526103054416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "edb5f555-7d42-4721-a538-344cf3e2a206", + "name": "load to the disk finished", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526104911833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6cc34643-14c6-4a60-94cf-bee0e93b588b", + "name": "ohpm install", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526102412958, + "endTime": 340526105121583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "5afd1b10-64b6-4acf-b79c-416fe97f9b6f", + "parent": "d55def5f-f421-41c1-806b-d6939a56188f" + } + }, + { + "head": { + "id": "1d758b0c-18cb-4859-ae64-0b44c9b4cf21", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526105165791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1b78fd17-6a18-4edc-a636-59eff3c6e524", + "name": "Module XuqmGroup-HarmonySDK Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526105828791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1bac60c8-7969-40fe-affc-993cdc8d990f", + "name": "Module XuqmGroup-HarmonySDK's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526105842375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a29aa34c-7900-45b5-a8a9-1bcc99ff5251", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526106448666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3ec42263-452d-4232-ac99-91c0bf18eb08", + "name": "Module xuqm-sdk Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526107033833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2bec4faa-48a9-4173-91d7-357a01ed88f2", + "name": "Module xuqm-sdk's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526107050625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1c97e963-952a-4970-b110-46a21ef5d278", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526108486750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0f708d69-941e-4374-905a-d30089640fbc", + "name": "Module entry Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526109443833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c619311d-f0e4-4b77-921e-9ad6c3560b26", + "name": "Module entry's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526109461416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "34796447-b6c4-4501-a434-7934dfab4483", + "name": "eval hook", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526105125791, + "endTime": 340526109845250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "db0df5ff-6cf0-45a3-9d48-e7128bd9c3f4", + "parent": "d55def5f-f421-41c1-806b-d6939a56188f" + } + }, + { + "head": { + "id": "27442ddc-b0c3-4b40-ba3c-bb25801bdb4c", + "name": "Configuration phase cost:758 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526109875250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6edaf669-f374-49aa-b52b-9a194e9482a9", + "name": "fin configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526109855458, + "endTime": 340526109886166 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "94e930cb-639d-423b-8dfe-46728035cac1", + "parent": "d55def5f-f421-41c1-806b-d6939a56188f" + } + }, + { + "head": { + "id": "d55def5f-f421-41c1-806b-d6939a56188f", + "name": "configure hvigor plugin", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525351955250, + "endTime": 340526109890125 + }, + "additional": { + "logType": "info", + "children": [ + "63eb9b1d-13a2-4fd5-b8d1-6b28c9f8b508", + "3184cdcc-6c39-45c9-b288-4714b404c5a3", + "35d1ad91-baf6-471b-a1e7-e1aef9e85de0", + "677de22c-e514-4607-9402-75c5595cc816", + "3c607c80-1328-4ffd-b220-7f0ef1bed4db", + "6cc34643-14c6-4a60-94cf-bee0e93b588b", + "34796447-b6c4-4501-a434-7934dfab4483", + "6edaf669-f374-49aa-b52b-9a194e9482a9", + "1048c32b-f9c5-4af0-9d6a-2e3ccfba015c" + ], + "durationId": "b3ab6363-b97e-4b3f-8748-74f235d829c9", + "parent": "f812147e-a9cf-4198-8186-a0a85cd1eb23" + } + }, + { + "head": { + "id": "a74eb479-667d-4995-b8dd-21f7bd9e8346", + "name": "\"taskGraphResolved\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526110920958, + "endTime": 340526110939250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "20c6e302-9337-488b-b4df-0e11922dd50c", + "logId": "9d843b3e-32ed-4ff3-846d-63b527faef0a" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9d843b3e-32ed-4ff3-846d-63b527faef0a", + "name": "\"taskGraphResolved\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526110920958, + "endTime": 340526110939250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "a74eb479-667d-4995-b8dd-21f7bd9e8346", + "parent": "f812147e-a9cf-4198-8186-a0a85cd1eb23" + } + }, + { + "head": { + "id": "1fb9a999-cc8a-4386-a061-5fb6ed92a275", + "name": "build task graph", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526109904375, + "endTime": 340526110943500 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e3609340-19ee-4e5c-be29-ac59b48eaead", + "parent": "f812147e-a9cf-4198-8186-a0a85cd1eb23" + } + }, + { + "head": { + "id": "43658485-e58d-4a17-ad90-e91130e535b8", + "name": "init task execution option", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526110945708, + "endTime": 340526110949916 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "1e5dc0ff-661a-45c6-a7bc-f94370a0bd13", + "parent": "f812147e-a9cf-4198-8186-a0a85cd1eb23" + } + }, + { + "head": { + "id": "f812147e-a9cf-4198-8186-a0a85cd1eb23", + "name": "init", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525348047333, + "endTime": 340526110953583 + }, + "additional": { + "logType": "info", + "children": [ + "257c0cce-d269-4d68-8c95-0bd64cab156d", + "d55def5f-f421-41c1-806b-d6939a56188f", + "1fb9a999-cc8a-4386-a061-5fb6ed92a275", + "43658485-e58d-4a17-ad90-e91130e535b8", + "7ff1d587-4b43-4a24-a6d9-c6637a598e48", + "2f6cce7e-ec6f-47de-853e-65bfc8d5aa0a", + "9d843b3e-32ed-4ff3-846d-63b527faef0a" + ], + "durationId": "20c6e302-9337-488b-b4df-0e11922dd50c" + } + }, + { + "head": { + "id": "ff47951c-9d59-4f0c-a897-5b20d50758e5", + "name": "Configuration task cost before running: 764 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526111229250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "feb5b101-30f2-4a5d-bd73-478b48446526", + "name": "entry:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526113414291, + "endTime": 340526168269625 + }, + "additional": { + "children": [], + "state": "failed", + "targetName": "default", + "moduleName": "entry", + "category": "Verification", + "taskRunReasons": [], + "detailId": "0079345a-7098-4cb0-bd97-2ea156719f6a", + "logId": "585a5bcb-3124-4307-ae39-a6d7ae827a41" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0079345a-7098-4cb0-bd97-2ea156719f6a", + "name": "create entry:default@PreBuild task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526111500666 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "feb5b101-30f2-4a5d-bd73-478b48446526" + } + }, + { + "head": { + "id": "dc0b6d99-d6b1-43ee-a3ca-04f8b7036172", + "name": "Executing task :entry:default@PreBuild", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526113427083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "96d03dd8-b054-48b7-9b15-d773d7fd5092", + "name": "The project has not explicitly set the 'targetSdkVersion' version at build-profile.json5. It is recommended to configure it. Reference: https://developer.huawei.com/consumer/cn/doc/harmonyos-guides/ide-hvigor-build-profile-app#section45865492619", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526113616041 + }, + "additional": { + "logType": "warn", + "children": [] + } + }, + { + "head": { + "id": "5b038d5b-a5fb-4bf9-8c0f-c542d18e8ebc", + "name": "Task 'entry:default@PreBuild' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526114683375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "585a5bcb-3124-4307-ae39-a6d7ae827a41", + "name": "Failed :entry:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526113414291, + "endTime": 340526168269625 + }, + "additional": { + "logType": "error", + "children": [], + "durationId": "feb5b101-30f2-4a5d-bd73-478b48446526" + } + }, + { + "head": { + "id": "b0299b76-2710-49d8-8035-51b0d9663af2", + "name": "hvigor build process will be closed with an error.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526168470750 + }, + "additional": { + "logType": "debug", + "children": [], + "durationId": "feb5b101-30f2-4a5d-bd73-478b48446526" + } + }, + { + "head": { + "id": "597f258f-0f64-4cbf-a672-3c5656b00c85", + "name": "\u001b[31m00303038 Configuration Error\nError Message: Schema validate failed, at file: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigor/hvigor-config.json5\n\n* Try the following:\n > Please check the following fields. \n {\n instancePath: '',\n keyword: 'required',\n params: { missingProperty: 'dependencies' },\n message: \"must have required property 'dependencies'\",\n location: '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigor/hvigor-config.json5:1:2'\n} \n\n\u001b[39m\n\n\u001b[31m* Try:\n> Run with --stacktrace option to get the stack trace.\n> Run with --debug option to get more log output.\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526168510125 + }, + "additional": { + "logType": "error", + "children": [], + "durationId": "feb5b101-30f2-4a5d-bd73-478b48446526" + } + }, + { + "head": { + "id": "8a3d1844-ea38-4ee7-987e-9a9fe2c9a488", + "name": "ERROR: stacktrace = AdaptorError: \u001b[31m00303038 Configuration Error\nError Message: Schema validate failed, at file: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigor/hvigor-config.json5\n\n* Try the following:\n > Please check the following fields. \n {\n instancePath: '',\n keyword: 'required',\n params: { missingProperty: 'dependencies' },\n message: \"must have required property 'dependencies'\",\n location: '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigor/hvigor-config.json5:1:2'\n} \n\n\u001b[39m\n at OhosLogger.printErrorExit (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/log/hvigor-log.js:1:5087)\n at ValidateUtil.doSchemaCheck (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/utils/validate/validate-util.js:1:8177)\n at ValidateUtil.submitSchemaCheckWork (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/utils/validate/validate-util.js:1:7013)\n at PreBuild.hvigorConfigValidate (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/tasks/pre-build.js:1:23759)\n at PreBuild.doValidateForDiffApiType (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/tasks/pre-build.js:1:9876)\n at PreBuild.doTaskAction (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/tasks/abstract/abstract-pre-build.js:1:7450)\n at PreBuild. (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/tasks/task/ohos-module-task.js:1:2074)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async PreBuild.execute (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/external/task/core-task-impl.js:1:2191)\n at async TaskProxy.execute (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/task/proxy/task-proxy.js:1:6139)", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526168751833 + }, + "additional": { + "logType": "debug", + "children": [], + "durationId": "feb5b101-30f2-4a5d-bd73-478b48446526" + } + }, + { + "head": { + "id": "ea859fe7-5621-4191-a9bf-5d3225cb02b2", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526169072833, + "endTime": 340526169209583 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "530228a9-719b-40fe-a067-284b813e4955", + "logId": "7f94309c-f41e-42b4-9ff2-0a948df6e3ed" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "7f94309c-f41e-42b4-9ff2-0a948df6e3ed", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526169072833, + "endTime": 340526169209583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ea859fe7-5621-4191-a9bf-5d3225cb02b2" + } + }, + { + "head": { + "id": "51066e8a-3358-4a8e-8e99-54f301ac1e33", + "name": "assembleHap", + "description": "", + "type": "mark" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340525347665500, + "endTime": 340526169469541 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 2, + "second": 33 + }, + "completeCommand": "{\"prop\":[],\"_\":[\"assembleHap\"]};assembleHap", + "hvigorVersion": "6.22.4", + "markType": "history", + "nodeVersion": "v18.20.1", + "category": "build", + "state": "failed" + } + }, + { + "head": { + "id": "18d4c01c-7f4b-4dfb-be95-486c2811ec56", + "name": "BUILD FAILED in 822 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526169488625 + }, + "additional": { + "logType": "error", + "children": [] + } + }, + { + "head": { + "id": "10323eeb-f958-4c9a-b976-e177135fc593", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526169688500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ea0c6733-3385-405a-a24e-cd2e18c95b1b", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526169896916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8d4fbd48-d0bc-4616-b62a-5716d0007438", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526169937416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ba346a66-593c-4e92-826a-99191cf3fed3", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526170073958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7c2170c2-7b5c-42bb-acb4-4865fd263394", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base/profile/main_pages.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526170103166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a140d1d5-28de-4b6d-847a-e828802140d5", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigor/hvigor-config.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526170136708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6c09264a-f4e6-439f-9e04-1a22ce64d31f", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526170160625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8f1e5af0-d725-409e-a71d-bc8702341db3", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526170187500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a6d49250-b394-45a3-a57a-0568b6012b13", + "name": "Incremental task entry:default@PreBuild post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14080, + "tid": "Main Thread", + "startTime": 340526170269750 + }, + "additional": { + "logType": "debug", + "children": [] + } + } + ] +} \ No newline at end of file diff --git a/.hvigor/report/report-202604281902448810.json b/.hvigor/report/report-202604281902448810.json new file mode 100644 index 0000000..f499631 --- /dev/null +++ b/.hvigor/report/report-202604281902448810.json @@ -0,0 +1,10946 @@ +{ + "version": "2.0", + "ppid": 14586, + "events": [ + { + "head": { + "id": "604ee3b8-56cc-4c99-b10c-a120ef91fb45", + "name": "env: nodejsVersion=v18.20.1", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537863470083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "af3d86c3-75fe-4989-b5c4-c4eac1b69bdc", + "name": "env: hvigor-config.json5 content = {\n modelVersion: '5.0.0',\n dependencies: {},\n execution: {\n daemon: false,\n incremental: true,\n parallel: true,\n typeCheck: false\n },\n logging: { level: 'info' },\n debugging: { stacktrace: false },\n nodeOptions: { maxOldSpaceSize: 4096 }\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537864106041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "90f670d4-9d3b-4e43-aaf3-1520050e5107", + "name": "env: daemon=false", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537865048958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "40f9bfbb-26e2-47c6-af79-f357fa1cc60c", + "name": "no-daemon, use the parent process.execArgv --max-old-space-size=4096,--max-semi-space-size=16,--expose-gc", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537865104000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f7269071-8b98-4b37-802b-728bc313fb00", + "name": "init", + "description": "Initialize and build task graph.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537980159958, + "endTime": 340538541785166 + }, + "additional": { + "children": [ + "f3757cec-cd0e-416f-90c9-a4648f0b4968", + "e9405e5f-5164-43ba-abd7-1d51cfb17603", + "b985f6c4-b659-4edb-bf86-86b114b5dda5", + "4face60f-b622-45b5-9e25-8c4cdfc6feea", + "2f82c32d-f91d-4f3c-871b-f66c4faa4403", + "88a79e45-1f28-4b5f-94d3-255b052867e7", + "9f342fd3-eeb1-45b1-ba95-8fc0a56b55e1" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Init", + "taskRunReasons": [], + "logId": "2a10df88-db8b-4fb6-94c1-2d0fd15ea1c0" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f3757cec-cd0e-416f-90c9-a4648f0b4968", + "name": "create hvigor project model", + "description": "Initialize hvigor project model.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537980162833, + "endTime": 340537982988291 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "f7269071-8b98-4b37-802b-728bc313fb00", + "logId": "46b2d3f9-0b2f-454c-b473-0655e02ac9cc" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e9405e5f-5164-43ba-abd7-1d51cfb17603", + "name": "configure hvigor plugin", + "description": "Configure hvigor plugin.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537983081958, + "endTime": 340538540746583 + }, + "additional": { + "children": [ + "20ff7a61-55f2-48ee-b84c-77e709719c7c", + "9b591732-d072-486b-95a8-81aa5733b2ff", + "837c4d05-8811-4735-8b2d-5760e776c4ad", + "82d7ee11-571c-4765-b354-509bd0ca2310", + "e1cc32e6-351e-4b97-8a88-47775a31aa7c", + "72a6a782-5ba5-485f-b2da-7eb1ce2c2286", + "93912d45-0493-43b4-a439-746d6dd7f6d5", + "bd4011aa-2fa6-4e7e-8fe7-9978fa3e91a6", + "ef285517-22ff-414b-85cd-8c2068e2a891" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "f7269071-8b98-4b37-802b-728bc313fb00", + "logId": "14ec7428-8464-450c-87b7-4457b03d5a87" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b985f6c4-b659-4edb-bf86-86b114b5dda5", + "name": "build task graph", + "description": "Build task graph.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538540759875, + "endTime": 340538541775791 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "f7269071-8b98-4b37-802b-728bc313fb00", + "logId": "77062509-9b1a-4289-a9a7-4f46a5a9eab6" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "4face60f-b622-45b5-9e25-8c4cdfc6feea", + "name": "init task execution option", + "description": "Init task execution option.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538541777666, + "endTime": 340538541782333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "f7269071-8b98-4b37-802b-728bc313fb00", + "logId": "faf15f63-9bea-437f-87fe-10c1f23fd247" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2f82c32d-f91d-4f3c-871b-f66c4faa4403", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537981453416, + "endTime": 340537981548250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "f7269071-8b98-4b37-802b-728bc313fb00", + "logId": "0b0da934-3f39-47af-9265-b12a9eab16ce" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0b0da934-3f39-47af-9265-b12a9eab16ce", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537981453416, + "endTime": 340537981548250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "2f82c32d-f91d-4f3c-871b-f66c4faa4403", + "parent": "2a10df88-db8b-4fb6-94c1-2d0fd15ea1c0" + } + }, + { + "head": { + "id": "88a79e45-1f28-4b5f-94d3-255b052867e7", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537982084291, + "endTime": 340537982096000 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "f7269071-8b98-4b37-802b-728bc313fb00", + "logId": "5cda8735-939e-49a4-89a1-82728100ed81" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "5cda8735-939e-49a4-89a1-82728100ed81", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537982084291, + "endTime": 340537982096000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "88a79e45-1f28-4b5f-94d3-255b052867e7", + "parent": "2a10df88-db8b-4fb6-94c1-2d0fd15ea1c0" + } + }, + { + "head": { + "id": "8f9f69b1-1833-495d-9a66-be4908ba3064", + "name": "Hvigor init with startParameters:{\n hvigorfileTypeCheck: false,\n parallelExecution: true,\n incrementalExecution: true,\n printStackTrace: false,\n daemon: false,\n analyze: 0,\n logLevel: Level { level: 20000, levelStr: 'INFO', colour: 'green' },\n optimizationStrategy: 'memory',\n hotCompile: undefined,\n hotReloadBuild: undefined,\n customizedParam: undefined\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537982224625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a259e22c-a1c6-45f6-8365-6ec762af9473", + "name": "Cache service initialization finished in 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537982968666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "46b2d3f9-0b2f-454c-b473-0655e02ac9cc", + "name": "create hvigor project model", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537980162833, + "endTime": 340537982988291 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f3757cec-cd0e-416f-90c9-a4648f0b4968", + "parent": "2a10df88-db8b-4fb6-94c1-2d0fd15ea1c0" + } + }, + { + "head": { + "id": "20ff7a61-55f2-48ee-b84c-77e709719c7c", + "name": "init configuration", + "description": "Initialize configuration.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537983152583, + "endTime": 340537983159666 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e9405e5f-5164-43ba-abd7-1d51cfb17603", + "logId": "d2a1cff3-4ab5-4577-aab0-ef502ede84e2" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9b591732-d072-486b-95a8-81aa5733b2ff", + "name": "configure project task", + "description": "Configure project task.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537983173458, + "endTime": 340537983434375 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e9405e5f-5164-43ba-abd7-1d51cfb17603", + "logId": "e7faa37c-58f3-45b7-a709-83892dc41da3" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "837c4d05-8811-4735-8b2d-5760e776c4ad", + "name": "eval project", + "description": "Evaluate project.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537983466583, + "endTime": 340538502215708 + }, + "additional": { + "children": [ + "704c014e-e308-4cba-a533-03ff3da4c34c", + "ef9c3c54-ff8d-4afd-b514-5fe175a8112f", + "4a7a424d-ae97-4390-b901-559d989d26bd" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e9405e5f-5164-43ba-abd7-1d51cfb17603", + "logId": "6066cfdd-5d88-4ebb-af41-1b1743a43b86" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "82d7ee11-571c-4765-b354-509bd0ca2310", + "name": "eval modules", + "description": "Evaluate modules.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538502337250, + "endTime": 340538533927500 + }, + "additional": { + "children": [ + "550867e2-d94f-4326-83a7-0cb0a2c27c15", + "7af54255-04d1-4289-bbbe-9defa74bd2fd" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e9405e5f-5164-43ba-abd7-1d51cfb17603", + "logId": "2215da69-6206-4aae-bb08-85d0a9b0631d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e1cc32e6-351e-4b97-8a88-47775a31aa7c", + "name": "add config dependencies", + "description": "Add configuration dependencies.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533943125, + "endTime": 340538533943541 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e9405e5f-5164-43ba-abd7-1d51cfb17603", + "logId": "5a72d5e4-65b0-428e-ba4e-458c25b61a2d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "72a6a782-5ba5-485f-b2da-7eb1ce2c2286", + "name": "ohpm install", + "description": "Ohpm install event.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538534064333, + "endTime": 340538536333375 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e9405e5f-5164-43ba-abd7-1d51cfb17603", + "logId": "d49129bc-bd2f-4a9b-947b-899f652ad4cd" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "93912d45-0493-43b4-a439-746d6dd7f6d5", + "name": "eval hook", + "description": "EvaluateEvent hook.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538536338500, + "endTime": 340538540702000 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e9405e5f-5164-43ba-abd7-1d51cfb17603", + "logId": "83ae5fcb-3337-44bf-8f54-8675e0f505a7" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "bd4011aa-2fa6-4e7e-8fe7-9978fa3e91a6", + "name": "fin configuration", + "description": "Finish configuration.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538540709541, + "endTime": 340538540742333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e9405e5f-5164-43ba-abd7-1d51cfb17603", + "logId": "94815fa3-f9b9-4290-b0d6-e9ee5e299b90" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "d2a1cff3-4ab5-4577-aab0-ef502ede84e2", + "name": "init configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537983152583, + "endTime": 340537983159666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "20ff7a61-55f2-48ee-b84c-77e709719c7c", + "parent": "14ec7428-8464-450c-87b7-4457b03d5a87" + } + }, + { + "head": { + "id": "e7faa37c-58f3-45b7-a709-83892dc41da3", + "name": "configure project task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537983173458, + "endTime": 340537983434375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9b591732-d072-486b-95a8-81aa5733b2ff", + "parent": "14ec7428-8464-450c-87b7-4457b03d5a87" + } + }, + { + "head": { + "id": "704c014e-e308-4cba-a533-03ff3da4c34c", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537983528500, + "endTime": 340537983541750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "837c4d05-8811-4735-8b2d-5760e776c4ad", + "logId": "95480469-a9d0-466a-8989-9b79c632cde5" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "95480469-a9d0-466a-8989-9b79c632cde5", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537983528500, + "endTime": 340537983541750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "704c014e-e308-4cba-a533-03ff3da4c34c", + "parent": "6066cfdd-5d88-4ebb-af41-1b1743a43b86" + } + }, + { + "head": { + "id": "ef9c3c54-ff8d-4afd-b514-5fe175a8112f", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537983630083, + "endTime": 340538502153583 + }, + "additional": { + "children": [ + "e82365ca-21bb-4a3a-a6f7-41b0a3b1e769", + "78ab3a24-26cb-40d4-b440-249ce55bbe5d" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "837c4d05-8811-4735-8b2d-5760e776c4ad", + "logId": "748e4e0c-55c1-4829-9d24-eed584612ea4" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e82365ca-21bb-4a3a-a6f7-41b0a3b1e769", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537983630500, + "endTime": 340538399946916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ef9c3c54-ff8d-4afd-b514-5fe175a8112f", + "logId": "f9a8eaf0-4522-45ae-8c9f-a35686b099ee" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "78ab3a24-26cb-40d4-b440-249ce55bbe5d", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538399960041, + "endTime": 340538502147000 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ef9c3c54-ff8d-4afd-b514-5fe175a8112f", + "logId": "8e2ccc6c-3fb7-4cd8-b9ed-c38807b27ebe" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "84829c0d-2d14-40fb-93b9-7417dfc388c0", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537983631958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a2a88809-f0d2-4613-9d0a-9117f75e2dc4", + "name": "hvigorfile, require result: { default: { system: [Function: appTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538399801666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f9a8eaf0-4522-45ae-8c9f-a35686b099ee", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537983630500, + "endTime": 340538399946916 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e82365ca-21bb-4a3a-a6f7-41b0a3b1e769", + "parent": "748e4e0c-55c1-4829-9d24-eed584612ea4" + } + }, + { + "head": { + "id": "bb80a71d-935c-4154-87ae-63b09ae91438", + "name": "hvigorfile, binding system plugins [Function: appTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538400000708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ecf94396-767f-4383-8ada-bc3d434b0564", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538400463458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8959d07f-0763-4bec-943a-828474ea0173", + "name": "App plugin prepare start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538400498666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "07237176-e4b1-4d18-b4b7-0e92677fb1b8", + "name": "App plugin prepare end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538400534333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "85c7879c-1fc7-4faa-b0fd-c0830a8a3576", + "name": "App plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538400548750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ef0fe83a-3302-4dd7-bf91-37950d31c21b", + "name": "App plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538478458666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8e13ea25-a28b-4a20-8771-4a602c3c1c15", + "name": "App plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538478675250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f7f94c23-c3cb-40b2-8425-8af343ff9ad0", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538478691416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8e21d779-a1b4-483a-bf48-01b44654ed9d", + "name": "Start initialize project's product build option map with build mode debug.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538479319083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1994352f-0035-435c-8bfd-d2c145cba28d", + "name": "Picking option from product 'default' with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538479423416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e59134df-f3dd-4519-aa63-46e9a928ecb5", + "name": "Product 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538479582791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9f3076fc-3512-4f25-8237-a044b9d7611e", + "name": "End initialize project's product build option map with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538479601583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cd3f252d-3ae6-49a5-b86f-1c2b2ae2da43", + "name": "Obtain build option for product 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538480426875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "111fd361-d872-4178-abcf-2e422296a1de", + "name": "No signingConfig found, initRemoteHspCache failed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538480900583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8e11978f-53ee-486d-a889-14707f79b55d", + "name": "harmonyOS sdk scan", + "description": "HarmonyOS sdk scan", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538481525208, + "endTime": 340538482281166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Other", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "441a51a0-068a-4025-9838-732df9073fee", + "name": "Local scan or download HarmonyOS sdk components toolchains,ets,js,native,previewer", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538481532291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6b488973-353c-46fd-bd1f-899e93157829", + "name": "hmscore sdk scan", + "description": "Hmscore sdk scan", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538482336500, + "endTime": 340538482509666 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Other", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "27b32163-31d5-4201-abba-4844a3f10634", + "name": "Local scan or download hmscore sdk components toolchains,ets,native", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538482341708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5d2ea829-2360-49da-a676-a9b7f19a8fc2", + "name": "Start recording SDK configuration permission data.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538483137041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "78b615e1-a5b9-4fcd-837a-a40561889d41", + "name": "Sdk init in 19 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538499259000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "248bb9d5-03e7-417b-91ec-0f3e8d9eb395", + "name": "sdkVersion", + "description": "6.0.2.130", + "type": "mark" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538499359541 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 2, + "second": 45 + }, + "markType": "other" + } + }, + { + "head": { + "id": "3c0bdc49-3d49-46b8-9354-dbafd30b28e2", + "name": "caseSensitiveCheckOn", + "description": "caseSensitiveCheck check is on", + "type": "mark" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538499391458 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 2, + "second": 45 + }, + "markType": "other" + } + }, + { + "head": { + "id": "1444e2fa-9516-4d8a-ab0d-74785e5e8e85", + "name": "Project task initialization takes 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538502048208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2b865642-c774-407d-9c6b-d16b60d70ee5", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538502118208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0619ec79-0e12-4bfa-8f56-53dd33ea93cb", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538502132375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9ab8e4c7-8dbb-4898-9353-075ab16ac1f3", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538502140583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8e2ccc6c-3fb7-4cd8-b9ed-c38807b27ebe", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538399960041, + "endTime": 340538502147000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "78ab3a24-26cb-40d4-b440-249ce55bbe5d", + "parent": "748e4e0c-55c1-4829-9d24-eed584612ea4" + } + }, + { + "head": { + "id": "748e4e0c-55c1-4829-9d24-eed584612ea4", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537983630083, + "endTime": 340538502153583 + }, + "additional": { + "logType": "info", + "children": [ + "f9a8eaf0-4522-45ae-8c9f-a35686b099ee", + "8e2ccc6c-3fb7-4cd8-b9ed-c38807b27ebe" + ], + "durationId": "ef9c3c54-ff8d-4afd-b514-5fe175a8112f", + "parent": "6066cfdd-5d88-4ebb-af41-1b1743a43b86" + } + }, + { + "head": { + "id": "4a7a424d-ae97-4390-b901-559d989d26bd", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538502196875, + "endTime": 340538502208875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "837c4d05-8811-4735-8b2d-5760e776c4ad", + "logId": "9c4056db-8224-4460-ab20-c633baf94c5d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9c4056db-8224-4460-ab20-c633baf94c5d", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538502196875, + "endTime": 340538502208875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "4a7a424d-ae97-4390-b901-559d989d26bd", + "parent": "6066cfdd-5d88-4ebb-af41-1b1743a43b86" + } + }, + { + "head": { + "id": "6066cfdd-5d88-4ebb-af41-1b1743a43b86", + "name": "eval project", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537983466583, + "endTime": 340538502215708 + }, + "additional": { + "logType": "info", + "children": [ + "95480469-a9d0-466a-8989-9b79c632cde5", + "748e4e0c-55c1-4829-9d24-eed584612ea4", + "9c4056db-8224-4460-ab20-c633baf94c5d" + ], + "durationId": "837c4d05-8811-4735-8b2d-5760e776c4ad", + "parent": "14ec7428-8464-450c-87b7-4457b03d5a87" + } + }, + { + "head": { + "id": "550867e2-d94f-4326-83a7-0cb0a2c27c15", + "name": "eval submodule", + "description": "Evaluate submodule.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538502341708, + "endTime": 340538528776125 + }, + "additional": { + "children": [ + "1e29d8e5-fcfb-4a3f-ae1c-159ce1ad85af", + "6fdb5806-411e-41e8-9a08-56650719de20", + "090cfbe4-2a75-402d-b830-da3d33ac5f8e" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "82d7ee11-571c-4765-b354-509bd0ca2310", + "logId": "fe65c594-ed24-4309-8ba7-3ebd9527ad14" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "1e29d8e5-fcfb-4a3f-ae1c-159ce1ad85af", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538502380416, + "endTime": 340538502384666 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "550867e2-d94f-4326-83a7-0cb0a2c27c15", + "logId": "c9dcf80f-1dba-457a-9362-55e44b29bae1" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c9dcf80f-1dba-457a-9362-55e44b29bae1", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538502380416, + "endTime": 340538502384666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "1e29d8e5-fcfb-4a3f-ae1c-159ce1ad85af", + "parent": "fe65c594-ed24-4309-8ba7-3ebd9527ad14" + } + }, + { + "head": { + "id": "6fdb5806-411e-41e8-9a08-56650719de20", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538502400333, + "endTime": 340538528322458 + }, + "additional": { + "children": [ + "859272e6-66aa-4421-8865-1d7035f682af", + "110317a7-61c4-45b0-b6a4-6aeb628bd655" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "550867e2-d94f-4326-83a7-0cb0a2c27c15", + "logId": "6bb83374-f5f0-4f92-b071-1832e41707ea" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "859272e6-66aa-4421-8865-1d7035f682af", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538502400458, + "endTime": 340538505450000 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "6fdb5806-411e-41e8-9a08-56650719de20", + "logId": "f9ba6864-c45b-44d4-be67-cd091acd7218" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "110317a7-61c4-45b0-b6a4-6aeb628bd655", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538505458291, + "endTime": 340538528313500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "6fdb5806-411e-41e8-9a08-56650719de20", + "logId": "bd852bd3-08c7-408f-8338-c4c684bc90fe" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "7f2610ae-f910-4896-98f9-d127fc39fb8a", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538502401208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2c883221-cead-409a-8513-6346dafc614b", + "name": "hvigorfile, require result: { default: { system: [Function: harTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538505411791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f9ba6864-c45b-44d4-be67-cd091acd7218", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538502400458, + "endTime": 340538505450000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "859272e6-66aa-4421-8865-1d7035f682af", + "parent": "6bb83374-f5f0-4f92-b071-1832e41707ea" + } + }, + { + "head": { + "id": "e2a7da48-1b11-4b77-8a6d-a1e43de2d9a1", + "name": "hvigorfile, binding system plugins [Function: harTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538505463166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bc042a7d-8d36-4258-8dc4-86a43780234c", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538505508125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d7890c59-aa46-49fa-a4f7-091f98ac086d", + "name": "Har plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538505525916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "801a5cd4-54ad-4f70-bcfb-a444fcad563d", + "name": "failed to load cangjie to dynamically generate schemas: Error: Cannot find module '@ohos/cangjie-build-support/index'\nRequire stack:\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/hooks/cangjie-register.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/strategy/stage-init-strategy.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/abstract-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/factory/plugin-factory.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/index.js\n- /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/boot/index.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/cli/main/cli.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/bin/hvigor.js", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538505862791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a92f232d-372f-47d8-bf0c-5a2ab0b2b976", + "name": "Start initialize module-target build option map, moduleName=xuqm-sdk, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538524983791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3312b141-5cbc-437d-9f88-2af303d165f0", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538525090125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e4d57e74-5781-4c80-a1d4-bec1d7b8ecdd", + "name": "Module 'xuqm-sdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538525313000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c9eedef6-0073-4478-ba3a-af6ee477caae", + "name": "End initialize module-target build option map, moduleName=xuqm-sdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538525324375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b51afe0d-ed80-4dea-a0e1-e5cacb25e750", + "name": "Start initialize module-target build option map, moduleName=xuqm-sdk, buildMode=release", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538525345000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "719948bd-2846-4117-9c07-63e7ef7583ca", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538525358250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "59842d45-d2b3-47bf-bdf7-84a70a2d584e", + "name": "Module 'xuqm-sdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538525520208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "07d62a58-7c7a-48bc-8a34-2dd63a5be21c", + "name": "End initialize module-target build option map, moduleName=xuqm-sdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538525528541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "679bb84d-730a-40b1-b1ec-5b00cab0d946", + "name": "Start initialize module-target build option map, moduleName=xuqm-sdk, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538525603875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d357b9f2-5991-47af-ae76-a92e6894f005", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538525615833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d64a75de-fcf5-4f90-b10b-e82502524f1c", + "name": "Module 'xuqm-sdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538525713666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f0c005e1-9522-4419-87a2-315e48fd3d37", + "name": "End initialize module-target build option map, moduleName=xuqm-sdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538525720916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3a5d1ab8-e690-4892-934e-da49f5b048fd", + "name": "Obtain build option for module 'xuqm-sdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538525791833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "03ac9531-d55e-47db-a0b7-c172581a5d8b", + "name": "Module xuqm-sdk task initialization takes 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538528151666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1c034db7-9a49-45f0-ad3f-15dafb56e7ea", + "name": "Har plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538528219708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5d112f42-e657-48e9-b99b-be5550f762ef", + "name": "Har plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538528244000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e021d469-37b5-4054-8c34-2e6e2fec8459", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538528252041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6313ea9e-5052-4fb4-8065-af05444cf8b9", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538528290083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7360afb2-9cea-4091-b844-bc77de0ea4a5", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538528300708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b715eaf2-2cb0-4bf5-917e-9425418a23d4", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538528306958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bd852bd3-08c7-408f-8338-c4c684bc90fe", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538505458291, + "endTime": 340538528313500 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "110317a7-61c4-45b0-b6a4-6aeb628bd655", + "parent": "6bb83374-f5f0-4f92-b071-1832e41707ea" + } + }, + { + "head": { + "id": "6bb83374-f5f0-4f92-b071-1832e41707ea", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538502400333, + "endTime": 340538528322458 + }, + "additional": { + "logType": "info", + "children": [ + "f9ba6864-c45b-44d4-be67-cd091acd7218", + "bd852bd3-08c7-408f-8338-c4c684bc90fe" + ], + "durationId": "6fdb5806-411e-41e8-9a08-56650719de20", + "parent": "fe65c594-ed24-4309-8ba7-3ebd9527ad14" + } + }, + { + "head": { + "id": "090cfbe4-2a75-402d-b830-da3d33ac5f8e", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538528767875, + "endTime": 340538528771916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "550867e2-d94f-4326-83a7-0cb0a2c27c15", + "logId": "11336a2a-f188-4fe2-bec5-c2962ad00fd5" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "11336a2a-f188-4fe2-bec5-c2962ad00fd5", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538528767875, + "endTime": 340538528771916 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "090cfbe4-2a75-402d-b830-da3d33ac5f8e", + "parent": "fe65c594-ed24-4309-8ba7-3ebd9527ad14" + } + }, + { + "head": { + "id": "fe65c594-ed24-4309-8ba7-3ebd9527ad14", + "name": "eval submodule", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538502341708, + "endTime": 340538528776125 + }, + "additional": { + "logType": "info", + "children": [ + "c9dcf80f-1dba-457a-9362-55e44b29bae1", + "6bb83374-f5f0-4f92-b071-1832e41707ea", + "11336a2a-f188-4fe2-bec5-c2962ad00fd5" + ], + "durationId": "550867e2-d94f-4326-83a7-0cb0a2c27c15", + "parent": "2215da69-6206-4aae-bb08-85d0a9b0631d" + } + }, + { + "head": { + "id": "7af54255-04d1-4289-bbbe-9defa74bd2fd", + "name": "eval submodule", + "description": "Evaluate submodule.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538528787416, + "endTime": 340538533923375 + }, + "additional": { + "children": [ + "004b7845-7177-48ba-9dd6-7573fba2c8ec", + "4d6e19c1-a3b4-409c-a2e5-dc2064f33a4a", + "6e5db0d6-652a-4965-a316-78c862c20b22" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "82d7ee11-571c-4765-b354-509bd0ca2310", + "logId": "8a2d7207-55cd-4302-b9c0-b2c52ef3fdba" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "004b7845-7177-48ba-9dd6-7573fba2c8ec", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538528826416, + "endTime": 340538528828375 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "7af54255-04d1-4289-bbbe-9defa74bd2fd", + "logId": "0beafab3-0fcc-4a77-84b4-b260554e17c0" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0beafab3-0fcc-4a77-84b4-b260554e17c0", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538528826416, + "endTime": 340538528828375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "004b7845-7177-48ba-9dd6-7573fba2c8ec", + "parent": "8a2d7207-55cd-4302-b9c0-b2c52ef3fdba" + } + }, + { + "head": { + "id": "4d6e19c1-a3b4-409c-a2e5-dc2064f33a4a", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538528844291, + "endTime": 340538533896708 + }, + "additional": { + "children": [ + "7b526d52-4980-469c-a0d2-b5b1e2e6d0f6", + "c7f10496-adf5-4702-a132-02af5f138f0e" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "7af54255-04d1-4289-bbbe-9defa74bd2fd", + "logId": "677dd6f8-42fa-47a0-a6ac-c5953b60a08e" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "7b526d52-4980-469c-a0d2-b5b1e2e6d0f6", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538528844458, + "endTime": 340538531447625 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "4d6e19c1-a3b4-409c-a2e5-dc2064f33a4a", + "logId": "1f17c62c-c290-4ba6-b4fe-637b3bfb045d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c7f10496-adf5-4702-a132-02af5f138f0e", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538531451958, + "endTime": 340538533893291 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "4d6e19c1-a3b4-409c-a2e5-dc2064f33a4a", + "logId": "2ce968bb-1fbb-4959-a795-9bbccd5f545b" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "01267890-88bf-4984-ae6b-599d2d261a5b", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538528845333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c0fffc7b-9245-41c3-b222-7eab58b5b0cd", + "name": "hvigorfile, require result: { default: { system: [Function: hapTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538531425666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1f17c62c-c290-4ba6-b4fe-637b3bfb045d", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538528844458, + "endTime": 340538531447625 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "7b526d52-4980-469c-a0d2-b5b1e2e6d0f6", + "parent": "677dd6f8-42fa-47a0-a6ac-c5953b60a08e" + } + }, + { + "head": { + "id": "dd910794-cabe-4b2d-94de-ee1196290803", + "name": "hvigorfile, binding system plugins [Function: hapTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538531455458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8cabca47-1791-4565-829d-bd1f9f04c04d", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538531491625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "24152053-7255-475a-81f4-3e01361a6f49", + "name": "Hap plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538531505208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9efd2f58-1c20-44d7-aafe-a87e762593e2", + "name": "failed to load cangjie to dynamically generate schemas: Error: Cannot find module '@ohos/cangjie-build-support/index'\nRequire stack:\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/hooks/cangjie-register.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/strategy/stage-init-strategy.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/abstract-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/factory/plugin-factory.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/index.js\n- /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/boot/index.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/cli/main/cli.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/bin/hvigor.js", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538531593208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0879afda-0d07-4a24-bbc5-4b5f642069e2", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533059458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8fb9575e-d026-46bf-b131-ed60d00dc19e", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533077666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c28bd871-ac5e-43df-93d0-adb6ff90cb44", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533126708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b1484b65-177f-43ea-b8f7-828fdd9659fc", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533133666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2432c041-8f6e-4150-b2f6-516d269a060b", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=release", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533146458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cfd695e5-a7ba-4f7b-ad34-62794d4dd04b", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533155541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5354fc9e-aa84-43f1-b7c2-f31ee75184b7", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533195000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "169624e7-197d-45de-ae54-dfc534b17803", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533201541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0657a1a6-cbc1-45a5-9f97-241bc111c351", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533214791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "060db93e-d64d-4041-b635-8ea11d9ec92e", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533223541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1575cb1e-7df2-490d-ab17-553b6511715e", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533255208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dde878e7-01ea-4748-8db5-3eb7127ba7ef", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533260916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "81ed317d-632f-4650-88fb-29b23a2644a1", + "name": "Obtain build option for module 'entry' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533270083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4b5606a0-8f23-4c05-9689-ac19d89a1216", + "name": "Module entry task initialization takes 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533818916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5dcb8aac-34dd-4c6c-9edf-715edef644c3", + "name": "Hap plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533844750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dff447e7-a990-4d94-8db4-e29ddabfc0a5", + "name": "Hap plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533853041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3e4df71f-87a7-4b8e-91d9-7a16f94db03f", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533858625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4b819d6e-1fd1-4f3b-888a-9b8f3ef3acc1", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533874958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dbda579c-0b9b-4b2c-944e-defbf4336d81", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533882833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7a781a14-53e5-4d92-a14f-3a31a1613a64", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533888541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2ce968bb-1fbb-4959-a795-9bbccd5f545b", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538531451958, + "endTime": 340538533893291 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "c7f10496-adf5-4702-a132-02af5f138f0e", + "parent": "677dd6f8-42fa-47a0-a6ac-c5953b60a08e" + } + }, + { + "head": { + "id": "677dd6f8-42fa-47a0-a6ac-c5953b60a08e", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538528844291, + "endTime": 340538533896708 + }, + "additional": { + "logType": "info", + "children": [ + "1f17c62c-c290-4ba6-b4fe-637b3bfb045d", + "2ce968bb-1fbb-4959-a795-9bbccd5f545b" + ], + "durationId": "4d6e19c1-a3b4-409c-a2e5-dc2064f33a4a", + "parent": "8a2d7207-55cd-4302-b9c0-b2c52ef3fdba" + } + }, + { + "head": { + "id": "6e5db0d6-652a-4965-a316-78c862c20b22", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533917500, + "endTime": 340538533920041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "7af54255-04d1-4289-bbbe-9defa74bd2fd", + "logId": "41b0b6dd-4a43-4434-8878-07fd575b41b2" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "41b0b6dd-4a43-4434-8878-07fd575b41b2", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533917500, + "endTime": 340538533920041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "6e5db0d6-652a-4965-a316-78c862c20b22", + "parent": "8a2d7207-55cd-4302-b9c0-b2c52ef3fdba" + } + }, + { + "head": { + "id": "8a2d7207-55cd-4302-b9c0-b2c52ef3fdba", + "name": "eval submodule", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538528787416, + "endTime": 340538533923375 + }, + "additional": { + "logType": "info", + "children": [ + "0beafab3-0fcc-4a77-84b4-b260554e17c0", + "677dd6f8-42fa-47a0-a6ac-c5953b60a08e", + "41b0b6dd-4a43-4434-8878-07fd575b41b2" + ], + "durationId": "7af54255-04d1-4289-bbbe-9defa74bd2fd", + "parent": "2215da69-6206-4aae-bb08-85d0a9b0631d" + } + }, + { + "head": { + "id": "2215da69-6206-4aae-bb08-85d0a9b0631d", + "name": "eval modules", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538502337250, + "endTime": 340538533927500 + }, + "additional": { + "logType": "info", + "children": [ + "fe65c594-ed24-4309-8ba7-3ebd9527ad14", + "8a2d7207-55cd-4302-b9c0-b2c52ef3fdba" + ], + "durationId": "82d7ee11-571c-4765-b354-509bd0ca2310", + "parent": "14ec7428-8464-450c-87b7-4457b03d5a87" + } + }, + { + "head": { + "id": "5a72d5e4-65b0-428e-ba4e-458c25b61a2d", + "name": "add config dependencies", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533943125, + "endTime": 340538533943541 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e1cc32e6-351e-4b97-8a88-47775a31aa7c", + "parent": "14ec7428-8464-450c-87b7-4457b03d5a87" + } + }, + { + "head": { + "id": "ef285517-22ff-414b-85cd-8c2068e2a891", + "name": "\"nodesEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533949083, + "endTime": 340538534061750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e9405e5f-5164-43ba-abd7-1d51cfb17603", + "logId": "eaea56bc-e93e-4420-b2df-7f76edd733db" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ea9de4f0-3044-4358-94a0-158eb4f6d981", + "name": "project has submodules:xuqm-sdk,entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533974375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fbc9850f-ca5e-4166-8c0b-80b87561b639", + "name": "module:xuqm-sdk no need to execute packageHap", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538534028291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "eaea56bc-e93e-4420-b2df-7f76edd733db", + "name": "\"nodesEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538533949083, + "endTime": 340538534061750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ef285517-22ff-414b-85cd-8c2068e2a891", + "parent": "14ec7428-8464-450c-87b7-4457b03d5a87" + } + }, + { + "head": { + "id": "cf609241-2b83-4f20-98c4-d5792dda044c", + "name": "start to load updatedOhPackageInfo to the disk", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538534477250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "de1f2f68-35a6-4e3a-b4b9-8b34797a8e43", + "name": "load to the disk finished", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538536108791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d49129bc-bd2f-4a9b-947b-899f652ad4cd", + "name": "ohpm install", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538534064333, + "endTime": 340538536333375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "72a6a782-5ba5-485f-b2da-7eb1ce2c2286", + "parent": "14ec7428-8464-450c-87b7-4457b03d5a87" + } + }, + { + "head": { + "id": "02692e82-63f1-4617-bda7-569bec2dd18b", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538536379750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ce61a4a0-3fef-4d5e-9cd8-e258314a6b0e", + "name": "Module XuqmGroup-HarmonySDK Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538537046875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a80d4c29-39f4-4282-aab2-aee663b19ff2", + "name": "Module XuqmGroup-HarmonySDK's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538537062833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "949cee6d-6932-41a5-bb50-923414ca7f63", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538537623708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "865bf145-e498-4a14-bc70-199142c239cf", + "name": "Module xuqm-sdk Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538538131916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "434f0004-5431-491d-a5a3-8cf8d3220442", + "name": "Module xuqm-sdk's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538538146625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b2d3f944-470d-4b43-8e6b-dedc97c09f3a", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538539419041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fdb65147-a398-4fb8-890c-1d7b3761bb55", + "name": "Module entry Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538540329250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5a7dff17-a48e-47bc-9872-fbc846681b42", + "name": "Module entry's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538540342125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "83ae5fcb-3337-44bf-8f54-8675e0f505a7", + "name": "eval hook", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538536338500, + "endTime": 340538540702000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "93912d45-0493-43b4-a439-746d6dd7f6d5", + "parent": "14ec7428-8464-450c-87b7-4457b03d5a87" + } + }, + { + "head": { + "id": "84c26f52-745d-4839-92ca-245415f5b4e3", + "name": "Configuration phase cost:558 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538540731666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "94815fa3-f9b9-4290-b0d6-e9ee5e299b90", + "name": "fin configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538540709541, + "endTime": 340538540742333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "bd4011aa-2fa6-4e7e-8fe7-9978fa3e91a6", + "parent": "14ec7428-8464-450c-87b7-4457b03d5a87" + } + }, + { + "head": { + "id": "14ec7428-8464-450c-87b7-4457b03d5a87", + "name": "configure hvigor plugin", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537983081958, + "endTime": 340538540746583 + }, + "additional": { + "logType": "info", + "children": [ + "d2a1cff3-4ab5-4577-aab0-ef502ede84e2", + "e7faa37c-58f3-45b7-a709-83892dc41da3", + "6066cfdd-5d88-4ebb-af41-1b1743a43b86", + "2215da69-6206-4aae-bb08-85d0a9b0631d", + "5a72d5e4-65b0-428e-ba4e-458c25b61a2d", + "d49129bc-bd2f-4a9b-947b-899f652ad4cd", + "83ae5fcb-3337-44bf-8f54-8675e0f505a7", + "94815fa3-f9b9-4290-b0d6-e9ee5e299b90", + "eaea56bc-e93e-4420-b2df-7f76edd733db" + ], + "durationId": "e9405e5f-5164-43ba-abd7-1d51cfb17603", + "parent": "2a10df88-db8b-4fb6-94c1-2d0fd15ea1c0" + } + }, + { + "head": { + "id": "9f342fd3-eeb1-45b1-ba95-8fc0a56b55e1", + "name": "\"taskGraphResolved\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538541753166, + "endTime": 340538541772125 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "f7269071-8b98-4b37-802b-728bc313fb00", + "logId": "7f0b5f71-642f-4a62-ac60-c2c670e7359c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "7f0b5f71-642f-4a62-ac60-c2c670e7359c", + "name": "\"taskGraphResolved\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538541753166, + "endTime": 340538541772125 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9f342fd3-eeb1-45b1-ba95-8fc0a56b55e1", + "parent": "2a10df88-db8b-4fb6-94c1-2d0fd15ea1c0" + } + }, + { + "head": { + "id": "77062509-9b1a-4289-a9a7-4f46a5a9eab6", + "name": "build task graph", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538540759875, + "endTime": 340538541775791 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "b985f6c4-b659-4edb-bf86-86b114b5dda5", + "parent": "2a10df88-db8b-4fb6-94c1-2d0fd15ea1c0" + } + }, + { + "head": { + "id": "faf15f63-9bea-437f-87fe-10c1f23fd247", + "name": "init task execution option", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538541777666, + "endTime": 340538541782333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "4face60f-b622-45b5-9e25-8c4cdfc6feea", + "parent": "2a10df88-db8b-4fb6-94c1-2d0fd15ea1c0" + } + }, + { + "head": { + "id": "2a10df88-db8b-4fb6-94c1-2d0fd15ea1c0", + "name": "init", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537980159958, + "endTime": 340538541785166 + }, + "additional": { + "logType": "info", + "children": [ + "46b2d3f9-0b2f-454c-b473-0655e02ac9cc", + "14ec7428-8464-450c-87b7-4457b03d5a87", + "77062509-9b1a-4289-a9a7-4f46a5a9eab6", + "faf15f63-9bea-437f-87fe-10c1f23fd247", + "0b0da934-3f39-47af-9265-b12a9eab16ce", + "5cda8735-939e-49a4-89a1-82728100ed81", + "7f0b5f71-642f-4a62-ac60-c2c670e7359c" + ], + "durationId": "f7269071-8b98-4b37-802b-728bc313fb00" + } + }, + { + "head": { + "id": "682c6eaa-ba67-4685-9c34-b49610d79817", + "name": "Configuration task cost before running: 563 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538542055875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "82dc2bba-532e-480e-b691-709261524b04", + "name": "entry:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538544196541, + "endTime": 340538598083291 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Verification", + "taskRunReasons": [], + "detailId": "73f4ca1c-656d-4bcf-92a8-460cc49549cf", + "logId": "b68036fd-44af-4e26-a7fb-181cd449c5c5" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "73f4ca1c-656d-4bcf-92a8-460cc49549cf", + "name": "create entry:default@PreBuild task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538542327333 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "82dc2bba-532e-480e-b691-709261524b04" + } + }, + { + "head": { + "id": "f7f283d4-fe5e-4bd7-96cd-a901b40a5adb", + "name": "Executing task :entry:default@PreBuild", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538544208458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e94c4949-24f5-4b11-bf35-49a8ed31793a", + "name": "The project has not explicitly set the 'targetSdkVersion' version at build-profile.json5. It is recommended to configure it. Reference: https://developer.huawei.com/consumer/cn/doc/harmonyos-guides/ide-hvigor-build-profile-app#section45865492619", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538544395458 + }, + "additional": { + "logType": "warn", + "children": [] + } + }, + { + "head": { + "id": "45c29dec-f313-4845-b1b6-c9eb07bd6838", + "name": "Task 'entry:default@PreBuild' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538545413750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "db68b2fa-1e65-4d40-8296-5e6ce0b96b8e", + "name": "current product is not Atomic service.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538597530166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "af2bb172-6b0c-47e8-86a7-fca07df8176e", + "name": "Use tool [darwin: JAVA_HOME, CLASSPATH]\n [ { JAVA_HOME: undefined }, { CLASSPATH: undefined } ]", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538597646458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1d536940-8771-4f08-a8cb-2156257f13d9", + "name": "Use tool [darwin: NODE_HOME]\n [ { NODE_HOME: undefined } ]", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538597675291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "00c14314-5a99-4bd4-80f4-1ecf133ad10f", + "name": "entry : default@PreBuild cost memory 3.4113693237304688", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538597984541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1b69f9a5-e1dd-43a8-b028-b98ebab4a49d", + "name": "runTaskFromQueue task cost before running: 619 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538598040166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b68036fd-44af-4e26-a7fb-181cd449c5c5", + "name": "Finished :entry:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538544196541, + "endTime": 340538598083291, + "totalTime": 53812375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "82dc2bba-532e-480e-b691-709261524b04" + } + }, + { + "head": { + "id": "5e4a604b-2f46-448e-b4b0-1c07b292a03b", + "name": "entry:default@CreateModuleInfo", + "description": "Create the ModuleInfo.ts file for the hap/hsp package.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538598849208, + "endTime": 340538599081250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "f36a2fdb-a1b9-4156-bf61-4b96274e9afa", + "logId": "a39ac3f6-f551-4ad4-ac78-ef310a1162a8" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f36a2fdb-a1b9-4156-bf61-4b96274e9afa", + "name": "create entry:default@CreateModuleInfo task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538598701916 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "5e4a604b-2f46-448e-b4b0-1c07b292a03b" + } + }, + { + "head": { + "id": "dc11d812-07a9-4a36-bf1c-6ecf7c0b8dcf", + "name": "Executing task :entry:default@CreateModuleInfo", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538598851750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4a21c0f2-c65f-4e23-8737-c39354a0860e", + "name": "Task 'entry:default@CreateModuleInfo' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538598963333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5d9ff643-593b-48d8-b985-ebce2808bc33", + "name": "entry : default@CreateModuleInfo cost memory 0.035736083984375", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538599055666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "98b3f7a8-586e-4f26-aeab-448ad500212a", + "name": "runTaskFromQueue task cost before running: 620 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538599073250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a39ac3f6-f551-4ad4-ac78-ef310a1162a8", + "name": "Finished :entry:default@CreateModuleInfo", + "description": "Create the ModuleInfo.ts file for the hap/hsp package.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538598849208, + "endTime": 340538599081250, + "totalTime": 217917 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "5e4a604b-2f46-448e-b4b0-1c07b292a03b" + } + }, + { + "head": { + "id": "1bcaa2a0-f807-4dd4-93fd-19bb216b1b29", + "name": "entry:default@GenerateMetadata", + "description": "Generate metadata in the stage model.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538599578750, + "endTime": 340538600439375 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "bb62d4db-fc8b-4286-943e-3ae75de3c366", + "logId": "a35c0785-2c2c-4149-99f0-994d342ca4e6" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "bb62d4db-fc8b-4286-943e-3ae75de3c366", + "name": "create entry:default@GenerateMetadata task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538599221166 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "1bcaa2a0-f807-4dd4-93fd-19bb216b1b29" + } + }, + { + "head": { + "id": "3c0c31bc-2c28-46c7-962c-56cf62b3fade", + "name": "Executing task :entry:default@GenerateMetadata", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538599581791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f9f396e5-45c7-44d1-b9c2-425e4991498f", + "name": "Task 'entry:default@GenerateMetadata' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538599808166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a4f896cf-6d07-46d7-81ef-1764296edb44", + "name": "entry : default@GenerateMetadata cost memory 0.052947998046875", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538600417041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "871bfe90-4504-4f88-97cc-5b4dc8630036", + "name": "runTaskFromQueue task cost before running: 621 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538600432041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a35c0785-2c2c-4149-99f0-994d342ca4e6", + "name": "Finished :entry:default@GenerateMetadata", + "description": "Generate metadata in the stage model.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538599578750, + "endTime": 340538600439375, + "totalTime": 848584 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "1bcaa2a0-f807-4dd4-93fd-19bb216b1b29" + } + }, + { + "head": { + "id": "b85e6a77-cf45-40df-91c8-60188645b236", + "name": "entry:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538600782333, + "endTime": 340538600843208 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "b834ee64-cf08-4f00-8cb9-998a1792c244", + "logId": "d59de998-94de-4750-8b26-ee966e85591b" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b834ee64-cf08-4f00-8cb9-998a1792c244", + "name": "create entry:default@ConfigureCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538600553625 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "b85e6a77-cf45-40df-91c8-60188645b236" + } + }, + { + "head": { + "id": "e13a2ac7-a399-4f6e-89dd-927826173220", + "name": "Executing task :entry:default@ConfigureCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538600785625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "93228110-8023-46cd-bff8-a2561d346c61", + "name": "entry : default@ConfigureCmake cost memory 0.01202392578125", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538600820750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3afb55cf-a5d0-4172-b098-9c544107d89f", + "name": "runTaskFromQueue task cost before running: 622 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538600836000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d59de998-94de-4750-8b26-ee966e85591b", + "name": "Finished :entry:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538600782333, + "endTime": 340538600843208, + "totalTime": 47292 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "b85e6a77-cf45-40df-91c8-60188645b236" + } + }, + { + "head": { + "id": "3f717fdc-ac2e-46c6-848f-f66fdf120b50", + "name": "entry:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538601143875, + "endTime": 340538602120583 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Config", + "taskRunReasons": [], + "detailId": "ada9a5b7-6be4-4012-9e55-208362d33096", + "logId": "335bacef-21d0-4967-91d4-f241c7bc5b6d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ada9a5b7-6be4-4012-9e55-208362d33096", + "name": "create entry:default@MergeProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538600972750 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "3f717fdc-ac2e-46c6-848f-f66fdf120b50" + } + }, + { + "head": { + "id": "232bd508-f6ed-43ce-a8dc-876c59368d20", + "name": "Executing task :entry:default@MergeProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538601146625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f29d3039-d941-4bfb-86bd-a715f1b8ecbc", + "name": "Task 'entry:default@MergeProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538601295625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "71d353ee-701f-411c-82da-c5cad0fadf6a", + "name": "Change app api release type with 'Release'", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538601554875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "868f44e1-4325-4284-a4b3-532419aed53d", + "name": "Change app compile API version with '6.0.2.130'", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538601627166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2ff211fd-b79a-4551-b626-dbf984fa3df0", + "name": "Change app target API version with '60002022'", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538601634791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "930bf096-fb0c-4597-81eb-655d61e2c190", + "name": "Change app minimum API version with '50000012'", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538601641541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9487cef1-e01a-47aa-9ae3-4833db8fb680", + "name": "Use cli appEnvironment", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538601676958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a4fbe282-e2d7-4f62-833c-627e62a14084", + "name": "entry : default@MergeProfile cost memory 0.1221466064453125", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538602092250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e5377cfc-3e72-4fc6-b66a-6e967a4dd8cd", + "name": "runTaskFromQueue task cost before running: 623 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538602108500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "335bacef-21d0-4967-91d4-f241c7bc5b6d", + "name": "Finished :entry:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538601143875, + "endTime": 340538602120583, + "totalTime": 959667 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3f717fdc-ac2e-46c6-848f-f66fdf120b50" + } + }, + { + "head": { + "id": "7c759181-d34f-4f44-b043-9ce5934bd85a", + "name": "entry:default@CreateBuildProfile", + "description": "Create the BuildProfile.ets file for the HAP/HSP package.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538602832041, + "endTime": 340538603443833 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "68890b00-042e-4acd-9e4b-b52bac309c68", + "logId": "b86d2ca1-d408-41ac-9bc4-2f7f2a452b36" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "68890b00-042e-4acd-9e4b-b52bac309c68", + "name": "create entry:default@CreateBuildProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538602246375 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "7c759181-d34f-4f44-b043-9ce5934bd85a" + } + }, + { + "head": { + "id": "f0cb364f-72ad-4421-839f-8e01a88f508e", + "name": "Executing task :entry:default@CreateBuildProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538602837666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6033f0d3-9843-4d62-ba19-597d63d0e2b5", + "name": "Task 'entry:default@CreateBuildProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538602960666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "05e52c3d-c89e-4bb6-81e9-bb5351658dd5", + "name": "entry : default@CreateBuildProfile cost memory 0.05666351318359375", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538603413333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3bc68e3d-681e-4632-b09b-ac93d33065b2", + "name": "runTaskFromQueue task cost before running: 624 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538603434583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b86d2ca1-d408-41ac-9bc4-2f7f2a452b36", + "name": "Finished :entry:default@CreateBuildProfile", + "description": "Create the BuildProfile.ets file for the HAP/HSP package.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538602832041, + "endTime": 340538603443833, + "totalTime": 595583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "7c759181-d34f-4f44-b043-9ce5934bd85a" + } + }, + { + "head": { + "id": "08376b85-359a-4389-9661-bbe9f5b5050a", + "name": "entry:default@PreCheckSyscap", + "description": "Pre-check SysCap.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538603883500, + "endTime": 340538603983875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Verification", + "taskRunReasons": [], + "detailId": "27984541-2b2f-4f8d-be8e-29b9bd4b4559", + "logId": "0c4d7c20-429e-4438-a10a-610d3f7ef956" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "27984541-2b2f-4f8d-be8e-29b9bd4b4559", + "name": "create entry:default@PreCheckSyscap task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538603566958 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "08376b85-359a-4389-9661-bbe9f5b5050a" + } + }, + { + "head": { + "id": "79ab036c-93ea-4acf-ad49-ccfd2819c3a9", + "name": "Executing task :entry:default@PreCheckSyscap", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538603886333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "14929386-8d38-44a4-bb4f-c6220c393a7b", + "name": "entry : default@PreCheckSyscap cost memory 0.0134429931640625", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538603958916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3a641d0a-c2c5-47eb-99c1-c34197c391e1", + "name": "runTaskFromQueue task cost before running: 625 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538603975833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0c4d7c20-429e-4438-a10a-610d3f7ef956", + "name": "Finished :entry:default@PreCheckSyscap", + "description": "Pre-check SysCap.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538603883500, + "endTime": 340538603983875, + "totalTime": 86791 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "08376b85-359a-4389-9661-bbe9f5b5050a" + } + }, + { + "head": { + "id": "92930f65-a39c-48ec-9ec9-ddd0d208f3bc", + "name": "entry:default@GeneratePkgContextInfo", + "description": "Generate pkgContextInfo.json to ets-loader.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538604567791, + "endTime": 340538608130833 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "60f2b10b-1438-471a-98a0-31f7b3ac8608", + "logId": "3a77aef8-2044-4f3f-9f55-d052286db7b7" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "60f2b10b-1438-471a-98a0-31f7b3ac8608", + "name": "create entry:default@GeneratePkgContextInfo task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538604210375 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "92930f65-a39c-48ec-9ec9-ddd0d208f3bc" + } + }, + { + "head": { + "id": "52150305-a5f8-4298-989d-5a979a7d0f09", + "name": "Executing task :entry:default@GeneratePkgContextInfo", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538604570500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "02025ce8-0684-4857-8251-6b7ea12e1e55", + "name": "Task 'entry:default@GeneratePkgContextInfo' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538607808166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d2b073f9-6cc7-4139-a093-bc8a8c2e2570", + "name": "entry : default@GeneratePkgContextInfo cost memory 0.41632843017578125", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538608094375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "12ae3cae-befa-4ecf-a7ee-55dd971da321", + "name": "runTaskFromQueue task cost before running: 629 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538608119083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3a77aef8-2044-4f3f-9f55-d052286db7b7", + "name": "Finished :entry:default@GeneratePkgContextInfo", + "description": "Generate pkgContextInfo.json to ets-loader.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538604567791, + "endTime": 340538608130833, + "totalTime": 3543042 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "92930f65-a39c-48ec-9ec9-ddd0d208f3bc" + } + }, + { + "head": { + "id": "4832f060-8acf-4bed-8cb9-7e07899912dd", + "name": "entry:default@ProcessIntegratedHsp", + "description": "Use package tool process integrated hsp.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538609371375, + "endTime": 340538609552166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Sign", + "taskRunReasons": [], + "detailId": "7910ceb1-4ad7-478d-aca0-8b112d37d616", + "logId": "af8b6d1c-45e4-42a6-aed7-bfe97ca5e431" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "7910ceb1-4ad7-478d-aca0-8b112d37d616", + "name": "create entry:default@ProcessIntegratedHsp task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538608396166 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "4832f060-8acf-4bed-8cb9-7e07899912dd" + } + }, + { + "head": { + "id": "2bcdfe55-cf5b-430e-bdeb-dd7acd6274d3", + "name": "Executing task :entry:default@ProcessIntegratedHsp", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538609377375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "84c6c9c7-68c4-4357-a5fc-393bb2f44494", + "name": "entry : default@ProcessIntegratedHsp cost memory 0.0285186767578125", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538609522541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "57c49f45-8fb2-4cff-9df9-9e8657220b71", + "name": "runTaskFromQueue task cost before running: 630 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538609543791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "af8b6d1c-45e4-42a6-aed7-bfe97ca5e431", + "name": "Finished :entry:default@ProcessIntegratedHsp", + "description": "Use package tool process integrated hsp.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538609371375, + "endTime": 340538609552166, + "totalTime": 163875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "4832f060-8acf-4bed-8cb9-7e07899912dd" + } + }, + { + "head": { + "id": "53f3dd3c-0cca-4ddd-9de1-4cd9685dd000", + "name": "entry:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538610068916, + "endTime": 340538610142041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "d7a8b5b5-3c79-48b5-bc5e-67124efc779c", + "logId": "658a12c5-a0d5-4be5-8682-8e419c4c78cd" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "d7a8b5b5-3c79-48b5-bc5e-67124efc779c", + "name": "create entry:default@BuildNativeWithCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538609804541 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "53f3dd3c-0cca-4ddd-9de1-4cd9685dd000" + } + }, + { + "head": { + "id": "f637dd12-7339-45d6-92b5-92ac787b21ae", + "name": "Executing task :entry:default@BuildNativeWithCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538610072208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ed5f9269-f1ab-4049-a9a8-22f49280e42b", + "name": "entry : default@BuildNativeWithCmake cost memory 0.01361846923828125", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538610117333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b9be6821-c001-4c87-a62b-46411bbe689e", + "name": "runTaskFromQueue task cost before running: 631 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538610133625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "658a12c5-a0d5-4be5-8682-8e419c4c78cd", + "name": "Finished :entry:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538610068916, + "endTime": 340538610142041, + "totalTime": 58583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "53f3dd3c-0cca-4ddd-9de1-4cd9685dd000" + } + }, + { + "head": { + "id": "413a1b0b-9b20-4ebc-a62f-5da504fe2719", + "name": "entry:default@MakePackInfo", + "description": "Generate module pack.info in the stage model.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538610465000, + "endTime": 340538611311500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "2ce433a8-2808-43fc-bcce-3d929e539858", + "logId": "8ddbde6f-637c-430a-825a-f3f8ca005bf8" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2ce433a8-2808-43fc-bcce-3d929e539858", + "name": "create entry:default@MakePackInfo task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538610246166 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "413a1b0b-9b20-4ebc-a62f-5da504fe2719" + } + }, + { + "head": { + "id": "700b3415-62a1-4bcb-90ca-c5362b56eeac", + "name": "Executing task :entry:default@MakePackInfo", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538610468000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dcf9050c-2f9d-4a2c-b39c-bc935a4f1c3b", + "name": "Module Pack Info: {\n summary: {\n app: { bundleName: 'c***k', bundleType: 'app', version: [Object] },\n modules: [ [Object] ]\n },\n packages: [\n {\n deviceType: [Array],\n moduleType: 'entry',\n deliveryWithInstall: true,\n name: 'entry-default'\n }\n ]\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538611097625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6f05660a-1308-48e3-a038-c0f559a5ea67", + "name": "entry : default@MakePackInfo cost memory 0.08661651611328125", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538611282958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a54a323a-9be4-4fdc-8e1b-dbf7b8c37db2", + "name": "runTaskFromQueue task cost before running: 632 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538611303000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8ddbde6f-637c-430a-825a-f3f8ca005bf8", + "name": "Finished :entry:default@MakePackInfo", + "description": "Generate module pack.info in the stage model.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538610465000, + "endTime": 340538611311500, + "totalTime": 829709 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "413a1b0b-9b20-4ebc-a62f-5da504fe2719" + } + }, + { + "head": { + "id": "2b8b3e58-706a-4f41-8e05-b9acb90c8d22", + "name": "entry:default@SyscapTransform", + "description": "Transform SysCap in the stage model.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538611708791, + "endTime": 340538612032041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "dc7b3060-f60b-453a-995d-b886a4dc8138", + "logId": "89567099-388d-4c8d-8005-de36bb5f5c71" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "dc7b3060-f60b-453a-995d-b886a4dc8138", + "name": "create entry:default@SyscapTransform task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538611440500 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "2b8b3e58-706a-4f41-8e05-b9acb90c8d22" + } + }, + { + "head": { + "id": "bdee7a8e-2fb9-48cf-8dea-a6be7b6b6eb3", + "name": "Executing task :entry:default@SyscapTransform", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538611711750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1794bf65-1567-4af7-b03f-71e5885c9c9c", + "name": "File: '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/syscap.json' from 'sysCapJsonPath' is not exists, just ignore.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538611733041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b9cb7801-7cc0-4c7b-9461-e46a70f347ce", + "name": "Task 'entry:default@SyscapTransform' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538611832500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cb686c9c-5fc8-41ed-95cd-5b2f22716842", + "name": "entry : default@SyscapTransform cost memory 0.0421295166015625", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538612010583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5fdbec74-cb0a-4bce-881d-6566781a659c", + "name": "runTaskFromQueue task cost before running: 633 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538612024208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "89567099-388d-4c8d-8005-de36bb5f5c71", + "name": "Finished :entry:default@SyscapTransform", + "description": "Transform SysCap in the stage model.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538611708791, + "endTime": 340538612032041, + "totalTime": 310666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "2b8b3e58-706a-4f41-8e05-b9acb90c8d22" + } + }, + { + "head": { + "id": "2719de3e-ac63-42a0-a6cc-82aac8121d47", + "name": "entry:default@ProcessProfile", + "description": "Process app config manifest files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538612633083, + "endTime": 340538680159791 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Config", + "taskRunReasons": [], + "detailId": "eebf1aa2-c215-442e-b237-59cbf0d6d936", + "logId": "e53cc955-a322-485e-adc2-5015831bef84" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "eebf1aa2-c215-442e-b237-59cbf0d6d936", + "name": "create entry:default@ProcessProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538612193875 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "2719de3e-ac63-42a0-a6cc-82aac8121d47" + } + }, + { + "head": { + "id": "9eadb288-849d-49a2-8c97-62dadd585590", + "name": "Executing task :entry:default@ProcessProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538612636000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "443f4e0b-98eb-43f6-b0a2-89b25ba4a524", + "name": "Task 'entry:default@ProcessProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538612994375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "da1d38ce-242c-4b6f-b1d4-34191dfc1390", + "name": "12.0.2.0", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538679160458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "94328397-022c-4a6d-b28b-d4fbf2200051", + "name": "No need to add fake ui ability because of not in preview process.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538679863958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2932ddeb-a6e1-482c-b0d6-c630d6a87238", + "name": "entry : default@ProcessProfile cost memory 0.5342254638671875", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538680103041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b2e9079c-c01f-46c6-ba76-75edc465fbe2", + "name": "runTaskFromQueue task cost before running: 701 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538680145125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e53cc955-a322-485e-adc2-5015831bef84", + "name": "Finished :entry:default@ProcessProfile", + "description": "Process app config manifest files in the stage model.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538612633083, + "endTime": 340538680159791, + "totalTime": 67490333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "2719de3e-ac63-42a0-a6cc-82aac8121d47" + } + }, + { + "head": { + "id": "fc139978-c48c-4f42-9be7-277ffa526ee6", + "name": "entry:default@ProcessRouterMap", + "description": "Process router map configuration.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538680937375, + "endTime": 340538681916750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "ced3da4b-0e15-409f-9613-e27dda5db777", + "logId": "733e1acf-e65c-4a81-b028-4d71b63857d6" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ced3da4b-0e15-409f-9613-e27dda5db777", + "name": "create entry:default@ProcessRouterMap task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538680396916 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "fc139978-c48c-4f42-9be7-277ffa526ee6" + } + }, + { + "head": { + "id": "b3e9eae1-b46b-4cd8-b9db-0388932ce2d8", + "name": "Executing task :entry:default@ProcessRouterMap", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538680942875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e34a6b23-f303-4af8-920a-d9d7fab2477f", + "name": "entry : default@ProcessRouterMap cost memory 0.0808258056640625", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538681808708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "93e2a48c-b8c4-4f04-b50e-81248512f8b5", + "name": "runTaskFromQueue task cost before running: 703 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538681831958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "733e1acf-e65c-4a81-b028-4d71b63857d6", + "name": "Finished :entry:default@ProcessRouterMap", + "description": "Process router map configuration.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538680937375, + "endTime": 340538681916750, + "totalTime": 887208 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "fc139978-c48c-4f42-9be7-277ffa526ee6" + } + }, + { + "head": { + "id": "013f3da0-590d-41ad-a876-ab435c510c75", + "name": "entry:default@ProcessShareConfig", + "description": "Process share config configuration.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538682497416, + "endTime": 340538683010041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "9f04c25f-740f-4388-8b4f-343d121154f8", + "logId": "fe85f55c-3b0b-46ba-b6d2-a8db50da3bb7" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9f04c25f-740f-4388-8b4f-343d121154f8", + "name": "create entry:default@ProcessShareConfig task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538682175333 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "013f3da0-590d-41ad-a876-ab435c510c75" + } + }, + { + "head": { + "id": "14362f1e-8e4b-47da-8f52-53713014caf2", + "name": "Executing task :entry:default@ProcessShareConfig", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538682501041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6b2a9297-902f-4981-a0fd-fa2bc6d04d03", + "name": "entry : default@ProcessShareConfig cost memory 0.06884002685546875", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538682978791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "44abc56e-3e76-4846-8939-090324c33e7c", + "name": "runTaskFromQueue task cost before running: 704 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538683000166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fe85f55c-3b0b-46ba-b6d2-a8db50da3bb7", + "name": "Finished :entry:default@ProcessShareConfig", + "description": "Process share config configuration.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538682497416, + "endTime": 340538683010041, + "totalTime": 493375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "013f3da0-590d-41ad-a876-ab435c510c75" + } + }, + { + "head": { + "id": "56022879-4bff-4379-ba82-8ac31ffd89c6", + "name": "entry:default@ProcessStartupConfig", + "description": "Process startup configuration.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538683418625, + "endTime": 340538683830875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "8fec1bdb-6877-443a-9107-cb704260a087", + "logId": "bbe3f9d3-31bc-48db-9ff3-63be9b7964e2" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8fec1bdb-6877-443a-9107-cb704260a087", + "name": "create entry:default@ProcessStartupConfig task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538683149333 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "56022879-4bff-4379-ba82-8ac31ffd89c6" + } + }, + { + "head": { + "id": "4f2f6399-9ff7-4c35-9440-dd5bc6f59568", + "name": "Executing task :entry:default@ProcessStartupConfig", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538683421958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c3232853-4572-4638-82de-2ce94eb2c0ad", + "name": "Task 'entry:default@ProcessStartupConfig' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538683485166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d0997de1-0935-4909-91c1-078676db5f44", + "name": "entry : default@ProcessStartupConfig cost memory 0.0758514404296875", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538683796250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2a431a62-b51e-4a1c-8f4a-5a064e0feb37", + "name": "runTaskFromQueue task cost before running: 705 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538683821791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bbe3f9d3-31bc-48db-9ff3-63be9b7964e2", + "name": "Finished :entry:default@ProcessStartupConfig", + "description": "Process startup configuration.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538683418625, + "endTime": 340538683830875, + "totalTime": 392417 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "56022879-4bff-4379-ba82-8ac31ffd89c6" + } + }, + { + "head": { + "id": "4b18d738-5261-421f-83f9-3efb9b2bf8bb", + "name": "entry:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538684165208, + "endTime": 340538684406416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "8388566b-0137-4d51-97c1-af6d43e03bc0", + "logId": "14ff4339-9ce0-4814-96f2-26fba9a3407b" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8388566b-0137-4d51-97c1-af6d43e03bc0", + "name": "create entry:default@BuildNativeWithNinja task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538683938625 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "4b18d738-5261-421f-83f9-3efb9b2bf8bb" + } + }, + { + "head": { + "id": "d93edba4-a0da-420e-a2cd-41dc3d4718af", + "name": "Executing task :entry:default@BuildNativeWithNinja", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538684169291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7d4eb490-7395-48cc-9d9e-186f539dc667", + "name": "entry : default@BuildNativeWithNinja cost memory 0.02365875244140625", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538684381958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "61423877-04b0-4684-918a-16d07e947da5", + "name": "runTaskFromQueue task cost before running: 705 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538684398291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "14ff4339-9ce0-4814-96f2-26fba9a3407b", + "name": "Finished :entry:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538684165208, + "endTime": 340538684406416, + "totalTime": 227750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "4b18d738-5261-421f-83f9-3efb9b2bf8bb" + } + }, + { + "head": { + "id": "ae8356f9-f5fa-4911-ad0d-ceb6f71c023a", + "name": "entry:default@ProcessResource", + "description": "Process resources in the stage model.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538685089250, + "endTime": 340538686158041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [], + "detailId": "38dc2551-adb8-4c19-9c75-38112f5504d0", + "logId": "e9e57b31-724f-458e-8631-98c576b55bc9" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "38dc2551-adb8-4c19-9c75-38112f5504d0", + "name": "create entry:default@ProcessResource task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538684542333 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "ae8356f9-f5fa-4911-ad0d-ceb6f71c023a" + } + }, + { + "head": { + "id": "e6b4e130-9b38-4096-8dc9-c9e0f2e1f7e5", + "name": "restool module names: entry,xuqm-sdk; moduleName=entry, taskName=default@ProcessResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538684771416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "792126d3-644e-4e77-96d3-18fef79fafec", + "name": "Executing task :entry:default@ProcessResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538685520458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "40444ae7-2af4-4707-a217-2feb3c1bf213", + "name": "Task 'entry:default@ProcessResource' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538685562083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e75c4b05-693f-4832-b4c2-d6acae95fe3c", + "name": "entry : default@ProcessResource cost memory 0.09777069091796875", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538686047625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "38cf5078-4b82-4ae4-8cb4-4579e8c3bdf0", + "name": "runTaskFromQueue task cost before running: 707 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538686147666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e9e57b31-724f-458e-8631-98c576b55bc9", + "name": "Finished :entry:default@ProcessResource", + "description": "Process resources in the stage model.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538685089250, + "endTime": 340538686158041, + "totalTime": 970292 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ae8356f9-f5fa-4911-ad0d-ceb6f71c023a" + } + }, + { + "head": { + "id": "6abbbb64-d8c3-492e-b095-62618c33869a", + "name": "entry:default@GenerateLoaderJson", + "description": "Generate loader.json in the stage model.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538687268416, + "endTime": 340538689150416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "c2bf0cec-ec4e-492a-bc5b-2b8363db95ad", + "logId": "2e2037cd-c902-4a31-8b7a-ae50e66ae9f3" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c2bf0cec-ec4e-492a-bc5b-2b8363db95ad", + "name": "create entry:default@GenerateLoaderJson task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538686541958 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "6abbbb64-d8c3-492e-b095-62618c33869a" + } + }, + { + "head": { + "id": "da7134b7-f54c-4146-9071-691302454dc0", + "name": "Executing task :entry:default@GenerateLoaderJson", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538687274416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "59b67b11-07ce-40fc-9432-d405be16a7e0", + "name": "Task 'entry:default@GenerateLoaderJson' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538687586791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "644bb95a-4032-484d-8039-6862d5f6a4c1", + "name": "entry : default@GenerateLoaderJson cost memory 0.2789154052734375", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538689109541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "24252f4e-30e6-4a95-991c-978b600d7e25", + "name": "runTaskFromQueue task cost before running: 710 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538689137416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2e2037cd-c902-4a31-8b7a-ae50e66ae9f3", + "name": "Finished :entry:default@GenerateLoaderJson", + "description": "Generate loader.json in the stage model.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538687268416, + "endTime": 340538689150416, + "totalTime": 1857333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "6abbbb64-d8c3-492e-b095-62618c33869a" + } + }, + { + "head": { + "id": "eb6a18f1-42ee-4e53-ad53-2bfed4eefb49", + "name": "entry:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538689823125, + "endTime": 340538691987791 + }, + "additional": { + "children": [ + "77c18eff-08a2-4b99-9622-c627aeeb5080" + ], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [], + "detailId": "360f919b-916b-4306-b3cb-8e117688e800", + "logId": "2e651d5f-c2cf-4032-9637-39573413bc53" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "360f919b-916b-4306-b3cb-8e117688e800", + "name": "create entry:default@ProcessLibs task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538689544791 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "eb6a18f1-42ee-4e53-ad53-2bfed4eefb49" + } + }, + { + "head": { + "id": "3fc592fd-9e79-4974-a729-e6950808acc4", + "name": "Executing task :entry:default@ProcessLibs", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538689826291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "77c18eff-08a2-4b99-9622-c627aeeb5080", + "name": "process libs", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538691706333, + "endTime": 340538691931541 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "eb6a18f1-42ee-4e53-ad53-2bfed4eefb49", + "logId": "d7d8569f-862f-41dd-b5cc-6b8ec43d2dd5" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ad3de7c0-485b-4970-b08c-f5fd747c128d", + "name": "Worker dispatch failed, running processLibs on main thread.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538691708166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d7d8569f-862f-41dd-b5cc-6b8ec43d2dd5", + "name": "process libs", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538691706333, + "endTime": 340538691931541 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "77c18eff-08a2-4b99-9622-c627aeeb5080", + "parent": "2e651d5f-c2cf-4032-9637-39573413bc53" + } + }, + { + "head": { + "id": "c0c1f521-708b-46e9-967d-24325828847a", + "name": "entry : default@ProcessLibs cost memory 0.7175369262695312", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538691955041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0ffed568-8975-40c8-8cdb-409bf2aa82a8", + "name": "runTaskFromQueue task cost before running: 713 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538691978625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2e651d5f-c2cf-4032-9637-39573413bc53", + "name": "Finished :entry:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538689823125, + "endTime": 340538691987791, + "totalTime": 2145625 + }, + "additional": { + "logType": "info", + "children": [ + "d7d8569f-862f-41dd-b5cc-6b8ec43d2dd5" + ], + "durationId": "eb6a18f1-42ee-4e53-ad53-2bfed4eefb49" + } + }, + { + "head": { + "id": "384295ec-c2e9-4bdd-8457-889899bc75f6", + "name": "entry:default@CompileResource", + "description": "Compile project resources in the stage model.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538692486916, + "endTime": 340538870184541 + }, + "additional": { + "children": [ + "63e8c1a9-4418-4309-8de9-442ffc64da6b", + "7c4c9388-87e6-48eb-8136-38adcfd3d539" + ], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [], + "detailId": "b3a1377f-706d-471b-b222-ddbc226de1ca", + "logId": "dca7ce98-4f30-4853-83c3-66e3a70639f0" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b3a1377f-706d-471b-b222-ddbc226de1ca", + "name": "create entry:default@CompileResource task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538692140791 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "384295ec-c2e9-4bdd-8457-889899bc75f6" + } + }, + { + "head": { + "id": "113dd2ae-fe03-4e5c-b455-d379ad88686a", + "name": "restool module names: entry,xuqm-sdk; moduleName=entry, taskName=default@CompileResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538692268583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d7b4d53a-9d13-4e39-94a2-28e9de137a1c", + "name": "Executing task :entry:default@CompileResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538692512208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "63e8c1a9-4418-4309-8de9-442ffc64da6b", + "name": "create intermediate resource category", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538693030625, + "endTime": 340538693944333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "384295ec-c2e9-4bdd-8457-889899bc75f6", + "logId": "36908844-3ddd-4ec6-8b8b-04a7f8776d85" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "36908844-3ddd-4ec6-8b8b-04a7f8776d85", + "name": "create intermediate resource category", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538693030625, + "endTime": 340538693944333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "63e8c1a9-4418-4309-8de9-442ffc64da6b", + "parent": "dca7ce98-4f30-4853-83c3-66e3a70639f0" + } + }, + { + "head": { + "id": "715c2bae-9fd0-407d-acb6-8185b5441e2a", + "name": "Use tool [/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/restool]\n [\n '/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/restool',\n '-l',\n '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resConfig.json'\n]", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538694168125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7c4c9388-87e6-48eb-8136-38adcfd3d539", + "name": "execute compile resource command using restool", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538694190375, + "endTime": 340538869575375 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "384295ec-c2e9-4bdd-8457-889899bc75f6", + "logId": "177f1218-7437-491e-89b8-bf7fb2b2c221" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "badc53f0-2844-4bc1-9471-06197f69e542", + "name": "current process memoryUsage: {\n rss: 277086208,\n heapTotal: 166739968,\n heapUsed: 141516656,\n external: 3023143,\n arrayBuffers: 215375\n} os memoryUsage :47.901275634765625", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538694581125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f531dceb-0e90-4527-bbfc-abc5e764a228", + "name": "Info: Pack: normal pack mode\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538719156541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fb30787b-23b2-47c8-8cf6-3b85636792a5", + "name": "Info: hardware concurrency count is : 14\nInfo: thread count is : 14\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538861545208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5ddbb07f-47ea-4b77-8a34-eb29901b9ac1", + "name": "Info: thread pool is started\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538861660958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3244cbf6-79bc-4b00-95a8-a02d06f6b673", + "name": "Info: GenericCompiler::CompileFiles\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538862559416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "85ceed7c-f1cb-45a9-a0d5-9e2dafc8e404", + "name": "Info: GenericCompiler::CompileFiles\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538862903250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "807b1934-fd88-4328-8130-7dc6a37b68f4", + "name": "04-28 19:02:45.765 14629 4093344 E C01400/ImageTranscoderUtils: DecodeToRGBA IN\n04-28 19:02:45.765 14629 4093344 E C01400/ImageTranscoderUtils: ImageFilter IN /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base/media/app_icon.png\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538864377833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "df09e49b-cef2-4b02-bdac-22ac784e5614", + "name": "04-28 19:02:45.768 14629 4093344 E C01400/ImageTranscoder: TranscodeSLR DecodeToRGBA failed\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538866777041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e7b86033-98d0-4deb-896e-df6d62a6ccf5", + "name": "Warning: ScaleImage failed, error message: IMAGE_ERROR, file path = /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base/media/app_icon.png\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538866852416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d9abe252-2f63-4dcb-9a1f-f33cd2e94c77", + "name": "Info: restool resources compile success.\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538867453583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b42d4659-fe1f-4b02-86c7-2b7f0e73c1da", + "name": "Info: thread pool is stopped\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538867597083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "177f1218-7437-491e-89b8-bf7fb2b2c221", + "name": "execute compile resource command using restool", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538694190375, + "endTime": 340538869575375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "7c4c9388-87e6-48eb-8136-38adcfd3d539", + "parent": "dca7ce98-4f30-4853-83c3-66e3a70639f0" + } + }, + { + "head": { + "id": "791bd1b5-a20f-49ed-a9aa-2b558d87eba6", + "name": "entry : default@CompileResource cost memory 1.9831695556640625", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538870084500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4ed75a3b-385b-4fdd-875b-0dd11d5eb0c4", + "name": "runTaskFromQueue task cost before running: 891 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538870167750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dca7ce98-4f30-4853-83c3-66e3a70639f0", + "name": "Finished :entry:default@CompileResource", + "description": "Compile project resources in the stage model.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538692486916, + "endTime": 340538870184541, + "totalTime": 177635916 + }, + "additional": { + "logType": "info", + "children": [ + "36908844-3ddd-4ec6-8b8b-04a7f8776d85", + "177f1218-7437-491e-89b8-bf7fb2b2c221" + ], + "durationId": "384295ec-c2e9-4bdd-8457-889899bc75f6" + } + }, + { + "head": { + "id": "e129d15f-46a9-437a-a42c-118db631cfaa", + "name": "entry:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538870972625, + "endTime": 340538871659333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "4312e3be-2ff4-4569-ad6a-9a075903857a", + "logId": "5d3568b4-da99-4d16-b0ba-baea47435ef6" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "4312e3be-2ff4-4569-ad6a-9a075903857a", + "name": "create entry:default@DoNativeStrip task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538870523166 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "e129d15f-46a9-437a-a42c-118db631cfaa" + } + }, + { + "head": { + "id": "3c891f35-e233-484f-8ebd-d7104caef324", + "name": "Executing task :entry:default@DoNativeStrip", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538870976666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a930d453-2741-48ac-a3c9-edc0683769fe", + "name": "Task 'entry:default@DoNativeStrip' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538871040083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b1b46a18-ed1c-4c93-8445-cb774dcd837a", + "name": "entry : default@DoNativeStrip cost memory 0.05356597900390625", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538871624083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6ac940c3-007b-4474-8e85-80ee169cf602", + "name": "runTaskFromQueue task cost before running: 892 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538871647791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5d3568b4-da99-4d16-b0ba-baea47435ef6", + "name": "Finished :entry:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538870972625, + "endTime": 340538871659333, + "totalTime": 665333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e129d15f-46a9-437a-a42c-118db631cfaa" + } + }, + { + "head": { + "id": "887d08d9-f928-4bff-b346-327ad3726072", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538872222666, + "endTime": 340541346795041 + }, + "additional": { + "children": [ + "3c72e97c-07c7-424c-9f79-652218a3e4ee", + "4f118930-3cc9-4231-be56-d9e8f7f283c5" + ], + "state": "failed", + "targetName": "default", + "moduleName": "entry", + "category": "ArkTS", + "taskRunReasons": [], + "detailId": "967b377b-0b9e-438f-bbbb-c369dfb7da01", + "logId": "ac8085c2-8574-4f2f-b5d4-201a7988a779" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "967b377b-0b9e-438f-bbbb-c369dfb7da01", + "name": "create entry:default@CompileArkTS task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538871847375 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "887d08d9-f928-4bff-b346-327ad3726072" + } + }, + { + "head": { + "id": "55150235-b287-48e6-9ac8-0e22c8153cf3", + "name": "Executing task :entry:default@CompileArkTS", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538872225916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9a4f5f3d-abdc-4cb3-9e61-a904af1ae508", + "name": "obfuscationOptions: undefined", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538872490250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fc828182-ee9c-4519-90ed-65460cd620c6", + "name": "Task 'entry:default@CompileArkTS' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538873499333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9696a6a3-8e84-4f44-9f3f-154169654af9", + "name": "build config:", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538877668375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8ec4353a-efe2-4e06-ad8d-e3a627d601dc", + "name": "Compile arkts with external api path: /Users/xuqinmin/sdk/command-line-tools/sdk/default/hms/ets", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538878039125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4ba87045-665d-4c76-9e65-07ba04f92ec4", + "name": "Since there is no instance or instance is terminated, create a new worker pool.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538878294916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "899d9cb1-abf6-45a3-96fd-ed599a56bc82", + "name": "Worker pool is initialized with config: {\n minPoolNum: 2,\n maxPoolNum: undefined,\n maxCoreSize: undefined,\n cacheCapacity: undefined,\n cacheTtl: undefined\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538878338000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "451cff23-f478-487d-8a27-8a3b1c10dd0a", + "name": "Create resident worker with id: 0.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538878872041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "16cd986f-f69f-4845-8421-dd3442bb0834", + "name": "Create resident worker with id: 1.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538879657916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c4cd5fa2-5e70-4a59-b15f-808c2182663c", + "name": "default@CompileArkTS work[0] is submitted.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538880459291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3c72e97c-07c7-424c-9f79-652218a3e4ee", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Worker4", + "startTime": 340538881109875, + "endTime": 340541346643791 + }, + "additional": { + "children": [], + "state": "failed", + "targetName": "default", + "moduleName": "entry", + "category": "", + "taskRunReasons": [], + "parent": "887d08d9-f928-4bff-b346-327ad3726072", + "logId": "7bc42917-b1ea-467d-937c-d34dc943789e" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9c4f4877-1480-402a-814c-8431d2b0d49d", + "name": "default@CompileArkTS work[0] is pushed to ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538880608708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f74528d4-6edf-4ab9-9036-81deae7ae504", + "name": "A work dispatched to worker[13] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538880681291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ada7b3f3-b06a-49a0-a630-26ad180f430f", + "name": "A work dispatched to worker[12] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538880690083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2f2ef481-9614-48f4-ab3e-0a406923f5c6", + "name": "A work dispatched to worker[11] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538880696541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a1ce91a2-d4e8-42b9-912e-85585aa2b8a7", + "name": "A work dispatched to worker[10] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538880702333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c6cd820f-6bde-4577-a5c9-6a4b55ad86c8", + "name": "A work dispatched to worker[9] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538880708000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3752c19c-9825-46e4-ad8f-a1b25ad404ef", + "name": "A work dispatched to worker[8] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538880714416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1f942760-52d8-42c8-8b3f-671b91e9fc62", + "name": "A work dispatched to worker[7] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538880720958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2b0584e2-07c0-4c52-b4b3-e4fc7ee636f2", + "name": "A work dispatched to worker[6] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538880726458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2e59ed57-9a6f-406e-b85b-7fbe59ea4ea9", + "name": "A work dispatched to worker[5] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538880732333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bc03bcd6-09a1-4f87-83f4-3092c3479777", + "name": "Create resident worker with id: 4.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538880775208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8cd0927f-ae03-4345-9995-afab778a2575", + "name": "default@CompileArkTS work[0] has been dispatched to worker[4].", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538881121416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "29c11635-f49c-45b8-8216-3ea88d27c8ed", + "name": "default@CompileArkTS work[0] is dispatched.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538881151791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b76d4c3b-f124-4c7f-9a95-ebea40edd48e", + "name": "CopyResources startTime: 340538881184541", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538881185833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dd37b7a4-186a-4f88-b9fa-90a1a03d7df1", + "name": "default@CompileArkTS work[1] is submitted.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538881200083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4f118930-3cc9-4231-be56-d9e8f7f283c5", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Worker12", + "startTime": 340539131010833, + "endTime": 340539135789125 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "", + "taskRunReasons": [], + "parent": "887d08d9-f928-4bff-b346-327ad3726072", + "logId": "58f6f8ca-7d22-4867-95a8-f2b266a9a10b" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a14cd877-0d55-40ec-8656-468e1337fc76", + "name": "default@CompileArkTS work[1] is pushed to ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538881233833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5687efc7-c3a2-4f01-af56-8071a4fc01fe", + "name": "A work dispatched to worker[13] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538881242250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6d8da35c-33e7-42f3-8c95-ddb768d87360", + "name": "Create resident worker with id: 12.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538881251916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e82a3069-9b52-4923-9bb9-b2265cfb6de9", + "name": "default@CompileArkTS work[1] has been dispatched to worker[12].", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538881500375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1c70391f-02f7-41ac-bc66-99fa420311c3", + "name": "default@CompileArkTS work[1] is dispatched.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538881510375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "69062d8e-71c0-4238-8d6b-096133e79450", + "name": "entry : default@CompileArkTS cost memory 2.3844528198242188", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538881555125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "863c9d3c-fecc-468a-a6d9-fa2e6e9e9cc4", + "name": "entry:default@BuildJS", + "description": "Compile ArkTS or JS components using Node.js for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538882119666, + "endTime": 340538882765875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "ArkTS", + "taskRunReasons": [], + "detailId": "e29dc2c3-7de3-4e62-a301-66dd42e0e52b", + "logId": "932fddeb-6664-4c69-9bd0-aa759b3c566b" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e29dc2c3-7de3-4e62-a301-66dd42e0e52b", + "name": "create entry:default@BuildJS task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538881671125 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "863c9d3c-fecc-468a-a6d9-fa2e6e9e9cc4" + } + }, + { + "head": { + "id": "d7a20bb9-830e-4fd6-85f6-cbff06a543b9", + "name": "Executing task :entry:default@BuildJS", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538882123583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e81c7f1a-8013-458e-8e7c-f9a5f43118e9", + "name": "Task 'entry:default@BuildJS' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538882205416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "83ed336f-08d6-4be3-ab41-37faae8cfdba", + "name": "entry : default@BuildJS cost memory 0.129791259765625", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538882732500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9d9fc7ee-94be-4eb7-8caa-4a4f9a5ad74d", + "name": "runTaskFromQueue task cost before running: 903 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538882754166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "932fddeb-6664-4c69-9bd0-aa759b3c566b", + "name": "Finished :entry:default@BuildJS", + "description": "Compile ArkTS or JS components using Node.js for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538882119666, + "endTime": 340538882765875, + "totalTime": 626375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "863c9d3c-fecc-468a-a6d9-fa2e6e9e9cc4" + } + }, + { + "head": { + "id": "098a0f6a-a2f7-4304-95b8-4aeaa5d89735", + "name": "entry:default@CacheNativeLibs", + "description": "cache native strip .so fileInfo", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538883524166, + "endTime": 340539153142041 + }, + "additional": { + "children": [ + "e55bc0ca-f422-4e6d-a47d-e113c15748d4" + ], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "c01f70c2-c898-4131-b0ef-7c3f02fb7fca", + "logId": "bd415354-e594-460e-b03d-50a408bdfd2f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c01f70c2-c898-4131-b0ef-7c3f02fb7fca", + "name": "create entry:default@CacheNativeLibs task", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538882915458 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "098a0f6a-a2f7-4304-95b8-4aeaa5d89735" + } + }, + { + "head": { + "id": "4810c7a5-5eda-465b-b023-3d8549b757d1", + "name": "Executing task :entry:default@CacheNativeLibs", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538883531291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c24ca4d0-caaa-4554-92bb-04b2bbb73dd8", + "name": "Task 'entry:default@CacheNativeLibs' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538883633625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "89c6d6a6-6a1f-4851-977b-7184939d898f", + "name": "default@CacheNativeLibs work[2] is submitted.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538883790500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e55bc0ca-f422-4e6d-a47d-e113c15748d4", + "name": "entry:default@CacheNativeLibs", + "description": "cache native strip .so fileInfo", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Worker11", + "startTime": 340539150371583, + "endTime": 340539152475875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "", + "taskRunReasons": [], + "parent": "098a0f6a-a2f7-4304-95b8-4aeaa5d89735", + "logId": "99d9d30a-e6f7-4744-bec6-2eb309522a7d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "30722c67-7864-4d0c-a20a-76543a862894", + "name": "default@CacheNativeLibs work[2] is pushed to ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538883830916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2a9ed85b-d810-42dc-82f1-146ceb14946f", + "name": "A work dispatched to worker[13] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538883844125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ff4e1280-b773-474b-a53c-15945a0101be", + "name": "A work dispatched to worker[12] failed because of worker busy.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538883851041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "132ee50f-6233-4586-9eca-b0f4aa8ad404", + "name": "Create resident worker with id: 11.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538883864333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "05ba2bc4-2e38-44f2-92b9-3f5d08054aa0", + "name": "default@CacheNativeLibs work[2] has been dispatched to worker[11].", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538884149125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0dda0125-892c-4e08-a8f3-2bc586929a91", + "name": "default@CacheNativeLibs work[2] is dispatched.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538884164166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "89013ef7-476a-4752-bbb3-f7662d08f2cb", + "name": "entry : default@CacheNativeLibs cost memory 0.134979248046875", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538884186250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6fd77712-1ad4-4fb3-940a-bb64509d8e02", + "name": "worker[12] has one work done.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340539136063125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "96f0267a-6199-4df6-8c00-31337da47f15", + "name": "CopyResources is end, endTime: 340539136181291", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340539136183833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "da796134-c28d-4825-9f67-4c92c0a44ee6", + "name": "default@CompileArkTS work[1] done.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340539136348875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "58f6f8ca-7d22-4867-95a8-f2b266a9a10b", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Worker12", + "startTime": 340539131010833, + "endTime": 340539135789125 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "4f118930-3cc9-4231-be56-d9e8f7f283c5", + "parent": "ac8085c2-8574-4f2f-b5d4-201a7988a779" + } + }, + { + "head": { + "id": "d377a4fd-f275-44f0-9668-6232715d273b", + "name": "A work dispatched to worker[12] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340539136483083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "00acf3bb-c892-447b-8483-63850543d392", + "name": "worker[11] has one work done.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340539152718125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7239d8da-6b36-4fd2-adaa-063c281ffebc", + "name": "default@CacheNativeLibs work[2] done.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340539152953125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "99d9d30a-e6f7-4744-bec6-2eb309522a7d", + "name": "entry:default@CacheNativeLibs", + "description": "cache native strip .so fileInfo", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Worker11", + "startTime": 340539150371583, + "endTime": 340539152475875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e55bc0ca-f422-4e6d-a47d-e113c15748d4", + "parent": "bd415354-e594-460e-b03d-50a408bdfd2f" + } + }, + { + "head": { + "id": "58d72c30-f260-4ee8-9e37-04ce3dfc4190", + "name": "A work dispatched to worker[11] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340539153059291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bd415354-e594-460e-b03d-50a408bdfd2f", + "name": "Finished :entry:default@CacheNativeLibs", + "description": "cache native strip .so fileInfo", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538883524166, + "endTime": 340539153142041, + "totalTime": 2778042 + }, + "additional": { + "logType": "info", + "children": [ + "99d9d30a-e6f7-4744-bec6-2eb309522a7d" + ], + "durationId": "098a0f6a-a2f7-4304-95b8-4aeaa5d89735" + } + }, + { + "head": { + "id": "3eee6d89-1e5c-4f76-852d-aaca5dc21ece", + "name": "worker[4] has one work error.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541346560791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "805fa194-554b-46d4-8aed-554d5fa5b64c", + "name": "default@CompileArkTS work[0] failed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541346720458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7bc42917-b1ea-467d-937c-d34dc943789e", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Worker4", + "startTime": 340538881109875, + "endTime": 340541346643791 + }, + "additional": { + "logType": "error", + "children": [], + "durationId": "3c72e97c-07c7-424c-9f79-652218a3e4ee", + "parent": "ac8085c2-8574-4f2f-b5d4-201a7988a779" + } + }, + { + "head": { + "id": "ac8085c2-8574-4f2f-b5d4-201a7988a779", + "name": "Failed :entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340538872222666, + "endTime": 340541346795041 + }, + "additional": { + "logType": "error", + "children": [ + "7bc42917-b1ea-467d-937c-d34dc943789e", + "58f6f8ca-7d22-4867-95a8-f2b266a9a10b" + ], + "durationId": "887d08d9-f928-4bff-b346-327ad3726072" + } + }, + { + "head": { + "id": "9647afbd-e735-44fd-befc-00063156f182", + "name": "\n\u001b[33m1 WARN: \u001b[33m\u001b[33mArkTS:WARN: For details about ArkTS syntax errors, see FAQs\u001b[39m\u001b[39m\n\u001b[33m2 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:17:22\n 'showToast' has been deprecated.\n\u001b[39m\u001b[39m\n\u001b[33m3 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:27:22\n 'showToast' has been deprecated.\n\u001b[39m\u001b[39m\n\u001b[33m4 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:87:28\n 'showToast' has been deprecated.\n\u001b[39m\u001b[39m", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541346827250 + }, + "additional": { + "logType": "warn", + "children": [] + } + }, + { + "head": { + "id": "d7106944-72d9-44e9-8352-fdeb4bbd46ff", + "name": "hvigor build process will be closed with an error.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541346942208 + }, + "additional": { + "logType": "debug", + "children": [], + "durationId": "887d08d9-f928-4bff-b346-327ad3726072" + } + }, + { + "head": { + "id": "01d70d7d-b9a5-455a-9a94-f57adcd14968", + "name": "ERROR: stacktrace = Error: ArkTS Compiler Error\n\u001b[31m1 ERROR: \u001b[31m10605008 ArkTS Compiler Error\nError Message: Use explicit types instead of \"any\", \"unknown\" (arkts-no-any-unknown) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:13:11\n\u001b[39m\n\u001b[39m\n\u001b[31m2 ERROR: \u001b[31m10605008 ArkTS Compiler Error\nError Message: Use explicit types instead of \"any\", \"unknown\" (arkts-no-any-unknown) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:19:24\n\u001b[39m\n\u001b[39m\n\u001b[31m3 ERROR: \u001b[31m10605008 ArkTS Compiler Error\nError Message: Use explicit types instead of \"any\", \"unknown\" (arkts-no-any-unknown) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:19:30\n\u001b[39m\n\u001b[39m\n\u001b[31m4 ERROR: \u001b[31m10605008 ArkTS Compiler Error\nError Message: Use explicit types instead of \"any\", \"unknown\" (arkts-no-any-unknown) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:23:19\n\u001b[39m\n\u001b[39m\n\u001b[31m5 ERROR: \u001b[31m10605008 ArkTS Compiler Error\nError Message: Use explicit types instead of \"any\", \"unknown\" (arkts-no-any-unknown) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:26:17\n\u001b[39m\n\u001b[39m\n\u001b[31m6 ERROR: \u001b[31m10505001 ArkTS Compiler Error\nError Message: Cannot find module '@xuqm/harmony-sdk' or its corresponding type declarations. At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/entryability/EntryAbility.ets:4:25\n\u001b[39m\n\u001b[39m\n\u001b[31m7 ERROR: \u001b[31m10505001 ArkTS Compiler Error\nError Message: Cannot find module '@xuqm/harmony-sdk' or its corresponding type declarations. At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:1:36\n\u001b[39m\n\u001b[39m\n\u001b[31mCOMPILE RESULT:FAIL {ERROR:8 WARN:4}\u001b[39m\n at runArkPack (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/arkts-pack.js:1:5860)\nArkTSCompilerError: ArkTS Compiler Error\n at throwArkTsCompilerError (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/data/compose-error.js:1:423)\n at throwErrorIfHasErrorInfo (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/plugins/common-plugin.js:1:4478)\n at Object.handler (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/plugins/common-plugin.js:1:2547)\n at /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-base/node_modules/rollup/dist/shared/rollup.js:27765:40", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541347314625 + }, + "additional": { + "logType": "debug", + "children": [], + "durationId": "887d08d9-f928-4bff-b346-327ad3726072" + } + }, + { + "head": { + "id": "123d14b3-18af-46fd-a872-a2565eb4223b", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541347761500, + "endTime": 340541347980458 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "bbb55738-25c7-43eb-95b1-d2f101648498", + "logId": "b917c91f-2153-457c-b71c-2c00f633457a" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b917c91f-2153-457c-b71c-2c00f633457a", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541347761500, + "endTime": 340541347980458 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "123d14b3-18af-46fd-a872-a2565eb4223b" + } + }, + { + "head": { + "id": "52c9ca59-034d-48b9-bd2a-d4c1f2545007", + "name": "assembleHap", + "description": "", + "type": "mark" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340537979796958, + "endTime": 340541348212625 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 2, + "second": 48 + }, + "completeCommand": "{\"prop\":[],\"_\":[\"assembleHap\"]};assembleHap", + "hvigorVersion": "6.22.4", + "markType": "history", + "nodeVersion": "v18.20.1", + "category": "build", + "state": "failed" + } + }, + { + "head": { + "id": "f59cfc70-b6b2-4e2d-a1be-155e5c5c7448", + "name": "BUILD FAILED in 3 s 369 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541348230750 + }, + "additional": { + "logType": "error", + "children": [] + } + }, + { + "head": { + "id": "8b4bc17b-c4ef-49e6-bb49-00e952651b29", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541348461083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "96011f94-1e2a-4295-9929-dba508201646", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541348678291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5dd42122-7e2d-48fe-a34a-0f6246de64ed", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541348711416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cdb86a9e-116b-4ed5-aa4a-aa33b9649453", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541348805666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ced62caa-74da-48b2-ac17-62f842afbbec", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base/profile/main_pages.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541348833041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bae58b37-6922-452b-aad3-53d007033636", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigor/hvigor-config.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541348854208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "210d67be-9dad-451d-8cc1-c0a78586126f", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541348873833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f52d0e3c-ff63-4f31-adb7-946161f2ada0", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541348894333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b9555c75-59b8-4d66-916e-5d1c4a3b8a06", + "name": "Incremental task entry:default@PreBuild post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541348969125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "73f98c15-a67f-461a-a055-bd98abcd30ea", + "name": "Update task entry:default@CreateModuleInfo output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/ModuleInfo.ts cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541348990500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dd271b16-a00f-4e05-a5c2-c2b900e18721", + "name": "Incremental task entry:default@CreateModuleInfo post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349070958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1e2a893b-7dcb-476a-9bab-d09e90948b58", + "name": "Update task entry:default@GenerateMetadata input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349081041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "af6d29a8-3a27-4d09-8bb7-385183683fba", + "name": "Update task entry:default@GenerateMetadata output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/hap_metadata/default/output_metadata.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349100875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "46311c12-d055-4d7a-bbb2-72270a549dbb", + "name": "Incremental task entry:default@GenerateMetadata post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349134000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "413b3a91-0f8c-4f47-a8d8-4d41f8d58f2d", + "name": "Update task entry:default@MergeProfile input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349151166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2fc6b517-a011-41ef-9dc9-9addb633eb9c", + "name": "Update task entry:default@MergeProfile input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349239375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "54f37c70-7c47-41ed-98de-afd140d4f850", + "name": "Update task entry:default@MergeProfile input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349265208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "eaccb318-3241-4431-aaef-c03bd56c4740", + "name": "Update task entry:default@MergeProfile output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/merge_profile/default/module.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349295458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "edd7a99e-8132-474a-8b26-de5e2feaeb5e", + "name": "Incremental task entry:default@MergeProfile post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349371083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "370e466d-b0f9-4b8e-a223-0386f81db91b", + "name": "Update task entry:default@CreateBuildProfile input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349380375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cc0af6bf-1e8d-4f91-ab86-b23d349849e0", + "name": "Update task entry:default@CreateBuildProfile input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349401250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cf4e1042-d628-42c9-99a0-96885e817d10", + "name": "Update task entry:default@CreateBuildProfile output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/BuildProfile.ets cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349418000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "669888ea-fae4-484a-9164-e954d6f26479", + "name": "Incremental task entry:default@CreateBuildProfile post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349443166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "636899a5-0a34-44d4-b9a9-9b2f8617cfed", + "name": "Update task entry:default@GeneratePkgContextInfo output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349460208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9cee2403-ae66-4eae-9294-b073c3ca9b65", + "name": "Incremental task entry:default@GeneratePkgContextInfo post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349483000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1488f71a-9206-4572-96eb-2259ff5a674a", + "name": "Update task entry:default@ProcessIntegratedHsp output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build/cache/default/integrated_hsp/integratedHspCache.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349510791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "407eab3a-0781-40e4-88e3-13abac2cd9d6", + "name": "Incremental task entry:default@ProcessIntegratedHsp post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349540291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8529d235-8bfe-4aae-856d-763dda62729d", + "name": "Update task entry:default@MakePackInfo input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349585625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ffdd36b9-7f55-4536-af59-e081711a0a64", + "name": "Update task entry:default@MakePackInfo input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349608666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b16988be-f4d1-4901-8974-70f969c4fe87", + "name": "Update task entry:default@MakePackInfo input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349625166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0ebfc84f-16d3-432c-95c2-7f2afc15dd01", + "name": "Update task entry:default@MakePackInfo output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/pack.info cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349656625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "018b1345-0307-4981-97bd-c5e014338278", + "name": "Incremental task entry:default@MakePackInfo post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349681250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "14e93272-3030-48a7-92f4-f2f40610e6f1", + "name": "Update task entry:default@SyscapTransform input file:/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/syscap_tool cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349695708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "66cd875f-92bf-4492-bad9-08df0450b60f", + "name": "Update task entry:default@SyscapTransform input file:/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/ets/api/device-define cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541349726208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0d4f2c6f-0fe8-4f7d-abd5-84955af0060e", + "name": "Update task entry:default@SyscapTransform output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/syscap/default/rpcid.sc cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541360827250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8e52929f-7487-4602-a750-8fdf6517b55d", + "name": "Incremental task entry:default@SyscapTransform post-execution cost:12 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541360947083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4ea45af4-d658-4587-8b55-9ae90eea2312", + "name": "Update task entry:default@ProcessProfile input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/merge_profile/default/module.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541360975041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "81c3e132-2248-44a6-ae72-ac99add319d7", + "name": "Update task entry:default@ProcessProfile output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/process_profile/default/module.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361015208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0034c1ef-9775-487b-9154-13895564bddb", + "name": "Incremental task entry:default@ProcessProfile post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361120583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f77ae3d0-31c6-49f0-aef7-53048dff2c6d", + "name": "Update task entry:default@ProcessRouterMap input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361199958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dc8c0862-be97-457f-bf30-5a89c166d2ae", + "name": "Update task entry:default@ProcessRouterMap input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361226458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3868e694-ae09-4bfc-a278-aebcc1d24594", + "name": "Update task entry:default@ProcessRouterMap input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361243791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bf34edd0-3cb6-486f-97de-f890f87f2b71", + "name": "Update task entry:default@ProcessRouterMap input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361260875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "37014e29-e29d-4faa-b4ca-dd68da5ccba2", + "name": "Update task entry:default@ProcessRouterMap output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/router_map/default/temp-router-map.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361282541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e3f7d927-d509-4f02-bb21-529ff0aad6b4", + "name": "Update task entry:default@ProcessRouterMap output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/router_map/default/loader-router-map.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361318000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2f206040-6e58-4522-827b-87ad81ea0afe", + "name": "Incremental task entry:default@ProcessRouterMap post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361369166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bdc704d4-e189-4b27-a016-f9b006ec1566", + "name": "Update task entry:default@ProcessShareConfig input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361402875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b427d67e-688d-44c1-956b-50768bd0b94a", + "name": "Update task entry:default@ProcessShareConfig input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361416750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e3121f3f-59d2-48c3-bd78-a3c9d3ed4151", + "name": "Update task entry:default@ProcessShareConfig input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361454000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1db341d1-8c35-49f2-aff0-9fa3b1c3aae2", + "name": "Update task entry:default@ProcessShareConfig input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361467708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "66ae83b9-f34b-47af-a3d9-e7d10ef6bf48", + "name": "Update task entry:default@ProcessShareConfig output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/share_config/default/temp-share-config.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361485500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "35ffae05-bf59-4bba-98b7-9003fd1d89d9", + "name": "Incremental task entry:default@ProcessShareConfig post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361519458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0469b18f-5af4-4b0a-90e6-705a0da5f0ab", + "name": "Update task entry:default@ProcessStartupConfig input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361562291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6c608e2f-cddc-47ea-9f47-d0af8846c98e", + "name": "Update task entry:default@ProcessStartupConfig output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/startup/default/startup_config.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361580583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "88e3a4b4-0362-4fb1-adcd-0e0e50ac7ba6", + "name": "Incremental task entry:default@ProcessStartupConfig post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361619041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7146dc13-fcbc-4376-b101-ac3c27eb89dd", + "name": "Update task entry:default@ProcessResource output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resConfig.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361640625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c7034659-bb74-402f-96c8-9863c7a0bb56", + "name": "Update task entry:default@ProcessResource output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/opt-compression.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361660416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d39bd0c8-2c8b-4b16-b9ce-bfee2eef8dcc", + "name": "Incremental task entry:default@ProcessResource post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361685166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "68ef95b5-7cba-4e16-a428-b5145b477d4e", + "name": "Update task entry:default@GenerateLoaderJson input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361883791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "24eeb52e-1106-44e2-b5bb-19b299e77848", + "name": "Update task entry:default@GenerateLoaderJson input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/router_map/default/temp-router-map.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361901833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "04ae72b9-c34b-4134-b745-46bdbfa3776d", + "name": "Update task entry:default@GenerateLoaderJson output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/loader.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361921166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c2b9c4a6-08be-4469-877f-b34b29be97e5", + "name": "Incremental task entry:default@GenerateLoaderJson post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361945458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6d2b063c-8266-4b8e-88a6-c250fc4a3b82", + "name": "Update task entry:default@ProcessLibs input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361974458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "86c861c8-4570-4578-bc14-81fd782a71a3", + "name": "Update task entry:default@ProcessLibs input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541361989750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8d459b0f-0aa6-4450-a6a6-7d7c45f83a5b", + "name": "Update task entry:default@ProcessLibs output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/libs/default cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541362008375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ce4800fe-5a07-4f83-8067-f8800c151ee9", + "name": "Incremental task entry:default@ProcessLibs post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541362066041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "76733cc4-cd67-4faf-87d1-38f41c6abf4d", + "name": "Update task entry:default@CompileResource input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541362168833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bea8c387-66b8-49c5-a201-7f48d5a4a595", + "name": "Update task entry:default@CompileResource input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/process_profile/default/module.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541362398291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4d2f4399-d0d1-4ee4-95c6-335a2a9a76f5", + "name": "Update task entry:default@CompileResource input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resConfig.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541362415833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dab24271-ab83-4ab0-989a-bb4262609454", + "name": "Update task entry:default@CompileResource output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541362436708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5de44d04-04e8-4a55-a28d-8c4457e5e81e", + "name": "Update task entry:default@CompileResource output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/r/default/ResourceTable.h cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541362906291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "317217d2-9cdd-4b3d-9da5-fc9f64bb151e", + "name": "Update task entry:default@CompileResource output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/r/default cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541362927791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "66ff3e27-5472-42fd-9ce3-3dd66d49d9a7", + "name": "Incremental task entry:default@CompileResource post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541362979750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4cf9550a-34a7-4236-9cea-7cface072198", + "name": "Update task entry:default@DoNativeStrip input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/libs/default cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541362991166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f707f1f3-237d-4a67-a511-e699303bde8c", + "name": "Update task entry:default@DoNativeStrip output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/stripped_native_libs/default cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363022291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0695d105-7655-473b-b10a-f1e0bd8e99ae", + "name": "Incremental task entry:default@DoNativeStrip post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363058708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a62b0c21-3f46-4d71-8c15-3e12c69e5e14", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363224750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9eb98d57-e4f4-429d-9bbe-c705f3ca5df3", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ResourceTable.txt cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363278375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "48b6dfcc-c443-47e7-86cb-14780270b94c", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ark_module.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363294458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fa5850a7-d10b-44ef-aa05-18424746820d", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363309291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0d5b629f-e60e-405f-988f-d9f25534f7e9", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363367875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "04aa3755-8907-4a50-9876-6b36e12609ba", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363471208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4c9efca6-eb17-406d-b022-9a5c4b2371f2", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/BuildProfile.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363486875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "852cdd9d-fea0-4b78-8d6b-3faf22ed81a7", + "name": "Update task entry:default@CompileArkTS output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363514708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cb9a671c-3fae-431a-a33f-1e5b614431e9", + "name": "Incremental task entry:default@CompileArkTS post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363552875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8726ab50-7d90-41e3-8f1a-c0a009fcf92e", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363630208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7e5393e3-4b71-416f-9bd7-b5e6adf5aa27", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ResourceTable.txt cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363682166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4892a131-ae75-42a9-9424-04f71da9b8a8", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ark_module.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363696750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0c42c6fe-fca8-433f-b837-329c62b9d82a", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363711041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "da8e1f0e-5c5b-4f63-a49c-93de2828a943", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363750000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7c04c145-a5e3-41b9-854a-a5562933d2a9", + "name": "Update task entry:default@BuildJS output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/js cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363768958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c5e5bbee-f405-4da2-9c9f-70a33a8d8b72", + "name": "Incremental task entry:default@BuildJS post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363795583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0e9bc0f3-e4b9-4a3d-a654-752435ed9da8", + "name": "Update task entry:default@CacheNativeLibs input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/stripped_native_libs/default cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363804416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "67491141-ec68-4daf-8155-0262cff4042d", + "name": "Update task entry:default@CacheNativeLibs input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/libs/default cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363830708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cde2b937-5094-42a2-8395-080c8cdf2a59", + "name": "Update task entry:default@CacheNativeLibs output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/patch/default/base_native_libs.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363857791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ab23779b-e8ff-437f-90bf-d39e60c97c98", + "name": "Incremental task entry:default@CacheNativeLibs post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 14592, + "tid": "Main Thread", + "startTime": 340541363883208 + }, + "additional": { + "logType": "debug", + "children": [] + } + } + ], + "workLog": [] +} \ No newline at end of file diff --git a/.hvigor/report/report-202604281903299320.json b/.hvigor/report/report-202604281903299320.json new file mode 100644 index 0000000..2dd3bfc --- /dev/null +++ b/.hvigor/report/report-202604281903299320.json @@ -0,0 +1,4621 @@ +{ + "version": "2.0", + "ppid": 15768, + "events": [ + { + "head": { + "id": "e80c061a-b1bb-40fc-bb76-a0688e27a005", + "name": "env: nodejsVersion=v18.20.1", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340582905167500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b81ca6bd-db7d-47d2-97a4-a8425a0995d7", + "name": "env: hvigor-config.json5 content = {\n modelVersion: '5.0.0',\n dependencies: {},\n execution: {\n daemon: false,\n incremental: true,\n parallel: true,\n typeCheck: false\n },\n logging: { level: 'info' },\n debugging: { stacktrace: false },\n nodeOptions: { maxOldSpaceSize: 4096 }\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340582905829333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "809b769f-2c95-427a-926e-f4485d458a4f", + "name": "env: daemon=false", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340582906981583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3dcef6d6-7c97-40b8-8569-1e89294189ea", + "name": "no-daemon, use the parent process.execArgv --max-old-space-size=4096,--max-semi-space-size=16,--expose-gc", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340582907027500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8ed1c2dd-2c03-4327-8eb7-460fa0a26122", + "name": "init", + "description": "Initialize and build task graph.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583031056416, + "endTime": 340583777214000 + }, + "additional": { + "children": [ + "6b948836-68a3-4e90-98d4-982359347bc7", + "10fb9b06-f2d6-4a4e-9555-52f0c8f17d3a", + "ab8e07bb-71f7-4db2-82cd-1804be1fa0c8", + "2677a00b-c7a8-431b-8577-6a63a790f4ba", + "6d471c9f-5d7c-4664-83ca-a19e30ce34bb", + "a87afb58-656e-4d64-ae5c-4b0e4361b497", + "c57f2e5d-a312-4642-b5f2-e69ec785538e" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Init", + "taskRunReasons": [], + "logId": "ca0dfd5e-3ab1-436a-9f51-8949a62d6c89" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "6b948836-68a3-4e90-98d4-982359347bc7", + "name": "create hvigor project model", + "description": "Initialize hvigor project model.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583031059541, + "endTime": 340583035084333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "8ed1c2dd-2c03-4327-8eb7-460fa0a26122", + "logId": "c0649034-3972-4118-bf88-e5bd5e54dc93" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "10fb9b06-f2d6-4a4e-9555-52f0c8f17d3a", + "name": "configure hvigor plugin", + "description": "Configure hvigor plugin.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583035092875, + "endTime": 340583776312041 + }, + "additional": { + "children": [ + "dc30a3f5-c859-412d-b9ae-bc9f4a4ce5a2", + "f8d0e4bc-84c3-46e2-8be9-63ad209dfa96", + "a0289215-6c75-4e84-afac-f0500a825db1", + "16b5db8b-c59a-4347-a097-3c677e93c95e", + "781ebc8e-2e65-4eb5-9d8d-05d21ed6c66b", + "738f0a8f-a36b-498b-9536-be40740e7927", + "59b6f2c0-cbb9-4c36-ab53-b24050b01ad7", + "549a9ad6-fcbf-4050-ba52-d67e263100f6", + "cd908217-6f0a-4c2d-a1e5-c5e6b08c49ba" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "8ed1c2dd-2c03-4327-8eb7-460fa0a26122", + "logId": "ed536b9c-9a44-4a9b-9a5b-d7486b3e7824" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ab8e07bb-71f7-4db2-82cd-1804be1fa0c8", + "name": "build task graph", + "description": "Build task graph.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583776324875, + "endTime": 340583777206041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "8ed1c2dd-2c03-4327-8eb7-460fa0a26122", + "logId": "211734b2-d702-4b4a-bef3-e257aff33bec" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2677a00b-c7a8-431b-8577-6a63a790f4ba", + "name": "init task execution option", + "description": "Init task execution option.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583777208166, + "endTime": 340583777211125 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "8ed1c2dd-2c03-4327-8eb7-460fa0a26122", + "logId": "6d00fb79-9ab7-4d72-b0f9-ebba51c6b121" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "6d471c9f-5d7c-4664-83ca-a19e30ce34bb", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583032325250, + "endTime": 340583032406166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "8ed1c2dd-2c03-4327-8eb7-460fa0a26122", + "logId": "2ab8d456-ef48-45d0-913a-822aff9b584b" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2ab8d456-ef48-45d0-913a-822aff9b584b", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583032325250, + "endTime": 340583032406166 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "6d471c9f-5d7c-4664-83ca-a19e30ce34bb", + "parent": "ca0dfd5e-3ab1-436a-9f51-8949a62d6c89" + } + }, + { + "head": { + "id": "a87afb58-656e-4d64-ae5c-4b0e4361b497", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583032915583, + "endTime": 340583032927166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "8ed1c2dd-2c03-4327-8eb7-460fa0a26122", + "logId": "dee904d3-a221-40ff-9dbb-f25fcd0ad647" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "dee904d3-a221-40ff-9dbb-f25fcd0ad647", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583032915583, + "endTime": 340583032927166 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "a87afb58-656e-4d64-ae5c-4b0e4361b497", + "parent": "ca0dfd5e-3ab1-436a-9f51-8949a62d6c89" + } + }, + { + "head": { + "id": "9403c607-d71f-4f6d-9713-ee92f38247de", + "name": "Hvigor init with startParameters:{\n hvigorfileTypeCheck: false,\n parallelExecution: true,\n incrementalExecution: true,\n printStackTrace: false,\n daemon: false,\n analyze: 0,\n logLevel: Level { level: 20000, levelStr: 'INFO', colour: 'green' },\n optimizationStrategy: 'memory',\n hotCompile: undefined,\n hotReloadBuild: undefined,\n customizedParam: undefined\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583033052250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "07a34b7c-e8fc-4aa5-8e47-d9e1b3e81e09", + "name": "Cache service initialization finished in 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583035054083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c0649034-3972-4118-bf88-e5bd5e54dc93", + "name": "create hvigor project model", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583031059541, + "endTime": 340583035084333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "6b948836-68a3-4e90-98d4-982359347bc7", + "parent": "ca0dfd5e-3ab1-436a-9f51-8949a62d6c89" + } + }, + { + "head": { + "id": "dc30a3f5-c859-412d-b9ae-bc9f4a4ce5a2", + "name": "init configuration", + "description": "Initialize configuration.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583035218333, + "endTime": 340583035224750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "10fb9b06-f2d6-4a4e-9555-52f0c8f17d3a", + "logId": "95bf06bb-1d3d-4f02-81aa-e756ab427664" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f8d0e4bc-84c3-46e2-8be9-63ad209dfa96", + "name": "configure project task", + "description": "Configure project task.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583035236750, + "endTime": 340583035420916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "10fb9b06-f2d6-4a4e-9555-52f0c8f17d3a", + "logId": "8a195a34-9f40-45c3-801d-3e41760d28e0" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a0289215-6c75-4e84-afac-f0500a825db1", + "name": "eval project", + "description": "Evaluate project.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583035454125, + "endTime": 340583737925083 + }, + "additional": { + "children": [ + "f146eeeb-6c4c-4f9a-a2a7-11d887e023ae", + "408038a2-30c6-41cb-b398-fe13e6ae51f3", + "c639daee-1c0d-4794-a2b9-b96ccfe67831" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "10fb9b06-f2d6-4a4e-9555-52f0c8f17d3a", + "logId": "749047fe-dc20-4132-8d0e-553f939ded6d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "16b5db8b-c59a-4347-a097-3c677e93c95e", + "name": "eval modules", + "description": "Evaluate modules.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583738042375, + "endTime": 340583769316208 + }, + "additional": { + "children": [ + "62038ca0-ec40-40dd-a027-ec5f087b200f", + "6a6474fe-4dd3-41b9-bc00-34127cf85f17" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "10fb9b06-f2d6-4a4e-9555-52f0c8f17d3a", + "logId": "ad2811f7-7092-4932-8c2c-df14a9f148e2" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "781ebc8e-2e65-4eb5-9d8d-05d21ed6c66b", + "name": "add config dependencies", + "description": "Add configuration dependencies.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583769331750, + "endTime": 340583769332166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "10fb9b06-f2d6-4a4e-9555-52f0c8f17d3a", + "logId": "51b4e14a-1717-4037-8e6d-92edf8b81f6a" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "738f0a8f-a36b-498b-9536-be40740e7927", + "name": "ohpm install", + "description": "Ohpm install event.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583769450375, + "endTime": 340583771763333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "10fb9b06-f2d6-4a4e-9555-52f0c8f17d3a", + "logId": "0ed2b064-34fd-4a1d-b177-16026bcefd24" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "59b6f2c0-cbb9-4c36-ab53-b24050b01ad7", + "name": "eval hook", + "description": "EvaluateEvent hook.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583771767125, + "endTime": 340583776273375 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "10fb9b06-f2d6-4a4e-9555-52f0c8f17d3a", + "logId": "ff9b8494-ce0a-4d8d-ab38-3b5fde07e4a4" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "549a9ad6-fcbf-4050-ba52-d67e263100f6", + "name": "fin configuration", + "description": "Finish configuration.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583776281041, + "endTime": 340583776308333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "10fb9b06-f2d6-4a4e-9555-52f0c8f17d3a", + "logId": "3c2ad71f-6517-4146-8116-9fa34959613f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "95bf06bb-1d3d-4f02-81aa-e756ab427664", + "name": "init configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583035218333, + "endTime": 340583035224750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "dc30a3f5-c859-412d-b9ae-bc9f4a4ce5a2", + "parent": "ed536b9c-9a44-4a9b-9a5b-d7486b3e7824" + } + }, + { + "head": { + "id": "8a195a34-9f40-45c3-801d-3e41760d28e0", + "name": "configure project task", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583035236750, + "endTime": 340583035420916 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f8d0e4bc-84c3-46e2-8be9-63ad209dfa96", + "parent": "ed536b9c-9a44-4a9b-9a5b-d7486b3e7824" + } + }, + { + "head": { + "id": "f146eeeb-6c4c-4f9a-a2a7-11d887e023ae", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583035512875, + "endTime": 340583035522500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "a0289215-6c75-4e84-afac-f0500a825db1", + "logId": "ce63e3b8-be41-4588-954f-bde24035beef" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ce63e3b8-be41-4588-954f-bde24035beef", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583035512875, + "endTime": 340583035522500 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f146eeeb-6c4c-4f9a-a2a7-11d887e023ae", + "parent": "749047fe-dc20-4132-8d0e-553f939ded6d" + } + }, + { + "head": { + "id": "408038a2-30c6-41cb-b398-fe13e6ae51f3", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583035615500, + "endTime": 340583737864416 + }, + "additional": { + "children": [ + "6435f5d5-63a9-4dce-9f88-eb975974adb0", + "3da32667-9efb-49f9-b601-6fb17f76467f" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "a0289215-6c75-4e84-afac-f0500a825db1", + "logId": "9ccba4af-c269-497f-8c3b-d53655ed7c9d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "6435f5d5-63a9-4dce-9f88-eb975974adb0", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583035615958, + "endTime": 340583632811375 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "408038a2-30c6-41cb-b398-fe13e6ae51f3", + "logId": "8b852ae7-9818-4a0f-99b7-74f6841fc2c5" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3da32667-9efb-49f9-b601-6fb17f76467f", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583632824291, + "endTime": 340583737857750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "408038a2-30c6-41cb-b398-fe13e6ae51f3", + "logId": "0819c9f0-50bd-466f-887a-60a76b0d42c8" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "6ee42daa-6124-4e57-9a75-5a60c3c8f7ea", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583035617333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3ed5f67c-7317-448a-aa76-c065fdc1c142", + "name": "hvigorfile, require result: { default: { system: [Function: appTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583632675416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8b852ae7-9818-4a0f-99b7-74f6841fc2c5", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583035615958, + "endTime": 340583632811375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "6435f5d5-63a9-4dce-9f88-eb975974adb0", + "parent": "9ccba4af-c269-497f-8c3b-d53655ed7c9d" + } + }, + { + "head": { + "id": "8e44baba-6136-4dd6-94cc-8af11aab32e6", + "name": "hvigorfile, binding system plugins [Function: appTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583632867750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "36a076e6-dd25-4fa5-a1e2-358aba89244d", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583633338833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "03d9921a-67c6-4df0-bdf6-fb591ea2138e", + "name": "App plugin prepare start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583633375125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e050214e-22d0-42e5-b169-8427181eef7c", + "name": "App plugin prepare end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583633406208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "711fe80c-b949-4761-a0ef-3b4ee0a39747", + "name": "App plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583633419750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "62c8c6cd-41b3-4dc5-9f72-8eb00545ef10", + "name": "App plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583713053666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "785608cf-2181-473c-b25c-45b9f539fc73", + "name": "App plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583713304916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "75c27fc9-0557-4752-a15b-17a70dfcb866", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583713323791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0e211350-825a-4b9a-bb0b-3d2567e8a44f", + "name": "Start initialize project's product build option map with build mode debug.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583713957958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "27d96c85-48ad-489d-b3f4-e96e074995d9", + "name": "Picking option from product 'default' with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583714076125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dd5fa0f8-96de-40b5-a547-3c0c92954e5d", + "name": "Product 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583714245125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f5c2eff4-3d71-4698-bfda-0a5876137094", + "name": "End initialize project's product build option map with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583714263708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e8a8ed36-44ee-435e-bdab-d72cf71caf24", + "name": "Obtain build option for product 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583715114750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6875c586-01c6-4c7c-a85a-e9fe689d97a7", + "name": "No signingConfig found, initRemoteHspCache failed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583715794625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4c2c478e-6826-4a0e-b085-c1a32b0db426", + "name": "harmonyOS sdk scan", + "description": "HarmonyOS sdk scan", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583716449791, + "endTime": 340583717418708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Other", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b15c19cd-1551-4b36-b9d2-e1129041cb28", + "name": "Local scan or download HarmonyOS sdk components toolchains,ets,js,native,previewer", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583716455916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "08ec19d0-feec-409e-aacd-304bdff5c465", + "name": "hmscore sdk scan", + "description": "Hmscore sdk scan", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583717483916, + "endTime": 340583717668708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Other", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "7ff982a8-29fe-4246-bf6c-c4abd80f669d", + "name": "Local scan or download hmscore sdk components toolchains,ets,native", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583717488625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ad11c642-d05d-4a81-8523-0ee09fa30b87", + "name": "Start recording SDK configuration permission data.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583718331791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "450e2ae5-fe11-4fc0-9054-f9c9a5e2f2ca", + "name": "Sdk init in 19 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583735082000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4155ff8d-15a4-4341-9d36-e0f72573e430", + "name": "sdkVersion", + "description": "6.0.2.130", + "type": "mark" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583735188166 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 3, + "second": 30 + }, + "markType": "other" + } + }, + { + "head": { + "id": "0d335b15-a163-4f15-8d61-2dfebb870080", + "name": "caseSensitiveCheckOn", + "description": "caseSensitiveCheck check is on", + "type": "mark" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583735223041 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 3, + "second": 30 + }, + "markType": "other" + } + }, + { + "head": { + "id": "d689edbe-15b9-4c49-a631-0055afd33828", + "name": "Project task initialization takes 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583737770625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1dcea0bd-0771-49ec-b3c7-020a42b1579c", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583737831208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5ce3051b-e708-4e3d-b4b7-b0834af8dd32", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583737843541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a4bd2c22-e7ff-4ab8-86db-8a900fe6a9a2", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583737851333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0819c9f0-50bd-466f-887a-60a76b0d42c8", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583632824291, + "endTime": 340583737857750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3da32667-9efb-49f9-b601-6fb17f76467f", + "parent": "9ccba4af-c269-497f-8c3b-d53655ed7c9d" + } + }, + { + "head": { + "id": "9ccba4af-c269-497f-8c3b-d53655ed7c9d", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583035615500, + "endTime": 340583737864416 + }, + "additional": { + "logType": "info", + "children": [ + "8b852ae7-9818-4a0f-99b7-74f6841fc2c5", + "0819c9f0-50bd-466f-887a-60a76b0d42c8" + ], + "durationId": "408038a2-30c6-41cb-b398-fe13e6ae51f3", + "parent": "749047fe-dc20-4132-8d0e-553f939ded6d" + } + }, + { + "head": { + "id": "c639daee-1c0d-4794-a2b9-b96ccfe67831", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583737906291, + "endTime": 340583737918208 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "a0289215-6c75-4e84-afac-f0500a825db1", + "logId": "5510ff87-17fa-48c6-a3df-d05e75dd0e3d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "5510ff87-17fa-48c6-a3df-d05e75dd0e3d", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583737906291, + "endTime": 340583737918208 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "c639daee-1c0d-4794-a2b9-b96ccfe67831", + "parent": "749047fe-dc20-4132-8d0e-553f939ded6d" + } + }, + { + "head": { + "id": "749047fe-dc20-4132-8d0e-553f939ded6d", + "name": "eval project", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583035454125, + "endTime": 340583737925083 + }, + "additional": { + "logType": "info", + "children": [ + "ce63e3b8-be41-4588-954f-bde24035beef", + "9ccba4af-c269-497f-8c3b-d53655ed7c9d", + "5510ff87-17fa-48c6-a3df-d05e75dd0e3d" + ], + "durationId": "a0289215-6c75-4e84-afac-f0500a825db1", + "parent": "ed536b9c-9a44-4a9b-9a5b-d7486b3e7824" + } + }, + { + "head": { + "id": "62038ca0-ec40-40dd-a027-ec5f087b200f", + "name": "eval submodule", + "description": "Evaluate submodule.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583738046625, + "endTime": 340583764106208 + }, + "additional": { + "children": [ + "29ccd8b3-568f-4f09-b45f-6f1fb1d7f5c7", + "8ab08112-6ed3-4a89-9f5a-94bc88b9328e", + "198cbdb6-804e-4772-b0f8-6829d9e9349b" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "16b5db8b-c59a-4347-a097-3c677e93c95e", + "logId": "28b47f09-b763-424a-abbb-53bc4972f90c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "29ccd8b3-568f-4f09-b45f-6f1fb1d7f5c7", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583738084875, + "endTime": 340583738089458 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "62038ca0-ec40-40dd-a027-ec5f087b200f", + "logId": "0871a0ec-7f8c-41db-8bed-d5256e486056" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0871a0ec-7f8c-41db-8bed-d5256e486056", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583738084875, + "endTime": 340583738089458 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "29ccd8b3-568f-4f09-b45f-6f1fb1d7f5c7", + "parent": "28b47f09-b763-424a-abbb-53bc4972f90c" + } + }, + { + "head": { + "id": "8ab08112-6ed3-4a89-9f5a-94bc88b9328e", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583738105333, + "endTime": 340583763840541 + }, + "additional": { + "children": [ + "116126e0-1fd6-4b97-945f-5ca037341f79", + "931be1a5-cfa7-44b6-8ba1-d87f11873450" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "62038ca0-ec40-40dd-a027-ec5f087b200f", + "logId": "31ead666-4b72-46e8-ab64-4c3c593891d3" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "116126e0-1fd6-4b97-945f-5ca037341f79", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583738105458, + "endTime": 340583741186166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "8ab08112-6ed3-4a89-9f5a-94bc88b9328e", + "logId": "53d082e6-334a-4521-8046-b4125fe80c53" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "931be1a5-cfa7-44b6-8ba1-d87f11873450", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583741190458, + "endTime": 340583763836125 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "8ab08112-6ed3-4a89-9f5a-94bc88b9328e", + "logId": "04edcdd9-4241-41e0-9cd9-eda2a1210a55" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3b5b901f-9b9f-403e-8220-7f75cc7d83b6", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583738106250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ba04ae49-22d0-45f9-a55f-6bc08aca628a", + "name": "hvigorfile, require result: { default: { system: [Function: harTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583741164500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "53d082e6-334a-4521-8046-b4125fe80c53", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583738105458, + "endTime": 340583741186166 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "116126e0-1fd6-4b97-945f-5ca037341f79", + "parent": "31ead666-4b72-46e8-ab64-4c3c593891d3" + } + }, + { + "head": { + "id": "2c5639b2-c175-42e0-b8e3-0a5086e2a217", + "name": "hvigorfile, binding system plugins [Function: harTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583741194000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bd5777bc-f1d4-4330-bfe1-18fd1c453acc", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583741230000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d3577069-e21e-41bd-b8c3-e54abf3dbd2a", + "name": "Har plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583741247500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "14bdf24f-d2a1-41e0-a7bb-2d7dbc04ed83", + "name": "failed to load cangjie to dynamically generate schemas: Error: Cannot find module '@ohos/cangjie-build-support/index'\nRequire stack:\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/hooks/cangjie-register.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/strategy/stage-init-strategy.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/abstract-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/factory/plugin-factory.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/index.js\n- /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/boot/index.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/cli/main/cli.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/bin/hvigor.js", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583741534916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9519737d-d84b-4f61-82f2-79603de8121a", + "name": "Start initialize module-target build option map, moduleName=xuqm-sdk, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583760885333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9d8fb3f3-a98c-4a8b-b99c-5f4ddbccca31", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583760989458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e72a65d1-d8b3-4338-924c-3816f9e7fc6a", + "name": "Module 'xuqm-sdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583761209416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dfbadda7-3978-4039-a6a0-1ef93f5034d1", + "name": "End initialize module-target build option map, moduleName=xuqm-sdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583761220291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7125c8e9-de61-485f-940a-c7b0c9c1ac00", + "name": "Start initialize module-target build option map, moduleName=xuqm-sdk, buildMode=release", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583761240208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c12de63c-a961-46f2-8f76-9acf1f00eeab", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583761253333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "66062ea2-c24e-4a80-a386-d1d998db0df2", + "name": "Module 'xuqm-sdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583761408250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "80091791-9345-4a47-8660-2620003f4557", + "name": "End initialize module-target build option map, moduleName=xuqm-sdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583761419875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9f8f5e83-7aaf-4489-ad42-2c3571332f06", + "name": "Start initialize module-target build option map, moduleName=xuqm-sdk, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583761504875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "86a5b7fb-a07d-400a-8078-5fc841ebda0c", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583761523833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cfedfbc4-e434-4b5c-a916-61cee8756ae2", + "name": "Module 'xuqm-sdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583761621250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3a8d244d-707c-4986-955b-ccf119a19705", + "name": "End initialize module-target build option map, moduleName=xuqm-sdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583761630541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "471e3b5c-b93d-43be-a114-3bb59d57e28e", + "name": "Obtain build option for module 'xuqm-sdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583761700875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7b746022-392b-4a9e-b63c-794e403fd202", + "name": "Module xuqm-sdk task initialization takes 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583763734958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e0de2634-155e-4b0f-b488-b438cde11616", + "name": "Har plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583763766666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f191364e-be24-4a89-9e7b-f07df8758f54", + "name": "Har plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583763783583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9f14f59b-dfd7-4c5b-888a-239d707c6a9f", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583763790250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f0c9c113-9ff0-48d6-bc67-b58a1fab08b1", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583763815208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5f5ed769-7f25-4a2e-9091-4e91ccca71b7", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583763824541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e16cc44b-d372-4591-8e79-617820e53f5c", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583763830625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "04edcdd9-4241-41e0-9cd9-eda2a1210a55", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583741190458, + "endTime": 340583763836125 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "931be1a5-cfa7-44b6-8ba1-d87f11873450", + "parent": "31ead666-4b72-46e8-ab64-4c3c593891d3" + } + }, + { + "head": { + "id": "31ead666-4b72-46e8-ab64-4c3c593891d3", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583738105333, + "endTime": 340583763840541 + }, + "additional": { + "logType": "info", + "children": [ + "53d082e6-334a-4521-8046-b4125fe80c53", + "04edcdd9-4241-41e0-9cd9-eda2a1210a55" + ], + "durationId": "8ab08112-6ed3-4a89-9f5a-94bc88b9328e", + "parent": "28b47f09-b763-424a-abbb-53bc4972f90c" + } + }, + { + "head": { + "id": "198cbdb6-804e-4772-b0f8-6829d9e9349b", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583764098791, + "endTime": 340583764102250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "62038ca0-ec40-40dd-a027-ec5f087b200f", + "logId": "0cbdc201-be53-4c89-b03d-8e4578f43633" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0cbdc201-be53-4c89-b03d-8e4578f43633", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583764098791, + "endTime": 340583764102250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "198cbdb6-804e-4772-b0f8-6829d9e9349b", + "parent": "28b47f09-b763-424a-abbb-53bc4972f90c" + } + }, + { + "head": { + "id": "28b47f09-b763-424a-abbb-53bc4972f90c", + "name": "eval submodule", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583738046625, + "endTime": 340583764106208 + }, + "additional": { + "logType": "info", + "children": [ + "0871a0ec-7f8c-41db-8bed-d5256e486056", + "31ead666-4b72-46e8-ab64-4c3c593891d3", + "0cbdc201-be53-4c89-b03d-8e4578f43633" + ], + "durationId": "62038ca0-ec40-40dd-a027-ec5f087b200f", + "parent": "ad2811f7-7092-4932-8c2c-df14a9f148e2" + } + }, + { + "head": { + "id": "6a6474fe-4dd3-41b9-bc00-34127cf85f17", + "name": "eval submodule", + "description": "Evaluate submodule.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583764116791, + "endTime": 340583769312125 + }, + "additional": { + "children": [ + "e438ac4b-8379-446c-9e3b-11797c5eed82", + "37538f35-6599-431e-b733-2406690bbb4b", + "5b29a1ea-0295-49a6-8ef1-5f21e922a9d6" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "16b5db8b-c59a-4347-a097-3c677e93c95e", + "logId": "decb7857-6263-4960-9bd7-3cd2ea748428" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e438ac4b-8379-446c-9e3b-11797c5eed82", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583764147541, + "endTime": 340583764149708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "6a6474fe-4dd3-41b9-bc00-34127cf85f17", + "logId": "30e9d639-2355-4c30-b773-814efa70591c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "30e9d639-2355-4c30-b773-814efa70591c", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583764147541, + "endTime": 340583764149708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e438ac4b-8379-446c-9e3b-11797c5eed82", + "parent": "decb7857-6263-4960-9bd7-3cd2ea748428" + } + }, + { + "head": { + "id": "37538f35-6599-431e-b733-2406690bbb4b", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583764163583, + "endTime": 340583769286166 + }, + "additional": { + "children": [ + "8b1eb668-5b71-4875-8a91-16bda9371500", + "f1a64a00-0043-4f59-9322-706dfb54a7ad" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "6a6474fe-4dd3-41b9-bc00-34127cf85f17", + "logId": "4844cced-9343-4585-ba22-b9b8187db8e2" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8b1eb668-5b71-4875-8a91-16bda9371500", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583764163708, + "endTime": 340583766897458 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "37538f35-6599-431e-b733-2406690bbb4b", + "logId": "02ca0e96-3827-4517-9ff7-bdba6e1cf81f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f1a64a00-0043-4f59-9322-706dfb54a7ad", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583766901666, + "endTime": 340583769282833 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "37538f35-6599-431e-b733-2406690bbb4b", + "logId": "ef8f8102-8bcb-4b9f-ba3f-855497913fa1" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "49467a56-3f36-44fb-9757-c8dce70b3447", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583764164583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "da67bcf9-32e3-435b-bafc-75c915a25ef9", + "name": "hvigorfile, require result: { default: { system: [Function: hapTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583766875625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "02ca0e96-3827-4517-9ff7-bdba6e1cf81f", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583764163708, + "endTime": 340583766897458 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "8b1eb668-5b71-4875-8a91-16bda9371500", + "parent": "4844cced-9343-4585-ba22-b9b8187db8e2" + } + }, + { + "head": { + "id": "32101030-a392-4276-afe9-d4a968f97017", + "name": "hvigorfile, binding system plugins [Function: hapTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583766905000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0244d419-bfb3-42d0-b82c-0673ee2e7a23", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583766938291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fa6dbc5f-89bd-417b-8854-89c17bd7c32f", + "name": "Hap plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583766952416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9d84e0ea-37d9-45fb-9377-d116f866abee", + "name": "failed to load cangjie to dynamically generate schemas: Error: Cannot find module '@ohos/cangjie-build-support/index'\nRequire stack:\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/hooks/cangjie-register.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/strategy/stage-init-strategy.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/abstract-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/factory/plugin-factory.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/index.js\n- /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/boot/index.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/cli/main/cli.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/bin/hvigor.js", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583767042375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a0c087c9-a67e-44d0-a4f6-c002d69e348d", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583768493333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "65d259c3-e149-4409-96bf-93836425f413", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583768509166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "274bee73-62bf-4ce3-a71e-d7c3cb8ed173", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583768549083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b2cddddc-f5b3-4fb2-b8d6-1f73e731e84b", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583768556291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "75ed4769-f4a9-4f57-a166-0eead7a733bd", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=release", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583768569916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4413a9eb-b7ad-46df-9901-bdbf709ed2ea", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583768579083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f51a0398-db81-4ce5-83b2-05b71c918f37", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583768617375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b59c9ff1-cc5d-44c5-938b-b9940a9dee88", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583768624250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a4e6e078-ad63-4d11-932d-37b4b774f577", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583768637875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "17a91b59-8457-4d1b-bcbc-6f782fe2fc03", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583768647166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ec8140bf-f420-4af5-979a-d465ee2099ac", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583768680416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f501757a-1781-43a5-9d8d-72a544871b91", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583768686500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "59b0add0-3b79-42c2-b143-68fd6be539e7", + "name": "Obtain build option for module 'entry' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583768694875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "32ce1250-695e-4561-8a6a-f8bc34cf7d23", + "name": "Module entry task initialization takes 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583769201166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2c3350e5-4580-4a18-a637-4fcdcf2f2475", + "name": "Hap plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583769234333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5626e70a-df80-46ab-947f-ec0e09292834", + "name": "Hap plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583769242500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3f901009-c04f-4efd-80b0-cf1802d0e0aa", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583769248250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b1cd64e2-65b3-4a2c-a38a-a3213f8b5a8e", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583769263875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c73cef61-2c69-4149-8a69-8beda9c2d131", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583769272041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "777679cc-02a8-4384-be13-d7a99f2dcb4c", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583769277708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ef8f8102-8bcb-4b9f-ba3f-855497913fa1", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583766901666, + "endTime": 340583769282833 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f1a64a00-0043-4f59-9322-706dfb54a7ad", + "parent": "4844cced-9343-4585-ba22-b9b8187db8e2" + } + }, + { + "head": { + "id": "4844cced-9343-4585-ba22-b9b8187db8e2", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583764163583, + "endTime": 340583769286166 + }, + "additional": { + "logType": "info", + "children": [ + "02ca0e96-3827-4517-9ff7-bdba6e1cf81f", + "ef8f8102-8bcb-4b9f-ba3f-855497913fa1" + ], + "durationId": "37538f35-6599-431e-b733-2406690bbb4b", + "parent": "decb7857-6263-4960-9bd7-3cd2ea748428" + } + }, + { + "head": { + "id": "5b29a1ea-0295-49a6-8ef1-5f21e922a9d6", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583769306708, + "endTime": 340583769308916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "6a6474fe-4dd3-41b9-bc00-34127cf85f17", + "logId": "bbce02d6-bd9a-43a6-8311-ed8d5a279909" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "bbce02d6-bd9a-43a6-8311-ed8d5a279909", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583769306708, + "endTime": 340583769308916 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "5b29a1ea-0295-49a6-8ef1-5f21e922a9d6", + "parent": "decb7857-6263-4960-9bd7-3cd2ea748428" + } + }, + { + "head": { + "id": "decb7857-6263-4960-9bd7-3cd2ea748428", + "name": "eval submodule", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583764116791, + "endTime": 340583769312125 + }, + "additional": { + "logType": "info", + "children": [ + "30e9d639-2355-4c30-b773-814efa70591c", + "4844cced-9343-4585-ba22-b9b8187db8e2", + "bbce02d6-bd9a-43a6-8311-ed8d5a279909" + ], + "durationId": "6a6474fe-4dd3-41b9-bc00-34127cf85f17", + "parent": "ad2811f7-7092-4932-8c2c-df14a9f148e2" + } + }, + { + "head": { + "id": "ad2811f7-7092-4932-8c2c-df14a9f148e2", + "name": "eval modules", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583738042375, + "endTime": 340583769316208 + }, + "additional": { + "logType": "info", + "children": [ + "28b47f09-b763-424a-abbb-53bc4972f90c", + "decb7857-6263-4960-9bd7-3cd2ea748428" + ], + "durationId": "16b5db8b-c59a-4347-a097-3c677e93c95e", + "parent": "ed536b9c-9a44-4a9b-9a5b-d7486b3e7824" + } + }, + { + "head": { + "id": "51b4e14a-1717-4037-8e6d-92edf8b81f6a", + "name": "add config dependencies", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583769331750, + "endTime": 340583769332166 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "781ebc8e-2e65-4eb5-9d8d-05d21ed6c66b", + "parent": "ed536b9c-9a44-4a9b-9a5b-d7486b3e7824" + } + }, + { + "head": { + "id": "cd908217-6f0a-4c2d-a1e5-c5e6b08c49ba", + "name": "\"nodesEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583769338083, + "endTime": 340583769447666 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "10fb9b06-f2d6-4a4e-9555-52f0c8f17d3a", + "logId": "5354648e-d809-49b7-9183-ea4e1cb37ccc" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a203c664-9caa-4c1d-96d6-6b2148ad8a1f", + "name": "project has submodules:xuqm-sdk,entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583769363250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c525afee-6ed9-48bf-b7dd-356383486ed2", + "name": "module:xuqm-sdk no need to execute packageHap", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583769415083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5354648e-d809-49b7-9183-ea4e1cb37ccc", + "name": "\"nodesEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583769338083, + "endTime": 340583769447666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "cd908217-6f0a-4c2d-a1e5-c5e6b08c49ba", + "parent": "ed536b9c-9a44-4a9b-9a5b-d7486b3e7824" + } + }, + { + "head": { + "id": "4e308210-cb10-4237-9b74-37bc3b20375e", + "name": "start to load updatedOhPackageInfo to the disk", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583770065416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f0b3f337-3a98-4aeb-bde4-5dadaf16cddb", + "name": "load to the disk finished", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583771577375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0ed2b064-34fd-4a1d-b177-16026bcefd24", + "name": "ohpm install", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583769450375, + "endTime": 340583771763333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "738f0a8f-a36b-498b-9536-be40740e7927", + "parent": "ed536b9c-9a44-4a9b-9a5b-d7486b3e7824" + } + }, + { + "head": { + "id": "bf1d5708-a3f1-46d7-b79e-36018bfd1385", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583771802875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bae66827-26e0-4d64-bc44-687e95b55b7f", + "name": "Module XuqmGroup-HarmonySDK Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583772419916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fcaa5466-cf0b-411d-b5cf-783c96d53d96", + "name": "Module XuqmGroup-HarmonySDK's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583772429416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "da827d98-0548-4619-a46d-7039cf770795", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583772936625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "eae111a6-0b94-431d-b1aa-c598445c57a5", + "name": "Module xuqm-sdk Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583773342208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a72a45c5-052e-4c54-b7e0-9e10fe0a851d", + "name": "Module xuqm-sdk's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583773353708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fefdc356-0c92-41ea-af8c-3382d132e0c6", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583774767833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "25f9d34a-25a1-4f2b-b521-8cf6d81b44ed", + "name": "Module entry Collected Dependency: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583775729708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "21963097-6883-48ae-8b1b-c615c4cb8e9d", + "name": "Module entry's total dependency: 1", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583775743083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ff9b8494-ce0a-4d8d-ab38-3b5fde07e4a4", + "name": "eval hook", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583771767125, + "endTime": 340583776273375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "59b6f2c0-cbb9-4c36-ab53-b24050b01ad7", + "parent": "ed536b9c-9a44-4a9b-9a5b-d7486b3e7824" + } + }, + { + "head": { + "id": "4ea68586-37d3-45ad-a91c-ef912bce355a", + "name": "Configuration phase cost:742 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583776297666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3c2ad71f-6517-4146-8116-9fa34959613f", + "name": "fin configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583776281041, + "endTime": 340583776308333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "549a9ad6-fcbf-4050-ba52-d67e263100f6", + "parent": "ed536b9c-9a44-4a9b-9a5b-d7486b3e7824" + } + }, + { + "head": { + "id": "ed536b9c-9a44-4a9b-9a5b-d7486b3e7824", + "name": "configure hvigor plugin", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583035092875, + "endTime": 340583776312041 + }, + "additional": { + "logType": "info", + "children": [ + "95bf06bb-1d3d-4f02-81aa-e756ab427664", + "8a195a34-9f40-45c3-801d-3e41760d28e0", + "749047fe-dc20-4132-8d0e-553f939ded6d", + "ad2811f7-7092-4932-8c2c-df14a9f148e2", + "51b4e14a-1717-4037-8e6d-92edf8b81f6a", + "0ed2b064-34fd-4a1d-b177-16026bcefd24", + "ff9b8494-ce0a-4d8d-ab38-3b5fde07e4a4", + "3c2ad71f-6517-4146-8116-9fa34959613f", + "5354648e-d809-49b7-9183-ea4e1cb37ccc" + ], + "durationId": "10fb9b06-f2d6-4a4e-9555-52f0c8f17d3a", + "parent": "ca0dfd5e-3ab1-436a-9f51-8949a62d6c89" + } + }, + { + "head": { + "id": "c57f2e5d-a312-4642-b5f2-e69ec785538e", + "name": "\"taskGraphResolved\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583777187125, + "endTime": 340583777200875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "8ed1c2dd-2c03-4327-8eb7-460fa0a26122", + "logId": "3a1b6c25-5382-40e8-b6bf-07cc2ae57ff9" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3a1b6c25-5382-40e8-b6bf-07cc2ae57ff9", + "name": "\"taskGraphResolved\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583777187125, + "endTime": 340583777200875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "c57f2e5d-a312-4642-b5f2-e69ec785538e", + "parent": "ca0dfd5e-3ab1-436a-9f51-8949a62d6c89" + } + }, + { + "head": { + "id": "211734b2-d702-4b4a-bef3-e257aff33bec", + "name": "build task graph", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583776324875, + "endTime": 340583777206041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ab8e07bb-71f7-4db2-82cd-1804be1fa0c8", + "parent": "ca0dfd5e-3ab1-436a-9f51-8949a62d6c89" + } + }, + { + "head": { + "id": "6d00fb79-9ab7-4d72-b0f9-ebba51c6b121", + "name": "init task execution option", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583777208166, + "endTime": 340583777211125 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "2677a00b-c7a8-431b-8577-6a63a790f4ba", + "parent": "ca0dfd5e-3ab1-436a-9f51-8949a62d6c89" + } + }, + { + "head": { + "id": "ca0dfd5e-3ab1-436a-9f51-8949a62d6c89", + "name": "init", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583031056416, + "endTime": 340583777214000 + }, + "additional": { + "logType": "info", + "children": [ + "c0649034-3972-4118-bf88-e5bd5e54dc93", + "ed536b9c-9a44-4a9b-9a5b-d7486b3e7824", + "211734b2-d702-4b4a-bef3-e257aff33bec", + "6d00fb79-9ab7-4d72-b0f9-ebba51c6b121", + "2ab8d456-ef48-45d0-913a-822aff9b584b", + "dee904d3-a221-40ff-9dbb-f25fcd0ad647", + "3a1b6c25-5382-40e8-b6bf-07cc2ae57ff9" + ], + "durationId": "8ed1c2dd-2c03-4327-8eb7-460fa0a26122" + } + }, + { + "head": { + "id": "89010eef-7243-4739-9ee4-71417bd98bb0", + "name": "Configuration task cost before running: 747 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583777568291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "786c58ac-1168-4f9d-b9ca-e9dcebffbcc2", + "name": "entry:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583779528791, + "endTime": 340583783349916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Verification", + "taskRunReasons": [], + "detailId": "2398d968-b4c4-4881-93f2-15a5b88bc5fe", + "logId": "4ea66a94-8013-4d78-acb0-9b98a0c7ecac" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2398d968-b4c4-4881-93f2-15a5b88bc5fe", + "name": "create entry:default@PreBuild task", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583777816791 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "786c58ac-1168-4f9d-b9ca-e9dcebffbcc2" + } + }, + { + "head": { + "id": "f52b3911-e0ae-49f7-aab1-90bd7bc50b8c", + "name": "Executing task :entry:default@PreBuild", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583779540541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d06bb055-c1e7-450e-81bf-da668330e4b0", + "name": "The project has not explicitly set the 'targetSdkVersion' version at build-profile.json5. It is recommended to configure it. Reference: https://developer.huawei.com/consumer/cn/doc/harmonyos-guides/ide-hvigor-build-profile-app#section45865492619", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583779706541 + }, + "additional": { + "logType": "warn", + "children": [] + } + }, + { + "head": { + "id": "95163d45-5f35-4945-bf2f-07075f82d369", + "name": "Task 'entry:default@PreBuild' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583780995791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "218db2ab-6063-40b8-98e5-35319b6caa98", + "name": "Incremental task entry:default@PreBuild pre-execution cost: 2 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583783258416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "43379724-d115-49ff-8e43-be2132cbf8d3", + "name": "entry : default@PreBuild cost memory 0.3278961181640625", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583783304333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4ea66a94-8013-4d78-acb0-9b98a0c7ecac", + "name": "UP-TO-DATE :entry:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583779528791, + "endTime": 340583783349916 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "786c58ac-1168-4f9d-b9ca-e9dcebffbcc2" + } + }, + { + "head": { + "id": "64f1e49c-9bae-4bcb-9407-5c281f5c9999", + "name": "xuqm-sdk:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583784287458, + "endTime": 340583824497666 + }, + "additional": { + "children": [], + "state": "failed", + "targetName": "default", + "moduleName": "xuqm-sdk", + "category": "Verification", + "taskRunReasons": [], + "detailId": "ec2faa8b-ab83-4794-ad04-da1baee39d07", + "logId": "35e6f749-21bc-4827-8879-241575dbd140" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ec2faa8b-ab83-4794-ad04-da1baee39d07", + "name": "create xuqm-sdk:default@PreBuild task", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583783812625 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "64f1e49c-9bae-4bcb-9407-5c281f5c9999" + } + }, + { + "head": { + "id": "9f36f9c5-025e-4cce-8660-02c7de5ecb61", + "name": "Executing task :xuqm-sdk:default@PreBuild", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583784290875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6a67b339-cbb8-493e-9097-7c4fa3c137a4", + "name": "Task 'xuqm-sdk:default@PreBuild' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583784404500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f47c5ac4-ef0a-4bbe-99d4-c97780a4b408", + "name": "The version number of the '@xuqm/harmony-sdk' module does not comply with the SemVer specification.\n This will affect the installation and publication by ohpm.\n Make sure the value of version in the oh-package.json5 file of the module complies with the SemVer specification.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583785048291 + }, + "additional": { + "logType": "warn", + "children": [] + } + }, + { + "head": { + "id": "35e6f749-21bc-4827-8879-241575dbd140", + "name": "Failed :xuqm-sdk:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583784287458, + "endTime": 340583824497666 + }, + "additional": { + "logType": "error", + "children": [], + "durationId": "64f1e49c-9bae-4bcb-9407-5c281f5c9999" + } + }, + { + "head": { + "id": "1ab5b086-3cd1-4999-859e-9f6ccd89568b", + "name": "hvigor build process will be closed with an error.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583824664416 + }, + "additional": { + "logType": "debug", + "children": [], + "durationId": "64f1e49c-9bae-4bcb-9407-5c281f5c9999" + } + }, + { + "head": { + "id": "086b2c7b-74f9-4ddc-9d7b-daeedfdf9a58", + "name": "\u001b[31m00303038 Configuration Error\nError Message: Schema validate failed, at file: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/module.json5\n\n* Try the following:\n > Please check the following fields. \n {\n instancePath: 'module.name',\n keyword: 'pattern',\n params: { pattern: '^[a-zA-Z][0-9a-zA-Z_.]*$' },\n message: 'must match pattern \"^[a-zA-Z][0-9a-zA-Z_.]*$\"',\n location: '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/module.json5:3:23'\n} \n\n\u001b[39m\n\n\u001b[31m* Try:\n> Run with --stacktrace option to get the stack trace.\n> Run with --debug option to get more log output.\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583824710333 + }, + "additional": { + "logType": "error", + "children": [], + "durationId": "64f1e49c-9bae-4bcb-9407-5c281f5c9999" + } + }, + { + "head": { + "id": "53b21cbc-7910-415e-aece-cfec1f1c9770", + "name": "ERROR: stacktrace = AdaptorError: \u001b[31m00303038 Configuration Error\nError Message: Schema validate failed, at file: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/module.json5\n\n* Try the following:\n > Please check the following fields. \n {\n instancePath: 'module.name',\n keyword: 'pattern',\n params: { pattern: '^[a-zA-Z][0-9a-zA-Z_.]*$' },\n message: 'must match pattern \"^[a-zA-Z][0-9a-zA-Z_.]*$\"',\n location: '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/module.json5:3:23'\n} \n\n\u001b[39m\n at OhosLogger.printErrorExit (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/log/hvigor-log.js:1:5087)\n at ValidateUtil.doSchemaCheck (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/utils/validate/validate-util.js:1:8177)\n at ValidateUtil.submitSchemaCheckWork (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/utils/validate/validate-util.js:1:7013)\n at PreBuild.moduleJson5Validate (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/tasks/pre-build.js:1:15138)\n at PreBuild.doValidateForDiffApiType (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/tasks/pre-build.js:1:9597)\n at PreBuild.doTaskAction (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/tasks/abstract/abstract-pre-build.js:1:7450)\n at PreBuild. (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/tasks/task/ohos-module-task.js:1:2074)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async PreBuild.execute (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/external/task/core-task-impl.js:1:2191)\n at async TaskProxy.execute (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/task/proxy/task-proxy.js:1:6139)", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583824966458 + }, + "additional": { + "logType": "debug", + "children": [], + "durationId": "64f1e49c-9bae-4bcb-9407-5c281f5c9999" + } + }, + { + "head": { + "id": "8b929da5-647b-4c51-a40f-ae347a761ebc", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583825317500, + "endTime": 340583825441250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "2fb5aae1-fc0d-46f1-95e3-bc835cdd54b0", + "logId": "631541c8-b860-44c6-84bd-3fd6fec1a1d1" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "631541c8-b860-44c6-84bd-3fd6fec1a1d1", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583825317500, + "endTime": 340583825441250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "8b929da5-647b-4c51-a40f-ae347a761ebc" + } + }, + { + "head": { + "id": "dfa9c8fe-2f27-4dbd-9980-fe1cf3dc3211", + "name": "assembleHap", + "description": "", + "type": "mark" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583030705041, + "endTime": 340583825644625 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 3, + "second": 30 + }, + "completeCommand": "{\"prop\":[],\"_\":[\"assembleHap\"]};assembleHap", + "hvigorVersion": "6.22.4", + "markType": "history", + "nodeVersion": "v18.20.1", + "category": "build", + "state": "failed" + } + }, + { + "head": { + "id": "e326939e-eaa1-4ce1-ab22-bd9154e592a9", + "name": "BUILD FAILED in 795 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583825660333 + }, + "additional": { + "logType": "error", + "children": [] + } + }, + { + "head": { + "id": "98d8b145-9f75-4c7f-8107-37ff17347b11", + "name": "There is no need to refresh cache, since the incremental task entry:default@PreBuild is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583825753750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "591c3916-f72d-4e7e-961a-022dbea35ee0", + "name": "Update task xuqm-sdk:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583825849583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "495faa6a-bc09-4020-994f-1d9f4463e713", + "name": "Update task xuqm-sdk:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/module.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583825925000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9b20d39c-8ae6-419e-8a0d-2fa224173e46", + "name": "Update task xuqm-sdk:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583825955833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "30bbf0bf-a633-43e5-adbc-7f7500fd1752", + "name": "Update task xuqm-sdk:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583826042708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "de4669d4-a0f0-481e-aa3a-53bcfa229ee6", + "name": "Update task xuqm-sdk:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigor/hvigor-config.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583826072541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9b5deacd-6c1f-438e-b6f1-6fa5ceab73c6", + "name": "Update task xuqm-sdk:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583826094375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3fe23117-51ef-4e3b-bac5-8ffd638012ae", + "name": "Update task xuqm-sdk:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583826161750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9ef0478c-4df6-4992-b360-d1b80f8f2a84", + "name": "Incremental task xuqm-sdk:default@PreBuild post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 15774, + "tid": "Main Thread", + "startTime": 340583826244541 + }, + "additional": { + "logType": "debug", + "children": [] + } + } + ] +} \ No newline at end of file diff --git a/.hvigor/report/report-202604281903494370.json b/.hvigor/report/report-202604281903494370.json new file mode 100644 index 0000000..160a063 --- /dev/null +++ b/.hvigor/report/report-202604281903494370.json @@ -0,0 +1,13236 @@ +{ + "version": "2.0", + "ppid": 16730, + "events": [ + { + "head": { + "id": "e85ae2f4-d7d3-4fbb-b6d8-3f2dd7343924", + "name": "env: nodejsVersion=v18.20.1", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602418184958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6bb53d73-c954-4b67-b5dd-d859bd6015d7", + "name": "env: hvigor-config.json5 content = {\n modelVersion: '5.0.0',\n dependencies: {},\n execution: {\n daemon: false,\n incremental: true,\n parallel: true,\n typeCheck: false\n },\n logging: { level: 'info' },\n debugging: { stacktrace: false },\n nodeOptions: { maxOldSpaceSize: 4096 }\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602418882625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "50fb3e4b-22ed-4039-b2b5-aa1b8ee79ca1", + "name": "env: daemon=false", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602419814791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "495a9584-561c-474d-98b7-442f77fd46fd", + "name": "no-daemon, use the parent process.execArgv --max-old-space-size=4096,--max-semi-space-size=16,--expose-gc", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602419857791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "08951db9-f0cc-4d50-bf5d-d89f2eaf8c8a", + "name": "init", + "description": "Initialize and build task graph.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602538137333, + "endTime": 340603123979000 + }, + "additional": { + "children": [ + "77e563c7-2cdf-403a-9349-58d3ef7bd8b0", + "c69c2635-b11c-4ed5-9dfc-a8ae46fb62db", + "3a804ace-9dd6-4440-917b-2e526550a122", + "8ea710cb-a5f5-4ae8-8fe9-d7419c99bae3", + "53ae1665-b003-4066-bead-0225d6653566", + "c7fb63e7-7613-432b-a01c-568fa00cccff", + "ff207e63-916b-4132-9ee3-95e9c595507b" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Init", + "taskRunReasons": [], + "logId": "ab35d679-3b09-4e39-aa1e-47214396ae81" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "77e563c7-2cdf-403a-9349-58d3ef7bd8b0", + "name": "create hvigor project model", + "description": "Initialize hvigor project model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602538141291, + "endTime": 340602542900125 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "08951db9-f0cc-4d50-bf5d-d89f2eaf8c8a", + "logId": "254cc277-afc8-4ae0-a341-6aecdf9f4677" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c69c2635-b11c-4ed5-9dfc-a8ae46fb62db", + "name": "configure hvigor plugin", + "description": "Configure hvigor plugin.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602542912458, + "endTime": 340603123049541 + }, + "additional": { + "children": [ + "9e451005-e14e-4654-b872-72b138a97b40", + "45a87a0c-d74d-4d13-9237-679626bef528", + "1ace27d8-8dfd-43d6-8bdb-618a26b9104f", + "e0486465-327e-4d8d-8115-e580ebd88686", + "cb9ddb63-f156-4c5c-977e-5edbd645ed87", + "c8b7bc75-cddc-451d-914b-844894687896", + "5f8edd8c-9b4c-43f1-b8e6-784fdf629691", + "930eeeae-22c3-4ec8-8270-ebc323f33688", + "2c1c9dc3-fdd3-41ef-ad30-6a0c6f5c4f9a" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "08951db9-f0cc-4d50-bf5d-d89f2eaf8c8a", + "logId": "c322382f-f1e6-460d-877d-457a67d60912" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3a804ace-9dd6-4440-917b-2e526550a122", + "name": "build task graph", + "description": "Build task graph.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603123062125, + "endTime": 340603123970333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "08951db9-f0cc-4d50-bf5d-d89f2eaf8c8a", + "logId": "99af1333-d126-450b-9961-c95d1643e902" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8ea710cb-a5f5-4ae8-8fe9-d7419c99bae3", + "name": "init task execution option", + "description": "Init task execution option.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603123972375, + "endTime": 340603123975791 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "08951db9-f0cc-4d50-bf5d-d89f2eaf8c8a", + "logId": "9708e716-ceae-4ae6-93c5-61c18f9322be" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "53ae1665-b003-4066-bead-0225d6653566", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602539983625, + "endTime": 340602540083875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "08951db9-f0cc-4d50-bf5d-d89f2eaf8c8a", + "logId": "ae7f0bff-b3cf-4fc3-809c-9a8221cd7b54" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ae7f0bff-b3cf-4fc3-809c-9a8221cd7b54", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602539983625, + "endTime": 340602540083875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "53ae1665-b003-4066-bead-0225d6653566", + "parent": "ab35d679-3b09-4e39-aa1e-47214396ae81" + } + }, + { + "head": { + "id": "c7fb63e7-7613-432b-a01c-568fa00cccff", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602540734708, + "endTime": 340602540748541 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "08951db9-f0cc-4d50-bf5d-d89f2eaf8c8a", + "logId": "14bf872a-21ee-4a66-85ba-2c611113b511" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "14bf872a-21ee-4a66-85ba-2c611113b511", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602540734708, + "endTime": 340602540748541 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "c7fb63e7-7613-432b-a01c-568fa00cccff", + "parent": "ab35d679-3b09-4e39-aa1e-47214396ae81" + } + }, + { + "head": { + "id": "1b3d4184-4b33-4e9e-bd31-1657433d5496", + "name": "Hvigor init with startParameters:{\n hvigorfileTypeCheck: false,\n parallelExecution: true,\n incrementalExecution: true,\n printStackTrace: false,\n daemon: false,\n analyze: 0,\n logLevel: Level { level: 20000, levelStr: 'INFO', colour: 'green' },\n optimizationStrategy: 'memory',\n hotCompile: undefined,\n hotReloadBuild: undefined,\n customizedParam: undefined\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602540896583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "07b81890-8d0a-4392-8078-458a73a4a134", + "name": "Cache service initialization finished in 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602542822333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "254cc277-afc8-4ae0-a341-6aecdf9f4677", + "name": "create hvigor project model", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602538141291, + "endTime": 340602542900125 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "77e563c7-2cdf-403a-9349-58d3ef7bd8b0", + "parent": "ab35d679-3b09-4e39-aa1e-47214396ae81" + } + }, + { + "head": { + "id": "9e451005-e14e-4654-b872-72b138a97b40", + "name": "init configuration", + "description": "Initialize configuration.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602543064000, + "endTime": 340602543074000 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "c69c2635-b11c-4ed5-9dfc-a8ae46fb62db", + "logId": "ab441f3f-5b32-4009-ab95-0ba861662032" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "45a87a0c-d74d-4d13-9237-679626bef528", + "name": "configure project task", + "description": "Configure project task.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602543087875, + "endTime": 340602543317041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "c69c2635-b11c-4ed5-9dfc-a8ae46fb62db", + "logId": "67869f92-d4a9-442a-b651-c11eb31e5495" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "1ace27d8-8dfd-43d6-8bdb-618a26b9104f", + "name": "eval project", + "description": "Evaluate project.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602543355958, + "endTime": 340603083148458 + }, + "additional": { + "children": [ + "9b3829b9-9c84-4eba-8fef-4217d0a4a346", + "d6ff8bbd-f94e-4c5d-bc41-2fdcd91e61fb", + "da00e6ac-28ac-46da-b031-f6c7cc8db8eb" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "c69c2635-b11c-4ed5-9dfc-a8ae46fb62db", + "logId": "cf2275b8-a389-475a-a58a-16030e1d4ab1" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e0486465-327e-4d8d-8115-e580ebd88686", + "name": "eval modules", + "description": "Evaluate modules.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603083267541, + "endTime": 340603116130041 + }, + "additional": { + "children": [ + "72b34e5f-1eca-40a0-9eda-5e0d366e9d54", + "3a6d473f-a6c6-4951-94dc-b4599f54a253" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "c69c2635-b11c-4ed5-9dfc-a8ae46fb62db", + "logId": "110be9aa-e0d2-4fec-ba44-7ca55e8aab4d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "cb9ddb63-f156-4c5c-977e-5edbd645ed87", + "name": "add config dependencies", + "description": "Add configuration dependencies.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603116149875, + "endTime": 340603116150333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "c69c2635-b11c-4ed5-9dfc-a8ae46fb62db", + "logId": "fff59eb8-4ffe-479f-9fe4-394910f6cc73" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c8b7bc75-cddc-451d-914b-844894687896", + "name": "ohpm install", + "description": "Ohpm install event.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603116286666, + "endTime": 340603118754083 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "c69c2635-b11c-4ed5-9dfc-a8ae46fb62db", + "logId": "73a4a640-b552-42a1-866a-16421e34e1de" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "5f8edd8c-9b4c-43f1-b8e6-784fdf629691", + "name": "eval hook", + "description": "EvaluateEvent hook.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603118760083, + "endTime": 340603123017833 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "c69c2635-b11c-4ed5-9dfc-a8ae46fb62db", + "logId": "aab4d490-ff71-4074-a3fb-adef63eae202" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "930eeeae-22c3-4ec8-8270-ebc323f33688", + "name": "fin configuration", + "description": "Finish configuration.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603123022625, + "endTime": 340603123046166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "c69c2635-b11c-4ed5-9dfc-a8ae46fb62db", + "logId": "9156177d-d271-42d6-ac73-e9e2f29447a5" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ab441f3f-5b32-4009-ab95-0ba861662032", + "name": "init configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602543064000, + "endTime": 340602543074000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9e451005-e14e-4654-b872-72b138a97b40", + "parent": "c322382f-f1e6-460d-877d-457a67d60912" + } + }, + { + "head": { + "id": "67869f92-d4a9-442a-b651-c11eb31e5495", + "name": "configure project task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602543087875, + "endTime": 340602543317041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "45a87a0c-d74d-4d13-9237-679626bef528", + "parent": "c322382f-f1e6-460d-877d-457a67d60912" + } + }, + { + "head": { + "id": "9b3829b9-9c84-4eba-8fef-4217d0a4a346", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602543425000, + "endTime": 340602543440708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "1ace27d8-8dfd-43d6-8bdb-618a26b9104f", + "logId": "3b118096-3855-4519-a2bf-53e514fbc541" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3b118096-3855-4519-a2bf-53e514fbc541", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602543425000, + "endTime": 340602543440708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9b3829b9-9c84-4eba-8fef-4217d0a4a346", + "parent": "cf2275b8-a389-475a-a58a-16030e1d4ab1" + } + }, + { + "head": { + "id": "d6ff8bbd-f94e-4c5d-bc41-2fdcd91e61fb", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602543550416, + "endTime": 340603083089333 + }, + "additional": { + "children": [ + "4477d297-2805-4164-8a86-ff37b58a0eaf", + "fff9affb-df99-4461-a2d1-82e24c4d9205" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "1ace27d8-8dfd-43d6-8bdb-618a26b9104f", + "logId": "7e098919-2eea-43a1-ac18-3941646e2345" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "4477d297-2805-4164-8a86-ff37b58a0eaf", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602543550791, + "endTime": 340602977048000 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "d6ff8bbd-f94e-4c5d-bc41-2fdcd91e61fb", + "logId": "ef6fc64e-3d3b-4463-acd0-54e4fff90c91" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "fff9affb-df99-4461-a2d1-82e24c4d9205", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602977060541, + "endTime": 340603083082875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "d6ff8bbd-f94e-4c5d-bc41-2fdcd91e61fb", + "logId": "b9ee8e77-307a-44d3-8eb9-4aa2c0cf3809" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8b6a71ef-8273-4908-a209-7e6176c57aac", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602543552375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cd15c9ed-8ac1-4ea3-bc36-aac984a84fe8", + "name": "hvigorfile, require result: { default: { system: [Function: appTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602976917166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ef6fc64e-3d3b-4463-acd0-54e4fff90c91", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602543550791, + "endTime": 340602977048000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "4477d297-2805-4164-8a86-ff37b58a0eaf", + "parent": "7e098919-2eea-43a1-ac18-3941646e2345" + } + }, + { + "head": { + "id": "acd59adf-cf4f-46c6-ab68-41dcef020bcf", + "name": "hvigorfile, binding system plugins [Function: appTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602977106041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "860084bb-e6f0-42b1-b960-f34a63499aca", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602977613541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e177e119-0684-4370-adea-91f78772ddfc", + "name": "App plugin prepare start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602977660333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dc5390b5-f3e3-4058-9b42-f8300000ede0", + "name": "App plugin prepare end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602977701416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a4443654-48ed-4e09-8a29-ab405e291668", + "name": "App plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602977715958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9f1c816c-09d7-4df2-9511-59172e3ecd31", + "name": "App plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603058605083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6b730115-6f3e-42d1-af30-89eeba2ed3ab", + "name": "App plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603058827291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "54bd18b2-c0af-4672-a163-7f1e09b8cf1c", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603058845666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e914bf54-f1c2-4c05-bbb2-3b1daa355113", + "name": "Start initialize project's product build option map with build mode debug.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603059521000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ee4e3b51-2c02-41b4-a804-88afef5b1d49", + "name": "Picking option from product 'default' with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603059655750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f19cb3c8-e884-43bc-a368-3ac842d7d155", + "name": "Product 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603059832666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "818c5055-6151-41fd-9367-6aad73502a35", + "name": "End initialize project's product build option map with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603059860333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "91944ea6-d2c7-48e0-934b-8da82d4473d9", + "name": "Obtain build option for product 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603060725125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ec624b0c-7c49-4055-9ff2-d93e0c74adb1", + "name": "No signingConfig found, initRemoteHspCache failed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603061250666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b84207f5-11b3-47c7-aa0d-d2675f276b85", + "name": "harmonyOS sdk scan", + "description": "HarmonyOS sdk scan", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603062198083, + "endTime": 340603063028875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Other", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0af3d164-9a94-4b72-b97d-1cc2735690ab", + "name": "Local scan or download HarmonyOS sdk components toolchains,ets,js,native,previewer", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603062209000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b3995226-16fd-4c8b-b8e8-e1fdb7b1d244", + "name": "hmscore sdk scan", + "description": "Hmscore sdk scan", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603063091833, + "endTime": 340603063252750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Other", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2f7b16fb-c1fa-4954-893b-dd68ddff6a33", + "name": "Local scan or download hmscore sdk components toolchains,ets,native", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603063095875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c623b556-8819-45eb-ae4a-52c6ccb3adf4", + "name": "Start recording SDK configuration permission data.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603063999666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "421f9b25-b004-443b-87ee-902240169e3c", + "name": "Sdk init in 19 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603080360666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "306dc186-64e6-4814-a60f-6a440b6d04ab", + "name": "sdkVersion", + "description": "6.0.2.130", + "type": "mark" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603080482333 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 3, + "second": 49 + }, + "markType": "other" + } + }, + { + "head": { + "id": "bbd4c95d-0dc1-4c69-a404-528745426f96", + "name": "caseSensitiveCheckOn", + "description": "caseSensitiveCheck check is on", + "type": "mark" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603080517250 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 3, + "second": 49 + }, + "markType": "other" + } + }, + { + "head": { + "id": "5cc26b79-3beb-45d5-8a8d-f00e93683bb6", + "name": "Project task initialization takes 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603082995166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c0de27aa-91b3-4c7e-8b41-bae8f5eaeb85", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603083055708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0a68a589-fcab-4fa8-a28e-5710f71e8ca9", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603083068250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3e4af61f-c37b-4367-8376-d30b09bf3f43", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603083076125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b9ee8e77-307a-44d3-8eb9-4aa2c0cf3809", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602977060541, + "endTime": 340603083082875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "fff9affb-df99-4461-a2d1-82e24c4d9205", + "parent": "7e098919-2eea-43a1-ac18-3941646e2345" + } + }, + { + "head": { + "id": "7e098919-2eea-43a1-ac18-3941646e2345", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602543550416, + "endTime": 340603083089333 + }, + "additional": { + "logType": "info", + "children": [ + "ef6fc64e-3d3b-4463-acd0-54e4fff90c91", + "b9ee8e77-307a-44d3-8eb9-4aa2c0cf3809" + ], + "durationId": "d6ff8bbd-f94e-4c5d-bc41-2fdcd91e61fb", + "parent": "cf2275b8-a389-475a-a58a-16030e1d4ab1" + } + }, + { + "head": { + "id": "da00e6ac-28ac-46da-b031-f6c7cc8db8eb", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603083129458, + "endTime": 340603083141125 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "1ace27d8-8dfd-43d6-8bdb-618a26b9104f", + "logId": "32163653-c207-4e71-b0f1-63370d64b17a" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "32163653-c207-4e71-b0f1-63370d64b17a", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603083129458, + "endTime": 340603083141125 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "da00e6ac-28ac-46da-b031-f6c7cc8db8eb", + "parent": "cf2275b8-a389-475a-a58a-16030e1d4ab1" + } + }, + { + "head": { + "id": "cf2275b8-a389-475a-a58a-16030e1d4ab1", + "name": "eval project", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602543355958, + "endTime": 340603083148458 + }, + "additional": { + "logType": "info", + "children": [ + "3b118096-3855-4519-a2bf-53e514fbc541", + "7e098919-2eea-43a1-ac18-3941646e2345", + "32163653-c207-4e71-b0f1-63370d64b17a" + ], + "durationId": "1ace27d8-8dfd-43d6-8bdb-618a26b9104f", + "parent": "c322382f-f1e6-460d-877d-457a67d60912" + } + }, + { + "head": { + "id": "72b34e5f-1eca-40a0-9eda-5e0d366e9d54", + "name": "eval submodule", + "description": "Evaluate submodule.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603083271875, + "endTime": 340603110128458 + }, + "additional": { + "children": [ + "f05db881-20d0-4baf-a1da-d858d0f7459b", + "067a9a52-1cec-4e8f-9276-eeaf6d82e4a3", + "3bfc82d1-cc45-46db-9711-2cf8f429503a" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e0486465-327e-4d8d-8115-e580ebd88686", + "logId": "48ea0045-d947-48cf-8510-0763c2f1b61d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f05db881-20d0-4baf-a1da-d858d0f7459b", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603083311583, + "endTime": 340603083317041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "72b34e5f-1eca-40a0-9eda-5e0d366e9d54", + "logId": "830524fc-bbd7-47fc-9e38-202cc5e0e116" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "830524fc-bbd7-47fc-9e38-202cc5e0e116", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603083311583, + "endTime": 340603083317041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f05db881-20d0-4baf-a1da-d858d0f7459b", + "parent": "48ea0045-d947-48cf-8510-0763c2f1b61d" + } + }, + { + "head": { + "id": "067a9a52-1cec-4e8f-9276-eeaf6d82e4a3", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603083333666, + "endTime": 340603109717583 + }, + "additional": { + "children": [ + "31c91ccc-8c55-4706-bc1e-a3775e731646", + "9721bd93-469e-44f0-bf02-a2b8e6189283" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "72b34e5f-1eca-40a0-9eda-5e0d366e9d54", + "logId": "14a2e97c-97dd-4204-89d9-ac090f16a7b2" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "31c91ccc-8c55-4706-bc1e-a3775e731646", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603083333833, + "endTime": 340603086425958 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "067a9a52-1cec-4e8f-9276-eeaf6d82e4a3", + "logId": "ccb430f4-faa8-4d97-b375-5722a6736b41" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9721bd93-469e-44f0-bf02-a2b8e6189283", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603086430416, + "endTime": 340603109711708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "067a9a52-1cec-4e8f-9276-eeaf6d82e4a3", + "logId": "5d773ca1-263e-4d43-8ed5-c85601abaa82" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0d182009-20ad-4564-8f86-f0f0250ca724", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603083334666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "824cc1d1-8fac-4441-b2a3-b27f0d9124a1", + "name": "hvigorfile, require result: { default: { system: [Function: harTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603086392833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ccb430f4-faa8-4d97-b375-5722a6736b41", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603083333833, + "endTime": 340603086425958 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "31c91ccc-8c55-4706-bc1e-a3775e731646", + "parent": "14a2e97c-97dd-4204-89d9-ac090f16a7b2" + } + }, + { + "head": { + "id": "18cb556b-fd46-4238-8960-5aa3933850a3", + "name": "hvigorfile, binding system plugins [Function: harTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603086434250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e275553c-d94a-4124-b81d-d714135a41e1", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603086471416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8a151e01-8c7d-474f-8527-95a1f151a9e3", + "name": "Har plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603086492041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ff499908-4a11-42cf-a52a-0be01c1721f8", + "name": "failed to load cangjie to dynamically generate schemas: Error: Cannot find module '@ohos/cangjie-build-support/index'\nRequire stack:\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/hooks/cangjie-register.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/strategy/stage-init-strategy.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/abstract-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/factory/plugin-factory.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/index.js\n- /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/boot/index.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/cli/main/cli.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/bin/hvigor.js", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603086789041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fa0e5fbb-9eb4-455c-95b2-1b36dc9fb076", + "name": "Start initialize module-target build option map, moduleName=xuqmSdk, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603106502000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f18cc440-0534-4a99-a981-b108a968eff0", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603106610875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "63bb093a-4809-45cb-bb49-7dbf20854b32", + "name": "Module 'xuqmSdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603106868250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9b82c0c1-eea5-4eb6-923c-7cac5f595a33", + "name": "End initialize module-target build option map, moduleName=xuqmSdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603106882958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "151a2dbe-4e87-4d23-b4fa-b2d279a201cf", + "name": "Start initialize module-target build option map, moduleName=xuqmSdk, buildMode=release", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603106909500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "415103f4-56b8-4922-8f07-ff5f4943329d", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603106926791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f831f041-a75e-4640-b7b1-0a75fa6a3808", + "name": "Module 'xuqmSdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603107099875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4f8b8bd8-6a70-4c07-894f-fc7921216192", + "name": "End initialize module-target build option map, moduleName=xuqmSdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603107112208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f3c4d249-c1f4-4ecb-931c-1efd2adcd99c", + "name": "Start initialize module-target build option map, moduleName=xuqmSdk, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603107200958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ff261c2f-1e08-46f8-86f2-7862f6544838", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603107216250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "edff2fd5-9424-43c3-81a7-2bee5318ce00", + "name": "Module 'xuqmSdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603107347500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ce855eb1-1f9e-48df-870b-4494da5f2bf4", + "name": "End initialize module-target build option map, moduleName=xuqmSdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603107355208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1c0d5a93-81a7-40e3-a68b-4d13c7ceaa33", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603107436750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c2f4b632-b7e5-430d-89dc-9fb059637f2d", + "name": "Module xuqmSdk task initialization takes 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603109587041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9948717d-df3e-4e01-8dba-e197923cea8b", + "name": "Har plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603109624708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3805a160-adaa-4618-8bb8-7c4f269c0a56", + "name": "Har plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603109644541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bee1750f-3118-4b17-b51b-8a9aa9663a3f", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603109651333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fe15c54e-f48d-4b01-b268-431ea431ea30", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603109684083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5e5ad87d-53ac-49e2-9db3-96b48fb6332c", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603109695375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "18601742-2359-4de8-9dd9-1ac56a818d4f", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603109701916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5d773ca1-263e-4d43-8ed5-c85601abaa82", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603086430416, + "endTime": 340603109711708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9721bd93-469e-44f0-bf02-a2b8e6189283", + "parent": "14a2e97c-97dd-4204-89d9-ac090f16a7b2" + } + }, + { + "head": { + "id": "14a2e97c-97dd-4204-89d9-ac090f16a7b2", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603083333666, + "endTime": 340603109717583 + }, + "additional": { + "logType": "info", + "children": [ + "ccb430f4-faa8-4d97-b375-5722a6736b41", + "5d773ca1-263e-4d43-8ed5-c85601abaa82" + ], + "durationId": "067a9a52-1cec-4e8f-9276-eeaf6d82e4a3", + "parent": "48ea0045-d947-48cf-8510-0763c2f1b61d" + } + }, + { + "head": { + "id": "3bfc82d1-cc45-46db-9711-2cf8f429503a", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603110118833, + "endTime": 340603110123250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "72b34e5f-1eca-40a0-9eda-5e0d366e9d54", + "logId": "dc610ee2-fe27-491d-9334-45f2fae6c700" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "dc610ee2-fe27-491d-9334-45f2fae6c700", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603110118833, + "endTime": 340603110123250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3bfc82d1-cc45-46db-9711-2cf8f429503a", + "parent": "48ea0045-d947-48cf-8510-0763c2f1b61d" + } + }, + { + "head": { + "id": "48ea0045-d947-48cf-8510-0763c2f1b61d", + "name": "eval submodule", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603083271875, + "endTime": 340603110128458 + }, + "additional": { + "logType": "info", + "children": [ + "830524fc-bbd7-47fc-9e38-202cc5e0e116", + "14a2e97c-97dd-4204-89d9-ac090f16a7b2", + "dc610ee2-fe27-491d-9334-45f2fae6c700" + ], + "durationId": "72b34e5f-1eca-40a0-9eda-5e0d366e9d54", + "parent": "110be9aa-e0d2-4fec-ba44-7ca55e8aab4d" + } + }, + { + "head": { + "id": "3a6d473f-a6c6-4951-94dc-b4599f54a253", + "name": "eval submodule", + "description": "Evaluate submodule.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603110141875, + "endTime": 340603116125250 + }, + "additional": { + "children": [ + "a989b764-e095-4dc5-b1b9-6ccd3a71a992", + "25995343-bb22-4bdd-a23e-d77215c99f25", + "dda02cb1-e94b-4031-a9d0-0606de3348a1" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e0486465-327e-4d8d-8115-e580ebd88686", + "logId": "8b4ffeb2-0282-4ae9-a84a-479da27108bc" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a989b764-e095-4dc5-b1b9-6ccd3a71a992", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603110178166, + "endTime": 340603110180291 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "3a6d473f-a6c6-4951-94dc-b4599f54a253", + "logId": "325e97e9-997e-4585-8c57-447c2754f2e2" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "325e97e9-997e-4585-8c57-447c2754f2e2", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603110178166, + "endTime": 340603110180291 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "a989b764-e095-4dc5-b1b9-6ccd3a71a992", + "parent": "8b4ffeb2-0282-4ae9-a84a-479da27108bc" + } + }, + { + "head": { + "id": "25995343-bb22-4bdd-a23e-d77215c99f25", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603110195916, + "endTime": 340603116086416 + }, + "additional": { + "children": [ + "de94087f-bbbb-4907-9574-05ff613dc581", + "00b1824f-46db-4c22-8f5d-97f29d909f70" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "3a6d473f-a6c6-4951-94dc-b4599f54a253", + "logId": "ce4e0601-5caf-45d5-87c6-504d9c6a472e" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "de94087f-bbbb-4907-9574-05ff613dc581", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603110196083, + "endTime": 340603113010583 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "25995343-bb22-4bdd-a23e-d77215c99f25", + "logId": "77fc0496-2ed5-46ef-a6ab-029647cf7317" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "00b1824f-46db-4c22-8f5d-97f29d909f70", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603113017416, + "endTime": 340603116080625 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "25995343-bb22-4bdd-a23e-d77215c99f25", + "logId": "eff0d90f-3630-4d3b-a312-79dd4da25c05" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "fe4d1466-b3a3-4a75-a414-db4b3511a1e6", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603110197041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "87d87e0d-3418-4660-99cb-66a198e59b7f", + "name": "hvigorfile, require result: { default: { system: [Function: hapTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603112975500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "77fc0496-2ed5-46ef-a6ab-029647cf7317", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603110196083, + "endTime": 340603113010583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "de94087f-bbbb-4907-9574-05ff613dc581", + "parent": "ce4e0601-5caf-45d5-87c6-504d9c6a472e" + } + }, + { + "head": { + "id": "c5855e12-b540-4321-bed7-64eb36b65da4", + "name": "hvigorfile, binding system plugins [Function: hapTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603113021708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cc8482a1-de89-45ee-ba64-fcf468f94bf9", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603113066458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f1c475ce-10b5-418a-95f3-98017acc36f4", + "name": "Hap plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603113083500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "51627066-ba03-4e3c-83fd-f4c46e2f5e7c", + "name": "failed to load cangjie to dynamically generate schemas: Error: Cannot find module '@ohos/cangjie-build-support/index'\nRequire stack:\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/hooks/cangjie-register.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/strategy/stage-init-strategy.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/abstract-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/factory/plugin-factory.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/index.js\n- /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/boot/index.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/cli/main/cli.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/bin/hvigor.js", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603113185083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "76c010d3-cbc7-4651-a8c7-d2c0a23a75a6", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603114877708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "13f177f0-a269-4288-b863-6a1c958f0d0f", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603114906000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d8536b93-c148-463b-bf95-c88f18ea44c7", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603114964166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bcdb60f1-6cbc-464a-9bbd-a00b2a9f58aa", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603114972083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "51e6c00c-878d-4d07-8c55-5c9a691587d6", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=release", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603114987041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "85f36f47-d126-4d6a-9501-0faf009a4c54", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603114996791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "47976fbd-4292-4fb1-8fcf-692ff9321d07", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603115039875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "299ecd89-73af-4f32-93e8-280036b84d39", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603115047375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bc3814dc-e3f7-460d-827f-d67a956ef01b", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603115067000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5343805d-4194-47b0-8be4-adebd134fad9", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603115076333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "13b450fa-e4bd-43e7-9492-9eed3fefa4dc", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603115110166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "41731b25-6882-43f4-97f4-2610018717eb", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603115116291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2f98549a-622e-4491-a911-01fe97f5216f", + "name": "Obtain build option for module 'entry' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603115127208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "817613b8-a31a-4ad5-b471-650293add059", + "name": "Module entry task initialization takes 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603115954375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "65920fb4-7a79-4d0d-aed3-fc71ab108fb4", + "name": "Hap plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603116003958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f5db6c44-cc7e-4113-8d00-c7e42291c2ae", + "name": "Hap plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603116014416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bcdd0638-4888-4337-a119-9647fead082e", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603116020875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "09c5e8fd-5033-4679-9c59-8227a7a4a3ac", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603116056166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0d000bea-c56f-4ea6-829f-beddc8f9ce52", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603116065583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "df441081-f2bd-44a6-b732-0793910982b0", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603116072000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "eff0d90f-3630-4d3b-a312-79dd4da25c05", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603113017416, + "endTime": 340603116080625 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "00b1824f-46db-4c22-8f5d-97f29d909f70", + "parent": "ce4e0601-5caf-45d5-87c6-504d9c6a472e" + } + }, + { + "head": { + "id": "ce4e0601-5caf-45d5-87c6-504d9c6a472e", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603110195916, + "endTime": 340603116086416 + }, + "additional": { + "logType": "info", + "children": [ + "77fc0496-2ed5-46ef-a6ab-029647cf7317", + "eff0d90f-3630-4d3b-a312-79dd4da25c05" + ], + "durationId": "25995343-bb22-4bdd-a23e-d77215c99f25", + "parent": "8b4ffeb2-0282-4ae9-a84a-479da27108bc" + } + }, + { + "head": { + "id": "dda02cb1-e94b-4031-a9d0-0606de3348a1", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603116118166, + "endTime": 340603116121166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "3a6d473f-a6c6-4951-94dc-b4599f54a253", + "logId": "a4b41b6b-1949-4c7c-8ac6-774ba7cb5960" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a4b41b6b-1949-4c7c-8ac6-774ba7cb5960", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603116118166, + "endTime": 340603116121166 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "dda02cb1-e94b-4031-a9d0-0606de3348a1", + "parent": "8b4ffeb2-0282-4ae9-a84a-479da27108bc" + } + }, + { + "head": { + "id": "8b4ffeb2-0282-4ae9-a84a-479da27108bc", + "name": "eval submodule", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603110141875, + "endTime": 340603116125250 + }, + "additional": { + "logType": "info", + "children": [ + "325e97e9-997e-4585-8c57-447c2754f2e2", + "ce4e0601-5caf-45d5-87c6-504d9c6a472e", + "a4b41b6b-1949-4c7c-8ac6-774ba7cb5960" + ], + "durationId": "3a6d473f-a6c6-4951-94dc-b4599f54a253", + "parent": "110be9aa-e0d2-4fec-ba44-7ca55e8aab4d" + } + }, + { + "head": { + "id": "110be9aa-e0d2-4fec-ba44-7ca55e8aab4d", + "name": "eval modules", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603083267541, + "endTime": 340603116130041 + }, + "additional": { + "logType": "info", + "children": [ + "48ea0045-d947-48cf-8510-0763c2f1b61d", + "8b4ffeb2-0282-4ae9-a84a-479da27108bc" + ], + "durationId": "e0486465-327e-4d8d-8115-e580ebd88686", + "parent": "c322382f-f1e6-460d-877d-457a67d60912" + } + }, + { + "head": { + "id": "fff59eb8-4ffe-479f-9fe4-394910f6cc73", + "name": "add config dependencies", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603116149875, + "endTime": 340603116150333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "cb9ddb63-f156-4c5c-977e-5edbd645ed87", + "parent": "c322382f-f1e6-460d-877d-457a67d60912" + } + }, + { + "head": { + "id": "2c1c9dc3-fdd3-41ef-ad30-6a0c6f5c4f9a", + "name": "\"nodesEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603116156791, + "endTime": 340603116283750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "c69c2635-b11c-4ed5-9dfc-a8ae46fb62db", + "logId": "576111a4-2a20-43f2-a068-0e8e6b445091" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c97d4ae3-54ce-44ba-8869-13af0dafdcaf", + "name": "project has submodules:xuqmSdk,entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603116185458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dea0e175-dac9-47fd-b434-c1e0416588f8", + "name": "module:xuqmSdk no need to execute packageHap", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603116247541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "576111a4-2a20-43f2-a068-0e8e6b445091", + "name": "\"nodesEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603116156791, + "endTime": 340603116283750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "2c1c9dc3-fdd3-41ef-ad30-6a0c6f5c4f9a", + "parent": "c322382f-f1e6-460d-877d-457a67d60912" + } + }, + { + "head": { + "id": "f935e568-1a7f-4fa0-af86-2a09fb24139f", + "name": "start to load updatedOhPackageInfo to the disk", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603116864708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "26ca52ed-f1f7-4215-a3f3-08a8ea0c6faa", + "name": "load to the disk finished", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603118537458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "73a4a640-b552-42a1-866a-16421e34e1de", + "name": "ohpm install", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603116286666, + "endTime": 340603118754083 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "c8b7bc75-cddc-451d-914b-844894687896", + "parent": "c322382f-f1e6-460d-877d-457a67d60912" + } + }, + { + "head": { + "id": "46b3e702-bfa0-4f3e-ad76-e016f6062d56", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603118807041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3f53417d-edf1-460d-aca4-627dedef8963", + "name": "Module XuqmGroup-HarmonySDK Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603119493625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c3873e60-9976-41ea-87d1-b735361305c7", + "name": "Module XuqmGroup-HarmonySDK's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603119503291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "53f39287-a5e9-45a1-b7d8-78488cf68b6e", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603120084916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "262f087d-118d-4904-b49e-c8ff819dcd3d", + "name": "Module xuqmSdk Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603120460583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8db25209-012a-4509-b559-3ae1544388ca", + "name": "Module xuqmSdk's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603120469625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d0b0d6d9-aba6-4dfd-9b27-1dd88f8c191a", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603121661041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "14405798-b052-41fe-b4fb-74beaa320aff", + "name": "Module entry Collected Dependency: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603122495833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7b42f8fa-346c-4a62-a474-f15acf3852a3", + "name": "Module entry's total dependency: 1", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603122505791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "aab4d490-ff71-4074-a3fb-adef63eae202", + "name": "eval hook", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603118760083, + "endTime": 340603123017833 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "5f8edd8c-9b4c-43f1-b8e6-784fdf629691", + "parent": "c322382f-f1e6-460d-877d-457a67d60912" + } + }, + { + "head": { + "id": "db1aa995-6e4e-45f6-8081-2d586e9bcb17", + "name": "Configuration phase cost:580 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603123036666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9156177d-d271-42d6-ac73-e9e2f29447a5", + "name": "fin configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603123022625, + "endTime": 340603123046166 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "930eeeae-22c3-4ec8-8270-ebc323f33688", + "parent": "c322382f-f1e6-460d-877d-457a67d60912" + } + }, + { + "head": { + "id": "c322382f-f1e6-460d-877d-457a67d60912", + "name": "configure hvigor plugin", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602542912458, + "endTime": 340603123049541 + }, + "additional": { + "logType": "info", + "children": [ + "ab441f3f-5b32-4009-ab95-0ba861662032", + "67869f92-d4a9-442a-b651-c11eb31e5495", + "cf2275b8-a389-475a-a58a-16030e1d4ab1", + "110be9aa-e0d2-4fec-ba44-7ca55e8aab4d", + "fff59eb8-4ffe-479f-9fe4-394910f6cc73", + "73a4a640-b552-42a1-866a-16421e34e1de", + "aab4d490-ff71-4074-a3fb-adef63eae202", + "9156177d-d271-42d6-ac73-e9e2f29447a5", + "576111a4-2a20-43f2-a068-0e8e6b445091" + ], + "durationId": "c69c2635-b11c-4ed5-9dfc-a8ae46fb62db", + "parent": "ab35d679-3b09-4e39-aa1e-47214396ae81" + } + }, + { + "head": { + "id": "ff207e63-916b-4132-9ee3-95e9c595507b", + "name": "\"taskGraphResolved\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603123954416, + "endTime": 340603123967166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "08951db9-f0cc-4d50-bf5d-d89f2eaf8c8a", + "logId": "bd9f4a5c-00a0-4371-b9e2-0a0cb1d43239" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "bd9f4a5c-00a0-4371-b9e2-0a0cb1d43239", + "name": "\"taskGraphResolved\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603123954416, + "endTime": 340603123967166 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ff207e63-916b-4132-9ee3-95e9c595507b", + "parent": "ab35d679-3b09-4e39-aa1e-47214396ae81" + } + }, + { + "head": { + "id": "99af1333-d126-450b-9961-c95d1643e902", + "name": "build task graph", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603123062125, + "endTime": 340603123970333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3a804ace-9dd6-4440-917b-2e526550a122", + "parent": "ab35d679-3b09-4e39-aa1e-47214396ae81" + } + }, + { + "head": { + "id": "9708e716-ceae-4ae6-93c5-61c18f9322be", + "name": "init task execution option", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603123972375, + "endTime": 340603123975791 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "8ea710cb-a5f5-4ae8-8fe9-d7419c99bae3", + "parent": "ab35d679-3b09-4e39-aa1e-47214396ae81" + } + }, + { + "head": { + "id": "ab35d679-3b09-4e39-aa1e-47214396ae81", + "name": "init", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602538137333, + "endTime": 340603123979000 + }, + "additional": { + "logType": "info", + "children": [ + "254cc277-afc8-4ae0-a341-6aecdf9f4677", + "c322382f-f1e6-460d-877d-457a67d60912", + "99af1333-d126-450b-9961-c95d1643e902", + "9708e716-ceae-4ae6-93c5-61c18f9322be", + "ae7f0bff-b3cf-4fc3-809c-9a8221cd7b54", + "14bf872a-21ee-4a66-85ba-2c611113b511", + "bd9f4a5c-00a0-4371-b9e2-0a0cb1d43239" + ], + "durationId": "08951db9-f0cc-4d50-bf5d-d89f2eaf8c8a" + } + }, + { + "head": { + "id": "2b164b7b-fd6a-4999-8a68-d50712e3f155", + "name": "Configuration task cost before running: 588 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603124340250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ae2f18c0-f907-40d5-8527-acbcb6922591", + "name": "entry:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603126351125, + "endTime": 340603180742625 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Verification", + "taskRunReasons": [ + "The input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5' has been changed." + ], + "detailId": "718cc78d-428e-461f-8548-01fe3e403098", + "logId": "44f43219-885f-4d54-b557-8b2104d995e5" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "718cc78d-428e-461f-8548-01fe3e403098", + "name": "create entry:default@PreBuild task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603124592125 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "ae2f18c0-f907-40d5-8527-acbcb6922591" + } + }, + { + "head": { + "id": "73f29937-be4a-486e-99c8-b4fc872f6487", + "name": "Executing task :entry:default@PreBuild", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603126362916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8d8fe970-b467-48ae-a7bc-58ae2e0edb8c", + "name": "The project has not explicitly set the 'targetSdkVersion' version at build-profile.json5. It is recommended to configure it. Reference: https://developer.huawei.com/consumer/cn/doc/harmonyos-guides/ide-hvigor-build-profile-app#section45865492619", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603126549000 + }, + "additional": { + "logType": "warn", + "children": [] + } + }, + { + "head": { + "id": "e17c9df4-b470-49d6-9a2a-bd6a7110bc90", + "name": "Task 'entry:default@PreBuild' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603128072416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a401ee4d-19a4-4702-84fb-c1328b64ebc1", + "name": "entry:default@PreBuild is not up-to-date, since the input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5' has been changed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603129671375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "80a6c823-84aa-44f0-9a2b-0d174bf964ce", + "name": "Incremental task entry:default@PreBuild pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603129715125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "946ffd5e-b694-4e70-885f-fe64dd3e6dcf", + "name": "Missing module info for local modules '@xuqm/harmony-sdk'. Check project-level build-profile.json5. ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603179698916 + }, + "additional": { + "logType": "warn", + "children": [] + } + }, + { + "head": { + "id": "77a6ad3d-d0c0-418c-b677-18de7de18ed2", + "name": "current product is not Atomic service.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603180207666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "832f2770-282b-4b79-80a9-3378bb4e312d", + "name": "Use tool [darwin: JAVA_HOME, CLASSPATH]\n [ { JAVA_HOME: undefined }, { CLASSPATH: undefined } ]", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603180301458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1df8b5d1-9f7e-4935-aeb9-335bc67b3d9e", + "name": "Use tool [darwin: NODE_HOME]\n [ { NODE_HOME: undefined } ]", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603180327666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dae73dcf-af61-46e8-acc4-8abb1c0430dd", + "name": "entry : default@PreBuild cost memory 3.858978271484375", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603180646958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "969b6565-a29f-4cf6-9068-dcc314a691c0", + "name": "runTaskFromQueue task cost before running: 645 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603180697083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "44f43219-885f-4d54-b557-8b2104d995e5", + "name": "Finished :entry:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603126351125, + "endTime": 340603180742625, + "totalTime": 54322000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ae2f18c0-f907-40d5-8527-acbcb6922591" + } + }, + { + "head": { + "id": "750ac7b2-2060-438f-a408-4a1c43dcc501", + "name": "xuqmSdk:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603181781458, + "endTime": 340603198927083 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Verification", + "taskRunReasons": [], + "detailId": "eada9143-a51f-4dde-9356-c0f768eca58e", + "logId": "c982fff9-5b9d-4d53-a8ef-809a00b09e05" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "eada9143-a51f-4dde-9356-c0f768eca58e", + "name": "create xuqmSdk:default@PreBuild task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603181375291 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "750ac7b2-2060-438f-a408-4a1c43dcc501" + } + }, + { + "head": { + "id": "6b14864e-626c-4a79-a291-ea8d555feebd", + "name": "Executing task :xuqmSdk:default@PreBuild", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603181786625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "90260694-6e39-48ca-a3aa-6d37329f3231", + "name": "Task 'xuqmSdk:default@PreBuild' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603182043750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "72bd09cc-ae1f-40ad-94eb-1fe8617dbabd", + "name": "The version number of the '@xuqm/harmony-sdk' module does not comply with the SemVer specification.\n This will affect the installation and publication by ohpm.\n Make sure the value of version in the oh-package.json5 file of the module complies with the SemVer specification.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603182544125 + }, + "additional": { + "logType": "warn", + "children": [] + } + }, + { + "head": { + "id": "cad74608-c6fb-4d6d-b999-605ec88f8b56", + "name": "current product is not Atomic service.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603192395250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "88d0611d-71ce-4479-9602-c3708ac43173", + "name": "Use tool [darwin: JAVA_HOME, CLASSPATH]\n [ { JAVA_HOME: undefined }, { CLASSPATH: undefined } ]", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603192469208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d8191059-eb93-431d-9543-23df2e67a512", + "name": "Use tool [darwin: NODE_HOME]\n [ { NODE_HOME: undefined } ]", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603192497125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0c86410d-70e6-49b3-b875-b180971843d6", + "name": "xuqmSdk : default@PreBuild cost memory -2.060638427734375", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603198852583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "feaa5448-6f4c-4782-9df6-f441aaca5177", + "name": "runTaskFromQueue task cost before running: 663 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603198911166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c982fff9-5b9d-4d53-a8ef-809a00b09e05", + "name": "Finished :xuqmSdk:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603181781458, + "endTime": 340603198927083, + "totalTime": 17111125 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "750ac7b2-2060-438f-a408-4a1c43dcc501" + } + }, + { + "head": { + "id": "cfdd1007-4260-45a8-a5be-bcbc4da8f2ec", + "name": "entry:default@CreateModuleInfo", + "description": "Create the ModuleInfo.ts file for the hap/hsp package.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603199526833, + "endTime": 340603199869541 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "a467a6e2-d68a-431a-9178-f90ece6c1f84", + "logId": "573773e1-bc6b-488c-890a-96b56dd28f43" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a467a6e2-d68a-431a-9178-f90ece6c1f84", + "name": "create entry:default@CreateModuleInfo task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603199362666 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "cfdd1007-4260-45a8-a5be-bcbc4da8f2ec" + } + }, + { + "head": { + "id": "e759815f-32ea-415d-bf22-be9f406704ef", + "name": "Executing task :entry:default@CreateModuleInfo", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603199530750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "03885440-e7b0-49e3-8f7c-1ff5e1e032cf", + "name": "Task 'entry:default@CreateModuleInfo' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603199735541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a4eb6b6b-8cf5-49cc-9dba-0ced1e81d143", + "name": "entry : default@CreateModuleInfo cost memory 0.0358428955078125", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603199844708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cbd34d61-2f30-47a1-bed9-c30d4a6eab8b", + "name": "runTaskFromQueue task cost before running: 664 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603199861666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "573773e1-bc6b-488c-890a-96b56dd28f43", + "name": "Finished :entry:default@CreateModuleInfo", + "description": "Create the ModuleInfo.ts file for the hap/hsp package.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603199526833, + "endTime": 340603199869541, + "totalTime": 329167 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "cfdd1007-4260-45a8-a5be-bcbc4da8f2ec" + } + }, + { + "head": { + "id": "14693d60-30f3-47f9-9e75-e70ec912627c", + "name": "entry:default@GenerateMetadata", + "description": "Generate metadata in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603200376958, + "endTime": 340603201192125 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "85a4b0c4-63f6-417c-8d41-d09df7a3da55", + "logId": "d89b2755-3bde-4332-9111-5eed6d2c0066" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "85a4b0c4-63f6-417c-8d41-d09df7a3da55", + "name": "create entry:default@GenerateMetadata task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603199981875 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "14693d60-30f3-47f9-9e75-e70ec912627c" + } + }, + { + "head": { + "id": "5b893ac9-0129-484c-ae1c-47cebcbe220c", + "name": "Executing task :entry:default@GenerateMetadata", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603200381250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c6542b86-631a-4465-a8a3-38e8ededb209", + "name": "Task 'entry:default@GenerateMetadata' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603200554541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "95e8fc11-6b73-4f7c-bc49-20166dffce04", + "name": "Incremental task entry:default@GenerateMetadata pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603201143666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "daeb590c-7565-4632-9242-197546afebbd", + "name": "entry : default@GenerateMetadata cost memory 0.07225799560546875", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603201167791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d89b2755-3bde-4332-9111-5eed6d2c0066", + "name": "UP-TO-DATE :entry:default@GenerateMetadata", + "description": "Generate metadata in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603200376958, + "endTime": 340603201192125 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "14693d60-30f3-47f9-9e75-e70ec912627c" + } + }, + { + "head": { + "id": "aab64375-faac-4604-b0f7-0c5a5a0377ea", + "name": "entry:default@PreCheckSyscap", + "description": "Pre-check SysCap.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603201580625, + "endTime": 340603201697250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Verification", + "taskRunReasons": [], + "detailId": "06befc7f-df29-4ebc-884f-15759374dca3", + "logId": "f3e5f7f7-ba9f-45a5-94c9-cb35a5414e61" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "06befc7f-df29-4ebc-884f-15759374dca3", + "name": "create entry:default@PreCheckSyscap task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603201303541 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "aab64375-faac-4604-b0f7-0c5a5a0377ea" + } + }, + { + "head": { + "id": "111d6151-4b70-4848-98ee-c314e5c39f09", + "name": "Executing task :entry:default@PreCheckSyscap", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603201584083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c97e8e60-0801-44ac-86e6-804323f28224", + "name": "entry : default@PreCheckSyscap cost memory 0.01348876953125", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603201652541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dc49593e-e33b-4c4f-abf0-40348e001f15", + "name": "runTaskFromQueue task cost before running: 666 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603201681375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f3e5f7f7-ba9f-45a5-94c9-cb35a5414e61", + "name": "Finished :entry:default@PreCheckSyscap", + "description": "Pre-check SysCap.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603201580625, + "endTime": 340603201697250, + "totalTime": 82417 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "aab64375-faac-4604-b0f7-0c5a5a0377ea" + } + }, + { + "head": { + "id": "81ec2b80-d2b7-4ad3-aba7-d487a50edc8f", + "name": "entry:default@GeneratePkgContextInfo", + "description": "Generate pkgContextInfo.json to ets-loader.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603202199000, + "endTime": 340603206765500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [ + "The task snapshots are different." + ], + "detailId": "dbac841b-68df-4f33-8f95-c6c87dc69ba3", + "logId": "599b3c74-5ca9-460b-bbb6-565fc5f3dcbd" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "dbac841b-68df-4f33-8f95-c6c87dc69ba3", + "name": "create entry:default@GeneratePkgContextInfo task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603201831166 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "81ec2b80-d2b7-4ad3-aba7-d487a50edc8f" + } + }, + { + "head": { + "id": "cceb3002-a6a2-4a68-a615-2ea8e3e987d9", + "name": "Executing task :entry:default@GeneratePkgContextInfo", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603202202125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d7b67b6c-b246-43ad-9075-a385f05dd60b", + "name": "Task 'entry:default@GeneratePkgContextInfo' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603206140958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d48ddf37-4b3f-4641-a077-6afc8c3dea30", + "name": "entry:default@GeneratePkgContextInfo is not up-to-date, since the task snapshots are different.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603206390208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c325c33f-1681-4e44-a297-10d6218ee796", + "name": "Incremental task entry:default@GeneratePkgContextInfo pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603206411083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a2ad197d-561e-4a1b-9fd4-dc7b939087c4", + "name": "entry : default@GeneratePkgContextInfo cost memory 0.6783905029296875", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603206728750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9a899008-f1f9-4a57-9236-5311a81469d7", + "name": "runTaskFromQueue task cost before running: 671 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603206751083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "599b3c74-5ca9-460b-bbb6-565fc5f3dcbd", + "name": "Finished :entry:default@GeneratePkgContextInfo", + "description": "Generate pkgContextInfo.json to ets-loader.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603202199000, + "endTime": 340603206765500, + "totalTime": 4542833 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "81ec2b80-d2b7-4ad3-aba7-d487a50edc8f" + } + }, + { + "head": { + "id": "5b6afbdf-903b-4b66-8412-607657d8bce0", + "name": "entry:default@ProcessIntegratedHsp", + "description": "Use package tool process integrated hsp.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603207819833, + "endTime": 340603208047500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Sign", + "taskRunReasons": [ + "The output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build/cache/default/integrated_hsp/integratedHspCache.json' does not exist." + ], + "detailId": "89017b14-00eb-478b-a0e3-7ed57dc8f3b2", + "logId": "d33a9d86-196a-45bc-9829-d2828197539b" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "89017b14-00eb-478b-a0e3-7ed57dc8f3b2", + "name": "create entry:default@ProcessIntegratedHsp task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603207027666 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "5b6afbdf-903b-4b66-8412-607657d8bce0" + } + }, + { + "head": { + "id": "57f2b172-9a0b-48a1-8b1f-d53014eff38f", + "name": "Executing task :entry:default@ProcessIntegratedHsp", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603207825875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3b1ab3a9-8307-4c4a-bf6c-2c466b9a5793", + "name": "entry:default@ProcessIntegratedHsp is not up-to-date, since the output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build/cache/default/integrated_hsp/integratedHspCache.json' does not exist.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603207961250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2cf5effb-ff1b-47e7-91d1-b5e70f532dbf", + "name": "Incremental task entry:default@ProcessIntegratedHsp pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603207979583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4424d17d-797f-4006-9462-693ef1a192ff", + "name": "entry : default@ProcessIntegratedHsp cost memory 0.047088623046875", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603208024708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6bedabca-9eeb-4f38-ab33-99a713b6e6c3", + "name": "runTaskFromQueue task cost before running: 672 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603208039416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d33a9d86-196a-45bc-9829-d2828197539b", + "name": "Finished :entry:default@ProcessIntegratedHsp", + "description": "Use package tool process integrated hsp.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603207819833, + "endTime": 340603208047500, + "totalTime": 215209 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "5b6afbdf-903b-4b66-8412-607657d8bce0" + } + }, + { + "head": { + "id": "c0844398-4cd5-49b3-b8b8-a5768ca5b290", + "name": "xuqmSdk:default@CreateHarBuildProfile", + "description": "Create the BuildProfile.ets file for the HAR package.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603208585416, + "endTime": 340603208920875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Generate", + "taskRunReasons": [], + "detailId": "40106c50-9a60-4637-aee4-0301f69f249b", + "logId": "cd1661fc-1076-474e-ba57-b3734f72752f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "40106c50-9a60-4637-aee4-0301f69f249b", + "name": "create xuqmSdk:default@CreateHarBuildProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603208277750 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "c0844398-4cd5-49b3-b8b8-a5768ca5b290" + } + }, + { + "head": { + "id": "f01d0f28-bcae-47e0-91b0-27285210782b", + "name": "Executing task :xuqmSdk:default@CreateHarBuildProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603208588166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2660ca3b-67f1-4403-a45a-bbaab765e0ec", + "name": "Task 'xuqmSdk:default@CreateHarBuildProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603208661500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "930e4e1b-7ea1-46ff-b6df-1cfa5d0c1521", + "name": "xuqmSdk : default@CreateHarBuildProfile cost memory 0.0422210693359375", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603208898041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a2117e75-a292-4e96-8f56-c8c928353a3d", + "name": "runTaskFromQueue task cost before running: 673 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603208913708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cd1661fc-1076-474e-ba57-b3734f72752f", + "name": "Finished :xuqmSdk:default@CreateHarBuildProfile", + "description": "Create the BuildProfile.ets file for the HAR package.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603208585416, + "endTime": 340603208920875, + "totalTime": 322834 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "c0844398-4cd5-49b3-b8b8-a5768ca5b290" + } + }, + { + "head": { + "id": "994ea9e0-cdec-4866-a6c2-456f917410ad", + "name": "xuqmSdk:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603209322500, + "endTime": 340603209382708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "f9202ed7-eff5-420c-be10-18d6b37322fb", + "logId": "719dfcce-9f44-4f96-a741-5acefa812915" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f9202ed7-eff5-420c-be10-18d6b37322fb", + "name": "create xuqmSdk:default@ConfigureCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603209027583 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "994ea9e0-cdec-4866-a6c2-456f917410ad" + } + }, + { + "head": { + "id": "80fd8ade-a26f-443d-bb18-018997f8a32f", + "name": "Executing task :xuqmSdk:default@ConfigureCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603209327666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a2a787f9-d3a1-4bac-a432-5e0acdcefca7", + "name": "xuqmSdk : default@ConfigureCmake cost memory 0.0123748779296875", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603209361541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f69dec89-93bc-46f5-b6a8-aad0e7bd24b7", + "name": "runTaskFromQueue task cost before running: 674 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603209376208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "719dfcce-9f44-4f96-a741-5acefa812915", + "name": "Finished :xuqmSdk:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603209322500, + "endTime": 340603209382708, + "totalTime": 47625 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "994ea9e0-cdec-4866-a6c2-456f917410ad" + } + }, + { + "head": { + "id": "ef7fec58-70a0-4670-91f3-50f3c3d4c06c", + "name": "xuqmSdk:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603209685375, + "endTime": 340603210774500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Config", + "taskRunReasons": [], + "detailId": "7a0841e3-b343-4468-9d59-c4a74bde4620", + "logId": "cbd6aaab-2875-40f4-9670-746922bebf8f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "7a0841e3-b343-4468-9d59-c4a74bde4620", + "name": "create xuqmSdk:default@MergeProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603209514208 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "ef7fec58-70a0-4670-91f3-50f3c3d4c06c" + } + }, + { + "head": { + "id": "582713ab-5d0d-4999-81de-dc03b46caeb8", + "name": "Executing task :xuqmSdk:default@MergeProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603209688791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f79743a2-e1d2-483f-9fcb-b62ebac3c49b", + "name": "Task 'xuqmSdk:default@MergeProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603209774583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b0931668-4ac3-40f7-8224-5efec94e7d30", + "name": "Change app api release type with 'Release'", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603210039291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "554c481c-afb0-4040-bec1-4048350dda9d", + "name": "Change app compile API version with '6.0.2.130'", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603210115916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c3cb496a-c457-48b6-b8bd-ef1ef71b92de", + "name": "Change app target API version with '60002022'", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603210127958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d4ee1773-19cd-449f-859e-980adbccd995", + "name": "Change app minimum API version with '50000012'", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603210135125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5716a99a-c42b-4ea5-a62d-d8c9e8c21db7", + "name": "Use cli appEnvironment", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603210176291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "267ed020-1111-4b34-9c3e-f07c13f4572c", + "name": "xuqmSdk : default@MergeProfile cost memory 0.1004791259765625", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603210749375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d25a8512-acfa-4ba5-8f2a-d80e0db17000", + "name": "runTaskFromQueue task cost before running: 675 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603210766291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cbd6aaab-2875-40f4-9670-746922bebf8f", + "name": "Finished :xuqmSdk:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603209685375, + "endTime": 340603210774500, + "totalTime": 1074667 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ef7fec58-70a0-4670-91f3-50f3c3d4c06c" + } + }, + { + "head": { + "id": "3913ff4f-49bc-4821-9ebd-afbc38bb6f31", + "name": "entry:default@SyscapTransform", + "description": "Transform SysCap in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603211301000, + "endTime": 340603217203166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [ + "The output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/syscap/default/rpcid.sc' does not exist." + ], + "detailId": "4d829f7a-3eb5-486a-8e6f-19301efd5235", + "logId": "35d8d79f-6278-40e4-ac42-82af5ad06cea" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "4d829f7a-3eb5-486a-8e6f-19301efd5235", + "name": "create entry:default@SyscapTransform task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603211027541 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "3913ff4f-49bc-4821-9ebd-afbc38bb6f31" + } + }, + { + "head": { + "id": "59656203-e123-47fd-b15f-22b31ee47493", + "name": "Executing task :entry:default@SyscapTransform", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603211304000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e6a391d5-17e9-4a31-893b-1ac9af7136b4", + "name": "File: '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/syscap.json' from 'sysCapJsonPath' is not exists, just ignore.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603211324333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4c00bc5d-b60a-4434-8d41-2b20a63407d7", + "name": "Task 'entry:default@SyscapTransform' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603211407958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dfafc07d-c12d-4416-8904-b9409d9befcf", + "name": "entry:default@SyscapTransform is not up-to-date, since the output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/syscap/default/rpcid.sc' does not exist.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603216825958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "49685305-d511-4e0d-9f66-d2f8c874a543", + "name": "Incremental task entry:default@SyscapTransform pre-execution cost: 6 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603216842083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c737eead-e22c-4e1b-89b7-8450f69caa35", + "name": "entry : default@SyscapTransform cost memory 0.102874755859375", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603217133041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "775563b8-2252-4320-952b-37d6b104f61f", + "name": "runTaskFromQueue task cost before running: 681 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603217186750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "35d8d79f-6278-40e4-ac42-82af5ad06cea", + "name": "Finished :entry:default@SyscapTransform", + "description": "Transform SysCap in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603211301000, + "endTime": 340603217203166, + "totalTime": 5870167 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3913ff4f-49bc-4821-9ebd-afbc38bb6f31" + } + }, + { + "head": { + "id": "a6b61404-eded-4ab2-b462-93ab4fc091b4", + "name": "entry:default@ProcessRouterMap", + "description": "Process router map configuration.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603217925083, + "endTime": 340603219095833 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [ + "The input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json' has been changed." + ], + "detailId": "4de5739f-0d8b-4c26-8cd8-71c2b6a13e82", + "logId": "109076f6-a8f0-4cda-adcd-dfd673a7de2a" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "4de5739f-0d8b-4c26-8cd8-71c2b6a13e82", + "name": "create entry:default@ProcessRouterMap task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603217422791 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "a6b61404-eded-4ab2-b462-93ab4fc091b4" + } + }, + { + "head": { + "id": "9e66c3ff-fd4b-4a25-a55f-7fd91a52a7e0", + "name": "Executing task :entry:default@ProcessRouterMap", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603217929750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ef12aeac-a831-4810-aae4-526439d1b55c", + "name": "entry:default@ProcessRouterMap is not up-to-date, since the input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json' has been changed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603218530208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0edccfd3-d472-47ba-a780-dc77f4da203e", + "name": "Incremental task entry:default@ProcessRouterMap pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603218548875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8e704719-3392-4500-a9f5-29c5e0083433", + "name": "entry : default@ProcessRouterMap cost memory 0.1233062744140625", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603218965833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3df6c1d7-9588-4e65-b9d3-b9d8231a2b15", + "name": "runTaskFromQueue task cost before running: 683 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603219084166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "109076f6-a8f0-4cda-adcd-dfd673a7de2a", + "name": "Finished :entry:default@ProcessRouterMap", + "description": "Process router map configuration.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603217925083, + "endTime": 340603219095833, + "totalTime": 1053708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "a6b61404-eded-4ab2-b462-93ab4fc091b4" + } + }, + { + "head": { + "id": "66afc505-f6a8-45ee-933f-5ffa5946efe9", + "name": "entry:default@ProcessShareConfig", + "description": "Process share config configuration.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603219806500, + "endTime": 340603220575458 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [ + "The input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json' has been changed." + ], + "detailId": "053823d3-2f00-4140-8e44-7b1b4a8b97c6", + "logId": "a136b105-2378-42aa-b5b2-e37617fe4c8c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "053823d3-2f00-4140-8e44-7b1b4a8b97c6", + "name": "create entry:default@ProcessShareConfig task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603219349625 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "66afc505-f6a8-45ee-933f-5ffa5946efe9" + } + }, + { + "head": { + "id": "e1363d64-f5af-406d-bd2d-17924f64ead1", + "name": "Executing task :entry:default@ProcessShareConfig", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603219814500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "012a6d33-3f24-4342-ba3c-69c21c2c2bbd", + "name": "entry:default@ProcessShareConfig is not up-to-date, since the input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json' has been changed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603220247291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0ae813ce-048d-4ae2-9b1f-f2cfb830e997", + "name": "Incremental task entry:default@ProcessShareConfig pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603220269333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2dcfa8f6-63d1-4dec-9ec3-7b6b3db2518f", + "name": "entry : default@ProcessShareConfig cost memory 0.11621856689453125", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603220526791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e2d97c1a-4f7b-4c7f-aa33-446ae6070b42", + "name": "runTaskFromQueue task cost before running: 685 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603220551625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a136b105-2378-42aa-b5b2-e37617fe4c8c", + "name": "Finished :entry:default@ProcessShareConfig", + "description": "Process share config configuration.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603219806500, + "endTime": 340603220575458, + "totalTime": 738792 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "66afc505-f6a8-45ee-933f-5ffa5946efe9" + } + }, + { + "head": { + "id": "42cf15d0-099a-477c-9ad9-67b9ce26bb49", + "name": "entry:default@ProcessStartupConfig", + "description": "Process startup configuration.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603221174458, + "endTime": 340603221673708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [ + "The input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json' has been changed." + ], + "detailId": "c9fe00ff-262c-421c-82b2-9336626c1a85", + "logId": "77beed12-739a-4ced-8062-2f31c75b4a67" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c9fe00ff-262c-421c-82b2-9336626c1a85", + "name": "create entry:default@ProcessStartupConfig task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603220850583 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "42cf15d0-099a-477c-9ad9-67b9ce26bb49" + } + }, + { + "head": { + "id": "febad06f-2c91-40d0-8fc5-e68015988087", + "name": "Executing task :entry:default@ProcessStartupConfig", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603221178958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "eb487a14-aad3-4971-9fef-9e172d22b14e", + "name": "Task 'entry:default@ProcessStartupConfig' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603221241583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3721ed23-f496-493f-9d9f-ca79f7fc3292", + "name": "entry:default@ProcessStartupConfig is not up-to-date, since the input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json' has been changed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603221424750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ff376abe-c5c5-4b04-bd12-7ecc17dff7ce", + "name": "Incremental task entry:default@ProcessStartupConfig pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603221440083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3ad030a2-9f01-4bdb-802c-b550f5d06bcd", + "name": "entry : default@ProcessStartupConfig cost memory 0.11893463134765625", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603221647541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "970c5ae2-78b4-4260-bfc3-0e0c7f9d6f72", + "name": "runTaskFromQueue task cost before running: 686 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603221664583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "77beed12-739a-4ced-8062-2f31c75b4a67", + "name": "Finished :entry:default@ProcessStartupConfig", + "description": "Process startup configuration.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603221174458, + "endTime": 340603221673708, + "totalTime": 483542 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "42cf15d0-099a-477c-9ad9-67b9ce26bb49" + } + }, + { + "head": { + "id": "36b12af6-5ef6-4acc-8fd6-b1e2570c5ab6", + "name": "entry:default@CreateBuildProfile", + "description": "Create the BuildProfile.ets file for the HAP/HSP package.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603222084375, + "endTime": 340603222595833 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [ + "The input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5' has been changed." + ], + "detailId": "e43e5965-a2d0-4f22-a8f5-4c3cd00ca11d", + "logId": "08c2e629-d97d-4932-a487-82b0c795f8fd" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e43e5965-a2d0-4f22-a8f5-4c3cd00ca11d", + "name": "create entry:default@CreateBuildProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603221791708 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "36b12af6-5ef6-4acc-8fd6-b1e2570c5ab6" + } + }, + { + "head": { + "id": "e9a3cea6-afec-4bb9-af5a-4a7953656244", + "name": "Executing task :entry:default@CreateBuildProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603222087375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9603ac55-737e-4e65-bf82-1ebb4de1ddc4", + "name": "Task 'entry:default@CreateBuildProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603222275291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ce868157-df29-428f-9296-2897eed6009b", + "name": "entry:default@CreateBuildProfile is not up-to-date, since the input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5' has been changed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603222346541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3f7fc5c7-5775-44db-9554-e9a5db663801", + "name": "Incremental task entry:default@CreateBuildProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603222413416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ef3faae5-fb64-475d-abcf-e5c7ec48ba84", + "name": "entry : default@CreateBuildProfile cost memory 0.07872772216796875", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603222568958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e690505d-c582-45a2-9a00-594eed258d2a", + "name": "runTaskFromQueue task cost before running: 687 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603222586708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "08c2e629-d97d-4932-a487-82b0c795f8fd", + "name": "Finished :entry:default@CreateBuildProfile", + "description": "Create the BuildProfile.ets file for the HAP/HSP package.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603222084375, + "endTime": 340603222595833, + "totalTime": 495000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "36b12af6-5ef6-4acc-8fd6-b1e2570c5ab6" + } + }, + { + "head": { + "id": "46d6a486-cac4-4b91-8b1b-955197275b71", + "name": "xuqmSdk:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603222935916, + "endTime": 340603223004916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "a0c864df-9a3e-460e-b31e-6f5153e50306", + "logId": "52b8122f-e956-457f-bc22-2ba668c5b8e1" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a0c864df-9a3e-460e-b31e-6f5153e50306", + "name": "create xuqmSdk:default@BuildNativeWithCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603222696958 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "46d6a486-cac4-4b91-8b1b-955197275b71" + } + }, + { + "head": { + "id": "e2dc86e0-afee-433f-8601-f8a9961e8da6", + "name": "Executing task :xuqmSdk:default@BuildNativeWithCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603222939458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ef1e8354-7608-4d84-a469-be2e1db8bc37", + "name": "xuqmSdk : default@BuildNativeWithCmake cost memory 0.01406097412109375", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603222982750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d199f3c8-a138-453e-86d1-8d6d1a694a71", + "name": "runTaskFromQueue task cost before running: 687 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603222997208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "52b8122f-e956-457f-bc22-2ba668c5b8e1", + "name": "Finished :xuqmSdk:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603222935916, + "endTime": 340603223004916, + "totalTime": 56375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "46d6a486-cac4-4b91-8b1b-955197275b71" + } + }, + { + "head": { + "id": "f9222629-7b9c-4752-b18a-d8eb2a9618e3", + "name": "entry:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603223179375, + "endTime": 340603224651666 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Config", + "taskRunReasons": [ + "The input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5' has been changed." + ], + "detailId": "65d64d96-437a-47cd-851c-b15555e44a77", + "logId": "5b77c38c-c76c-4646-8971-241b65fbd80c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "65d64d96-437a-47cd-851c-b15555e44a77", + "name": "create entry:default@MergeProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603223062250 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "f9222629-7b9c-4752-b18a-d8eb2a9618e3" + } + }, + { + "head": { + "id": "39a02614-5b18-4108-a93f-6a54c17e036c", + "name": "Executing task :entry:default@MergeProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603223183333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "061c9656-ad2e-460b-8258-3f275a2f3928", + "name": "Task 'entry:default@MergeProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603223340291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d7c081e5-788d-4ef3-b334-bb7f5d8b22c1", + "name": "entry:default@MergeProfile is not up-to-date, since the input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5' has been changed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603223471416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ab92fafa-b67a-458c-a3ff-a3c58457a17d", + "name": "Incremental task entry:default@MergeProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603223484458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5f9f2b2a-b90c-4310-bfa7-008250facc49", + "name": "Change app api release type with 'Release'", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603223521333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1bf0ce1d-94bd-489d-969f-086813e0a154", + "name": "Change app compile API version with '6.0.2.130'", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603223539916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5dd748d7-baae-4eac-bf77-2742dfe46a6f", + "name": "Change app target API version with '60002022'", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603223547166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1283fadb-73f3-4182-93fa-9b3395fcda22", + "name": "Change app minimum API version with '50000012'", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603223553333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "296c9b34-76e9-4551-8071-3cae99351cc5", + "name": "Use cli appEnvironment", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603223564041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "acc55543-698a-4451-9964-9c43579ba021", + "name": "entry : default@MergeProfile cost memory 0.2298431396484375", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603224579000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ac99a352-e627-443f-9e00-5800be9fa301", + "name": "runTaskFromQueue task cost before running: 689 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603224634208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5b77c38c-c76c-4646-8971-241b65fbd80c", + "name": "Finished :entry:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603223179375, + "endTime": 340603224651666, + "totalTime": 1438125 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f9222629-7b9c-4752-b18a-d8eb2a9618e3" + } + }, + { + "head": { + "id": "4cd5b072-3748-4cb6-9c7f-987f0d87a18e", + "name": "entry:default@GenerateLoaderJson", + "description": "Generate loader.json in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603225727500, + "endTime": 340603228545166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [ + "The input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json' has been changed." + ], + "detailId": "ffca54ed-2e8c-4425-b228-77c2546b7082", + "logId": "fb54e187-b301-4edb-a9f1-1d371547ba35" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ffca54ed-2e8c-4425-b228-77c2546b7082", + "name": "create entry:default@GenerateLoaderJson task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603224977000 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "4cd5b072-3748-4cb6-9c7f-987f0d87a18e" + } + }, + { + "head": { + "id": "30ac9548-d029-4439-be10-c65cdf086185", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603225440916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c4dbe8b4-d52d-4cdf-98a6-29d56de844fa", + "name": "Executing task :entry:default@GenerateLoaderJson", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603225731625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9971ca73-7b55-40e5-b9a9-513bcea961b5", + "name": "Task 'entry:default@GenerateLoaderJson' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603226231250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1aaffd39-5261-40db-af59-9bc0806de53e", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603226620625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4146de83-7e9c-4bfd-86b0-f146bdc455ba", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603226870500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "136969ad-421b-4e47-9b76-fd03afab0796", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603227110625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1569a9a2-6acb-4f56-8d76-acec3181d086", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603227208458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "388d3502-cc06-40b2-b17e-2c7dfcae3e29", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603227290708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7b76cb73-004c-4375-b61c-00cc1416cbaf", + "name": "entry:default@GenerateLoaderJson is not up-to-date, since the input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json' has been changed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603227337958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a6988976-8e3f-4a4e-83fb-07401500b51a", + "name": "Incremental task entry:default@GenerateLoaderJson pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603227353291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7c83d087-e880-4969-8682-69b5f9aaa0b3", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603227640083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "454e2c2d-29d1-4060-83bd-343aed5d822d", + "name": "entry : default@GenerateLoaderJson cost memory 0.48764801025390625", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603228508500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "85aa4fd7-87b4-4bc7-be66-6d28df549f15", + "name": "runTaskFromQueue task cost before running: 693 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603228533458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dd333f79-d8fe-4f2d-ae21-71e5c9c99c97", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603228742083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5c451cad-7266-4e64-a81a-e31ab48ed1d9", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603228825958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fb54e187-b301-4edb-a9f1-1d371547ba35", + "name": "Finished :entry:default@GenerateLoaderJson", + "description": "Generate loader.json in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603225727500, + "endTime": 340603228545166, + "totalTime": 2795416 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "4cd5b072-3748-4cb6-9c7f-987f0d87a18e" + } + }, + { + "head": { + "id": "9c8f890f-fd40-4ea9-b260-4f0cee141dd5", + "name": "xuqmSdk:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603229312666, + "endTime": 340603229694958 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "3ca9fbcc-9ef3-4d97-88c4-5c108552ccfc", + "logId": "aff7f29b-5377-4b77-bd46-cda3c62640c8" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3ca9fbcc-9ef3-4d97-88c4-5c108552ccfc", + "name": "create xuqmSdk:default@BuildNativeWithNinja task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603228996416 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "9c8f890f-fd40-4ea9-b260-4f0cee141dd5" + } + }, + { + "head": { + "id": "99894007-754e-4599-b1c8-2cff18e8de51", + "name": "Executing task :xuqmSdk:default@BuildNativeWithNinja", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603229331916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3ab95f0a-2ea9-4196-b426-966f7d495791", + "name": "xuqmSdk : default@BuildNativeWithNinja cost memory 0.0234832763671875", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603229582625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "480b2556-6a1a-4550-b53b-87860eb3e81a", + "name": "runTaskFromQueue task cost before running: 694 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603229685208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "aff7f29b-5377-4b77-bd46-cda3c62640c8", + "name": "Finished :xuqmSdk:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603229312666, + "endTime": 340603229694958, + "totalTime": 362417 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9c8f890f-fd40-4ea9-b260-4f0cee141dd5" + } + }, + { + "head": { + "id": "603d4800-3a62-42f2-b798-315fb2d01b49", + "name": "entry:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603229959166, + "endTime": 340603230011416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "89ea9ccf-4686-4107-8e60-7a38d9291d2c", + "logId": "6a871f13-43bc-4ba9-817a-8ff770b71eec" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "89ea9ccf-4686-4107-8e60-7a38d9291d2c", + "name": "create entry:default@ConfigureCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603229805375 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "603d4800-3a62-42f2-b798-315fb2d01b49" + } + }, + { + "head": { + "id": "3901659a-8f4f-4cb9-8e6c-dbf5b55e6c32", + "name": "Executing task :entry:default@ConfigureCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603229962041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e320520e-ffaf-4b37-a802-b7c84e2fcb0f", + "name": "entry : default@ConfigureCmake cost memory 0.01214599609375", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603229991750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bb88825c-d039-4372-9857-1f9bab8d7058", + "name": "runTaskFromQueue task cost before running: 694 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603230004208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6a871f13-43bc-4ba9-817a-8ff770b71eec", + "name": "Finished :entry:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603229959166, + "endTime": 340603230011416, + "totalTime": 40958 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "603d4800-3a62-42f2-b798-315fb2d01b49" + } + }, + { + "head": { + "id": "b0042d4b-ad44-4b77-aeba-761b38a98046", + "name": "entry:default@MakePackInfo", + "description": "Generate module pack.info in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603230356541, + "endTime": 340603231339750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [ + "The input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5' has been changed." + ], + "detailId": "05198c9b-3a29-468e-a7b8-b8b66c6f4575", + "logId": "1a970756-34de-444a-82ca-b098412bb45a" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "05198c9b-3a29-468e-a7b8-b8b66c6f4575", + "name": "create entry:default@MakePackInfo task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603230093875 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "b0042d4b-ad44-4b77-aeba-761b38a98046" + } + }, + { + "head": { + "id": "3e688fe4-6c0f-4b40-81e4-65936426c969", + "name": "Executing task :entry:default@MakePackInfo", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603230359125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d22f0329-1cba-4630-9cac-a7c358e4e1ab", + "name": "entry:default@MakePackInfo is not up-to-date, since the input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5' has been changed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603230656916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1dd4ffe0-64ae-4d15-879f-efa16aaa5199", + "name": "Incremental task entry:default@MakePackInfo pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603230672708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "543afbf3-3332-4764-b800-97017a7a6711", + "name": "Module Pack Info: {\n summary: {\n app: { bundleName: 'c***k', bundleType: 'app', version: [Object] },\n modules: [ [Object] ]\n },\n packages: [\n {\n deviceType: [Array],\n moduleType: 'entry',\n deliveryWithInstall: true,\n name: 'entry-default'\n }\n ]\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603231135083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3ea8a59b-bd73-4107-9c83-854b1eadbc75", + "name": "entry : default@MakePackInfo cost memory 0.29372406005859375", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603231312625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8c8b9312-a38c-4f3b-9919-a4956ddaf7c7", + "name": "runTaskFromQueue task cost before running: 695 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603231330583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1a970756-34de-444a-82ca-b098412bb45a", + "name": "Finished :entry:default@MakePackInfo", + "description": "Generate module pack.info in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603230356541, + "endTime": 340603231339750, + "totalTime": 966542 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "b0042d4b-ad44-4b77-aeba-761b38a98046" + } + }, + { + "head": { + "id": "6ebbbea6-2cd8-4a4e-bd14-b7080bd3ad67", + "name": "entry:default@ProcessProfile", + "description": "Process app config manifest files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603232042166, + "endTime": 340603273584750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Config", + "taskRunReasons": [ + "The input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/merge_profile/default/module.json' has been changed." + ], + "detailId": "bd7ed1c5-b171-42a1-beaf-7a5230cf8d4f", + "logId": "09dcf11b-a3af-40c1-8bcf-eb09302def17" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "bd7ed1c5-b171-42a1-beaf-7a5230cf8d4f", + "name": "create entry:default@ProcessProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603231494291 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "6ebbbea6-2cd8-4a4e-bd14-b7080bd3ad67" + } + }, + { + "head": { + "id": "b1a8f557-d006-4c7f-906c-f31b29e363c7", + "name": "Executing task :entry:default@ProcessProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603232045458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "99e76c11-1e87-407d-9d4b-2b76ec1e3172", + "name": "Task 'entry:default@ProcessProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603232366416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "01087ae2-674d-48d1-bf32-801c6e8e31bb", + "name": "entry:default@ProcessProfile is not up-to-date, since the input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/merge_profile/default/module.json' has been changed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603232560750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "20a4a081-f872-4b37-976a-825839bf5818", + "name": "Incremental task entry:default@ProcessProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603232576625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7b4776c9-c828-4a30-a042-1e733d8a6eaa", + "name": "12.0.2.0", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603272950041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9751289b-be4b-4425-a1b6-c3187d63df76", + "name": "No need to add fake ui ability because of not in preview process.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603273394791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6bdd395d-6b26-48fa-9102-5c12404fc2ae", + "name": "entry : default@ProcessProfile cost memory 0.33621978759765625", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603273539291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e6107159-a45d-47e9-a9d8-cee396a1f35c", + "name": "runTaskFromQueue task cost before running: 738 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603273570833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "09dcf11b-a3af-40c1-8bcf-eb09302def17", + "name": "Finished :entry:default@ProcessProfile", + "description": "Process app config manifest files in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603232042166, + "endTime": 340603273584750, + "totalTime": 41511042 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "6ebbbea6-2cd8-4a4e-bd14-b7080bd3ad67" + } + }, + { + "head": { + "id": "ccb80673-d54c-4ef7-87c3-4418a5601e16", + "name": "xuqmSdk:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603274183833, + "endTime": 340603276857666 + }, + "additional": { + "children": [ + "108be6b6-0202-4ed9-9667-b6fed4c44020" + ], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Resources", + "taskRunReasons": [], + "detailId": "acf7d023-10ed-493e-834e-e3f4934257c7", + "logId": "536230e2-5786-401c-99af-b4527574a54f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "acf7d023-10ed-493e-834e-e3f4934257c7", + "name": "create xuqmSdk:default@ProcessLibs task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603273769583 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "ccb80673-d54c-4ef7-87c3-4418a5601e16" + } + }, + { + "head": { + "id": "ffb37c60-e86c-42eb-ae3e-be1aca89333c", + "name": "Executing task :xuqmSdk:default@ProcessLibs", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603274187416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "108be6b6-0202-4ed9-9667-b6fed4c44020", + "name": "process libs", + "description": "", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603276447291, + "endTime": 340603276769541 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ccb80673-d54c-4ef7-87c3-4418a5601e16", + "logId": "82e554c9-0ec8-4053-8662-27ab36a09034" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "777fe8d3-31aa-4ea1-9035-7f3e8401444e", + "name": "Worker dispatch failed, running processLibs on main thread.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603276451708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "82e554c9-0ec8-4053-8662-27ab36a09034", + "name": "process libs", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603276447291, + "endTime": 340603276769541 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "108be6b6-0202-4ed9-9667-b6fed4c44020", + "parent": "536230e2-5786-401c-99af-b4527574a54f" + } + }, + { + "head": { + "id": "ec28ef03-d1cc-43cb-8485-c12baf0ffc34", + "name": "xuqmSdk : default@ProcessLibs cost memory 0.4665985107421875", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603276810041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "49954587-01b4-42b7-a6f8-e11bb941b802", + "name": "runTaskFromQueue task cost before running: 741 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603276843791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "536230e2-5786-401c-99af-b4527574a54f", + "name": "Finished :xuqmSdk:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603274183833, + "endTime": 340603276857666, + "totalTime": 2644042 + }, + "additional": { + "logType": "info", + "children": [ + "82e554c9-0ec8-4053-8662-27ab36a09034" + ], + "durationId": "ccb80673-d54c-4ef7-87c3-4418a5601e16" + } + }, + { + "head": { + "id": "95ea6e29-6dab-4983-8076-fda7aeec35d5", + "name": "entry:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603277231083, + "endTime": 340603277294041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "a7313a32-f24c-4a89-abdc-4000199d015b", + "logId": "d2bfb8c6-0eab-4d73-8c2a-1d7c60469850" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a7313a32-f24c-4a89-abdc-4000199d015b", + "name": "create entry:default@BuildNativeWithCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603277072416 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "95ea6e29-6dab-4983-8076-fda7aeec35d5" + } + }, + { + "head": { + "id": "ef2a8139-3737-44b5-bced-2dcd617ed4ab", + "name": "Executing task :entry:default@BuildNativeWithCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603277233500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "104ba180-9893-449d-acd1-06e6a0ced848", + "name": "entry : default@BuildNativeWithCmake cost memory 0.01209259033203125", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603277267083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "106f8f4e-5ec7-4c5d-9b2c-d868946ba0e8", + "name": "runTaskFromQueue task cost before running: 741 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603277284708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d2bfb8c6-0eab-4d73-8c2a-1d7c60469850", + "name": "Finished :entry:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603277231083, + "endTime": 340603277294041, + "totalTime": 48666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "95ea6e29-6dab-4983-8076-fda7aeec35d5" + } + }, + { + "head": { + "id": "a258a1e0-a578-421e-9672-01664861b664", + "name": "entry:default@ProcessResource", + "description": "Process resources in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603278160625, + "endTime": 340603279430500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [ + "The task snapshots are different." + ], + "detailId": "98ffeb20-1988-44a5-9410-d962c8560ac3", + "logId": "9695b3dc-48d7-4905-a715-ad2511a07072" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "98ffeb20-1988-44a5-9410-d962c8560ac3", + "name": "create entry:default@ProcessResource task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603277411750 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "a258a1e0-a578-421e-9672-01664861b664" + } + }, + { + "head": { + "id": "fd1d5694-e03c-4640-8b63-cddf6b5e1a09", + "name": "restool module names: entry,xuqmSdk; moduleName=entry, taskName=default@ProcessResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603277652416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "866129e5-d57d-4c66-aa64-5e0bc9d910f0", + "name": "Executing task :entry:default@ProcessResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603278588750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4b8dad95-bb0f-454e-884c-7da744cefab3", + "name": "Task 'entry:default@ProcessResource' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603278640166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c33badf5-515c-4fde-bacb-1c88605e8827", + "name": "entry:default@ProcessResource is not up-to-date, since the task snapshots are different.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603278862458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0c43bc32-99d6-4c3d-be7c-a8776865fcba", + "name": "Incremental task entry:default@ProcessResource pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603278875625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "be2a99c0-5048-406d-95d3-37b46ac45c7e", + "name": "entry : default@ProcessResource cost memory 0.13349151611328125", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603279322125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "252077f2-0647-4772-a5bc-28ebd225b2da", + "name": "runTaskFromQueue task cost before running: 744 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603279420041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9695b3dc-48d7-4905-a715-ad2511a07072", + "name": "Finished :entry:default@ProcessResource", + "description": "Process resources in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603278160625, + "endTime": 340603279430500, + "totalTime": 1175833 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "a258a1e0-a578-421e-9672-01664861b664" + } + }, + { + "head": { + "id": "e1c2cda5-4f64-4703-bd90-f606100992b9", + "name": "xuqmSdk:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603279926541, + "endTime": 340603281368250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "ca147572-8baf-40d0-b44a-04dd4b94bc00", + "logId": "2300249a-5812-49a5-8ae8-385745904378" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ca147572-8baf-40d0-b44a-04dd4b94bc00", + "name": "create xuqmSdk:default@DoNativeStrip task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603279617500 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "e1c2cda5-4f64-4703-bd90-f606100992b9" + } + }, + { + "head": { + "id": "7726f8cc-8b94-469b-b386-e849b431fc39", + "name": "Executing task :xuqmSdk:default@DoNativeStrip", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603279929291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6bb07d50-8bfd-4be1-84ac-bbcb452470aa", + "name": "Task 'xuqmSdk:default@DoNativeStrip' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603279977291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c3301d07-ba4e-4e21-828d-0259fc76fa64", + "name": "xuqmSdk : default@DoNativeStrip cost memory 0.369537353515625", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603281336041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c5ee9dc3-e704-4a01-9e53-b3bc45c1fb4f", + "name": "runTaskFromQueue task cost before running: 745 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603281358416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2300249a-5812-49a5-8ae8-385745904378", + "name": "Finished :xuqmSdk:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603279926541, + "endTime": 340603281368250, + "totalTime": 1422125 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e1c2cda5-4f64-4703-bd90-f606100992b9" + } + }, + { + "head": { + "id": "89c14c77-e7f2-41e9-b5bf-4396b79ea8df", + "name": "entry:default@CompileResource", + "description": "Compile project resources in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603281973666, + "endTime": 340603345507083 + }, + "additional": { + "children": [ + "6eff557e-118a-46d0-b081-4a425712394b", + "84e4e0f8-341b-43ad-b3a2-e11d0a297c3f" + ], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [ + "The input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/process_profile/default/module.json' has been changed." + ], + "detailId": "837fabd2-b355-49e2-a463-25f7992234ab", + "logId": "864d4171-fa9d-41f6-b77f-af970f17238c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "837fabd2-b355-49e2-a463-25f7992234ab", + "name": "create entry:default@CompileResource task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603281554458 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "89c14c77-e7f2-41e9-b5bf-4396b79ea8df" + } + }, + { + "head": { + "id": "0c5f422f-4724-4ec2-84fb-bbb97d4a2881", + "name": "restool module names: entry,xuqmSdk; moduleName=entry, taskName=default@CompileResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603281686083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "abfd5969-7f5b-41c5-a43c-29a963e72f97", + "name": "Executing task :entry:default@CompileResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603281994625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dec30ebf-d2e5-40d4-84f2-d8afc2405dca", + "name": "entry:default@CompileResource is not up-to-date, since the input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/process_profile/default/module.json' has been changed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603282643750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e53d82cb-d4d2-4b31-b1d0-6a48b911ad7b", + "name": "Incremental task entry:default@CompileResource pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603282659833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6eff557e-118a-46d0-b081-4a425712394b", + "name": "create intermediate resource category", + "description": "", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603282739333, + "endTime": 340603282956916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "89c14c77-e7f2-41e9-b5bf-4396b79ea8df", + "logId": "8c00582b-21b0-4eac-9368-e85565e1d649" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8c00582b-21b0-4eac-9368-e85565e1d649", + "name": "create intermediate resource category", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603282739333, + "endTime": 340603282956916 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "6eff557e-118a-46d0-b081-4a425712394b", + "parent": "864d4171-fa9d-41f6-b77f-af970f17238c" + } + }, + { + "head": { + "id": "4dc1dd3b-f1b5-4b67-a608-c91bd83d7824", + "name": "Use tool [/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/restool]\n [\n '/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/restool',\n '-l',\n '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resConfig.json'\n]", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603283217375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "84e4e0f8-341b-43ad-b3a2-e11d0a297c3f", + "name": "execute compile resource command using restool", + "description": "", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603283238416, + "endTime": 340603345047416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "89c14c77-e7f2-41e9-b5bf-4396b79ea8df", + "logId": "55165b21-36dd-49f6-8c24-3390a096eabd" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "dd5b05c7-d837-459b-a0ae-bab8b1ae56f8", + "name": "current process memoryUsage: {\n rss: 277102592,\n heapTotal: 169000960,\n heapUsed: 141525344,\n external: 4209356,\n arrayBuffers: 1270516\n} os memoryUsage :47.831634521484375", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603283571333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0f9b49de-b1e8-4a4d-9bbf-c0cccf9e9295", + "name": "Info: Pack: normal pack mode\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603295592000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b66a4a9a-2972-4166-a0ef-13e7fc24fa75", + "name": "Info: hardware concurrency count is : 14\nInfo: thread count is : 14\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603337432541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "01b5c09f-8bb5-46f9-b5d8-d6b071e59e64", + "name": "Info: thread pool is started\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603337553541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8981caec-47b2-4453-b0cc-2bf5b93c63bd", + "name": "Info: GenericCompiler::CompileFiles\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603338233250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fd1ed24c-6375-47a7-a830-2126009923ee", + "name": "Info: GenericCompiler::CompileFiles\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603338739125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4a1b118d-1438-425e-9cc2-3184cdc471c4", + "name": "04-28 19:03:50.241 16777 4097163 E C01400/ImageTranscoderUtils: DecodeToRGBA IN\n04-28 19:03:50.241 16777 4097163 E C01400/ImageTranscoderUtils: ImageFilter IN /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base/media/app_icon.png\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603340116708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2a5e10f0-74ff-4362-aa41-170f4676693b", + "name": "04-28 19:03:50.244 16777 4097163 E C01400/ImageTranscoder: TranscodeSLR DecodeToRGBA failed\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603342441458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "29b8824e-6256-437c-8fac-bd0128ca9efe", + "name": "Warning: ScaleImage failed, error message: IMAGE_ERROR, file path = /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base/media/app_icon.png\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603342531833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "39cd80b8-c2e7-4ca1-afc8-f9feac27221c", + "name": "Info: restool resources compile success.\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603342968500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b810389f-3ef9-45d7-bedd-ae4c3333af31", + "name": "Info: thread pool is stopped\n", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603343168291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "55165b21-36dd-49f6-8c24-3390a096eabd", + "name": "execute compile resource command using restool", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603283238416, + "endTime": 340603345047416 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "84e4e0f8-341b-43ad-b3a2-e11d0a297c3f", + "parent": "864d4171-fa9d-41f6-b77f-af970f17238c" + } + }, + { + "head": { + "id": "cd1c56b2-42a8-4921-b5f5-04fc1161b585", + "name": "entry : default@CompileResource cost memory 0.93109130859375", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603345441166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "942b7df3-fd91-4447-acd0-294ba3efe429", + "name": "runTaskFromQueue task cost before running: 810 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603345492875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "864d4171-fa9d-41f6-b77f-af970f17238c", + "name": "Finished :entry:default@CompileResource", + "description": "Compile project resources in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603281973666, + "endTime": 340603345507083, + "totalTime": 63485791 + }, + "additional": { + "logType": "info", + "children": [ + "8c00582b-21b0-4eac-9368-e85565e1d649", + "55165b21-36dd-49f6-8c24-3390a096eabd" + ], + "durationId": "89c14c77-e7f2-41e9-b5bf-4396b79ea8df" + } + }, + { + "head": { + "id": "ba4fac0f-2101-418d-a23f-ed36ac5d58b8", + "name": "entry:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603345865666, + "endTime": 340603345977958 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "da6c3b46-3f5c-4833-9eb1-de2fbbfce6af", + "logId": "4404efa1-9508-4c3d-94c0-902d85e7b856" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "da6c3b46-3f5c-4833-9eb1-de2fbbfce6af", + "name": "create entry:default@BuildNativeWithNinja task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603345748250 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "ba4fac0f-2101-418d-a23f-ed36ac5d58b8" + } + }, + { + "head": { + "id": "a68fd6ab-eb14-4f02-9d71-77750d1409b8", + "name": "Executing task :entry:default@BuildNativeWithNinja", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603345868958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e6ab0849-ef83-4605-8b2f-20c0521bdac1", + "name": "entry : default@BuildNativeWithNinja cost memory 0.01776885986328125", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603345949458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "73e1e6f4-3419-4687-8fd7-eab6b185316f", + "name": "runTaskFromQueue task cost before running: 810 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603345969208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4404efa1-9508-4c3d-94c0-902d85e7b856", + "name": "Finished :entry:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603345865666, + "endTime": 340603345977958, + "totalTime": 94625 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ba4fac0f-2101-418d-a23f-ed36ac5d58b8" + } + }, + { + "head": { + "id": "c573572f-fd3b-4aac-b580-1655511f0d29", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603346674958, + "endTime": 340605976175666 + }, + "additional": { + "children": [ + "32c33c11-3319-4b31-b964-0b38851e685f", + "3b63cef9-15b0-4512-9c8e-ad283b4819a0" + ], + "state": "failed", + "targetName": "default", + "moduleName": "entry", + "category": "ArkTS", + "taskRunReasons": [], + "detailId": "3f2530c3-c73c-47a1-8a5d-16f1dba2f425", + "logId": "09ce257b-39ab-4c0a-9c85-1db404f7b79d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3f2530c3-c73c-47a1-8a5d-16f1dba2f425", + "name": "create entry:default@CompileArkTS task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603346196041 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "c573572f-fd3b-4aac-b580-1655511f0d29" + } + }, + { + "head": { + "id": "84d67900-1020-468e-98ab-eb61848bf71c", + "name": "Executing task :entry:default@CompileArkTS", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603346679375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "946d6bb4-525f-4c38-a55b-36e9f5014dc6", + "name": "obfuscationOptions: undefined", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603346951958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b9c7add7-c8ed-4a5c-9b9a-a654d0401ace", + "name": "Task 'entry:default@CompileArkTS' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603347871208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6652ef45-4b32-411c-b567-ac18e7ba5984", + "name": "build config:", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603351191833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "95adfea9-7233-4fb8-8191-4cbb82e4d12b", + "name": "Compile arkts with external api path: /Users/xuqinmin/sdk/command-line-tools/sdk/default/hms/ets", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603351553791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fac8416d-5eae-4b5c-be91-004b7ee2519d", + "name": "Since there is no instance or instance is terminated, create a new worker pool.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603351736416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "57092c00-a8f0-4227-b5ce-5511c084306c", + "name": "Worker pool is initialized with config: {\n minPoolNum: 2,\n maxPoolNum: undefined,\n maxCoreSize: undefined,\n cacheCapacity: undefined,\n cacheTtl: undefined\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603351773083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8cc4a8a6-0f35-4427-b80e-d22179b84b71", + "name": "Create resident worker with id: 0.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603352275541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "77619ea3-3f27-450e-a209-df5beabe216f", + "name": "Create resident worker with id: 1.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603353078000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4b6e2108-6472-4925-9cab-b4075b6eb2bb", + "name": "default@CompileArkTS work[0] is submitted.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603353926041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "32c33c11-3319-4b31-b964-0b38851e685f", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Worker4", + "startTime": 340603354731125, + "endTime": 340605975952250 + }, + "additional": { + "children": [], + "state": "failed", + "targetName": "default", + "moduleName": "entry", + "category": "", + "taskRunReasons": [], + "parent": "c573572f-fd3b-4aac-b580-1655511f0d29", + "logId": "47f95ca6-b739-4f89-a9ca-6d8718011516" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ec8a4883-5d00-49d3-b26a-bf87da521fb5", + "name": "default@CompileArkTS work[0] is pushed to ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603354076250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "30fa2aac-b63e-4b38-a887-2737d08b7fff", + "name": "A work dispatched to worker[13] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603354145625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "85a97db1-9e3d-4011-bc25-e4134c9fbfe1", + "name": "A work dispatched to worker[12] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603354154833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ed50ea14-4f32-4cd5-9329-798145535b51", + "name": "A work dispatched to worker[11] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603354161666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "94c9eebf-9c2c-48c2-9f8d-8b8a31909202", + "name": "A work dispatched to worker[10] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603354167458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e258f220-3f9a-402c-b7fb-e11ae7c0ea17", + "name": "A work dispatched to worker[9] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603354173125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9b2c599a-a0c4-4564-94a6-eb1ee639d750", + "name": "A work dispatched to worker[8] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603354179541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ab3b090d-bd88-43e4-8503-371988b38691", + "name": "A work dispatched to worker[7] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603354186208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "03cf93e1-76f4-4f46-9763-1ef0d4b1626c", + "name": "A work dispatched to worker[6] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603354192041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e2e9ae64-336d-4872-afc1-c2f975513eec", + "name": "A work dispatched to worker[5] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603354198041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "113ec29b-aad3-43d5-9607-e2d78efc7ea0", + "name": "Create resident worker with id: 4.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603354239625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6fe35bc2-60a2-49bf-95aa-9e4113871c1f", + "name": "default@CompileArkTS work[0] has been dispatched to worker[4].", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603354758833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "620c0a60-9e82-453c-950f-a51e47eac393", + "name": "default@CompileArkTS work[0] is dispatched.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603354830166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7c818eba-dd24-49a1-8277-aece9b18383c", + "name": "CopyResources startTime: 340603354874125", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603354876000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ac8b1b45-7767-4fb6-980a-6a1683c0546f", + "name": "default@CompileArkTS work[1] is submitted.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603354898916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3b63cef9-15b0-4512-9c8e-ad283b4819a0", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Worker12", + "startTime": 340603590334833, + "endTime": 340603594433000 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "", + "taskRunReasons": [], + "parent": "c573572f-fd3b-4aac-b580-1655511f0d29", + "logId": "7c3b538d-20b4-4668-a523-ce698f863080" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8a470fca-7e33-4a63-bcce-eb95c0cfeb74", + "name": "default@CompileArkTS work[1] is pushed to ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603354946583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "45148196-0755-4910-bc8d-0f1d5e447b8a", + "name": "A work dispatched to worker[13] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603354958708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e7a1608c-4fe6-4809-b10c-692acfc7b1dc", + "name": "Create resident worker with id: 12.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603354991791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "21013487-62ab-4929-b3fa-8c66b33cb05d", + "name": "default@CompileArkTS work[1] has been dispatched to worker[12].", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603355390666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ac537942-6686-42c4-8655-f9ac89fbae5c", + "name": "default@CompileArkTS work[1] is dispatched.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603355405333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3545f7b9-6c11-4bd1-9ebe-591a04e28647", + "name": "entry : default@CompileArkTS cost memory 2.0907363891601562", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603355466791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "64feb32f-ea89-41d6-b6ad-ef14f9220700", + "name": "entry:default@BuildJS", + "description": "Compile ArkTS or JS components using Node.js for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603356238791, + "endTime": 340603356993583 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "ArkTS", + "taskRunReasons": [], + "detailId": "a8c46ef2-ab92-4a11-924a-04059ba42d79", + "logId": "db160354-9e53-48e7-9bcd-2091ae983a66" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a8c46ef2-ab92-4a11-924a-04059ba42d79", + "name": "create entry:default@BuildJS task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603355657250 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "64feb32f-ea89-41d6-b6ad-ef14f9220700" + } + }, + { + "head": { + "id": "9c955ced-4a78-4654-bf55-74cbc68e91eb", + "name": "Executing task :entry:default@BuildJS", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603356243250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f8087247-5aaa-4d90-bea3-4bc4b5c1dd85", + "name": "Task 'entry:default@BuildJS' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603356356041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "220e2f4f-914f-4fa5-8ad6-9d2cafb78df2", + "name": "entry : default@BuildJS cost memory 0.13338470458984375", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603356945625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cc354f93-f090-4f37-be36-3ab310166d62", + "name": "runTaskFromQueue task cost before running: 821 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603356967583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "db160354-9e53-48e7-9bcd-2091ae983a66", + "name": "Finished :entry:default@BuildJS", + "description": "Compile ArkTS or JS components using Node.js for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603356238791, + "endTime": 340603356993583, + "totalTime": 720333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "64feb32f-ea89-41d6-b6ad-ef14f9220700" + } + }, + { + "head": { + "id": "8577038e-72c7-4fe6-8b67-9e5b9cee2311", + "name": "entry:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603357177416, + "endTime": 340603358871708 + }, + "additional": { + "children": [ + "950e8c99-d364-4b24-a2ac-7cefd4cee7c8" + ], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [ + "The input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/libs/default' has been changed." + ], + "detailId": "c94c9bef-9cb8-41d4-b362-54165cd14c26", + "logId": "f194f82c-4585-4183-b0d3-85b0d4085f74" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c94c9bef-9cb8-41d4-b362-54165cd14c26", + "name": "create entry:default@ProcessLibs task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603357093375 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "8577038e-72c7-4fe6-8b67-9e5b9cee2311" + } + }, + { + "head": { + "id": "c7b2a2cb-cfc0-478f-a458-37d3e2f12e08", + "name": "Executing task :entry:default@ProcessLibs", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603357179166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e82c13bd-f89a-4247-afaf-926d63db7371", + "name": "entry:default@ProcessLibs is not up-to-date, since the input file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/libs/default' has been changed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603357948041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "41a84205-9572-4019-a709-fa2c77f4897f", + "name": "Incremental task entry:default@ProcessLibs pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603357964833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "950e8c99-d364-4b24-a2ac-7cefd4cee7c8", + "name": "process libs", + "description": "", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603358623583, + "endTime": 340603358833250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "8577038e-72c7-4fe6-8b67-9e5b9cee2311", + "logId": "6c050358-48e2-4381-be5e-46b66fef3048" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "dd594f5a-6baf-40c4-961a-9c6fc066bb25", + "name": "Worker dispatch failed, running processLibs on main thread.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603358625125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6c050358-48e2-4381-be5e-46b66fef3048", + "name": "process libs", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603358623583, + "endTime": 340603358833250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "950e8c99-d364-4b24-a2ac-7cefd4cee7c8", + "parent": "f194f82c-4585-4183-b0d3-85b0d4085f74" + } + }, + { + "head": { + "id": "ccfac30c-eaad-40b6-95cf-bd45c1894a21", + "name": "entry : default@ProcessLibs cost memory 0.393585205078125", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603358848916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "db4a2e88-63fe-42bb-a5b1-b86566ca2d06", + "name": "runTaskFromQueue task cost before running: 823 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603358864375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f194f82c-4585-4183-b0d3-85b0d4085f74", + "name": "Finished :entry:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603357177416, + "endTime": 340603358871708, + "totalTime": 1681417 + }, + "additional": { + "logType": "info", + "children": [ + "6c050358-48e2-4381-be5e-46b66fef3048" + ], + "durationId": "8577038e-72c7-4fe6-8b67-9e5b9cee2311" + } + }, + { + "head": { + "id": "046fa5c4-1db2-4570-8080-3ac2cf3fe790", + "name": "entry:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603359082958, + "endTime": 340603359329208 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "b22dd813-0976-49db-bfe7-396a25a32346", + "logId": "f797264b-a373-44be-9655-420cff4d2349" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b22dd813-0976-49db-bfe7-396a25a32346", + "name": "create entry:default@DoNativeStrip task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603358973666 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "046fa5c4-1db2-4570-8080-3ac2cf3fe790" + } + }, + { + "head": { + "id": "a78768e8-3ef1-4fea-94f7-9d9561293086", + "name": "Executing task :entry:default@DoNativeStrip", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603359085000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "74e9c4fe-e471-4572-8776-19383ac82f44", + "name": "Task 'entry:default@DoNativeStrip' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603359111458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6d1bb92f-4c53-4aa8-a18b-3106f0d1b1c7", + "name": "Incremental task entry:default@DoNativeStrip pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603359304833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "73acc5d7-2654-40ca-a246-08ea2fb0f76a", + "name": "entry : default@DoNativeStrip cost memory 0.05815887451171875", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603359319833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f797264b-a373-44be-9655-420cff4d2349", + "name": "UP-TO-DATE :entry:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603359082958, + "endTime": 340603359329208 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "046fa5c4-1db2-4570-8080-3ac2cf3fe790" + } + }, + { + "head": { + "id": "9924f9ee-5c74-470b-881e-8ba1ee0b5b90", + "name": "entry:default@CacheNativeLibs", + "description": "cache native strip .so fileInfo", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603359706791, + "endTime": 340603359990958 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "b7ebd7c3-2ddc-4bf6-95e2-a0a45205e014", + "logId": "54246cf1-6053-47a7-a050-e0be7fd2a1d5" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b7ebd7c3-2ddc-4bf6-95e2-a0a45205e014", + "name": "create entry:default@CacheNativeLibs task", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603359401500 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "9924f9ee-5c74-470b-881e-8ba1ee0b5b90" + } + }, + { + "head": { + "id": "490ac541-a9c3-4f81-8c85-ea604436539a", + "name": "Executing task :entry:default@CacheNativeLibs", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603359711166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "313076bd-39df-4857-b6a1-7e4562dc6582", + "name": "Task 'entry:default@CacheNativeLibs' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603359751791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1f90796e-0aec-4cad-ac1d-b9850b7f16d9", + "name": "Incremental task entry:default@CacheNativeLibs pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603359967000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b7609d4a-1e3f-4d0b-8a64-2b011d457621", + "name": "entry : default@CacheNativeLibs cost memory 0.06795501708984375", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603359983166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "54246cf1-6053-47a7-a050-e0be7fd2a1d5", + "name": "UP-TO-DATE :entry:default@CacheNativeLibs", + "description": "cache native strip .so fileInfo", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603359706791, + "endTime": 340603359990958 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9924f9ee-5c74-470b-881e-8ba1ee0b5b90" + } + }, + { + "head": { + "id": "3f20a3f5-3e96-4b2a-996f-203b339d1edd", + "name": "worker[12] has one work done.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603594601958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e86ce9b6-4d43-4b8b-9fa1-3b05643b2eb9", + "name": "CopyResources is end, endTime: 340603594739958", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603594746166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "61ce28ee-a063-428f-a83e-a58cd2eba7f7", + "name": "default@CompileArkTS work[1] done.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603594870500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7c3b538d-20b4-4668-a523-ce698f863080", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Worker12", + "startTime": 340603590334833, + "endTime": 340603594433000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3b63cef9-15b0-4512-9c8e-ad283b4819a0", + "parent": "09ce257b-39ab-4c0a-9c85-1db404f7b79d" + } + }, + { + "head": { + "id": "ede032df-d34e-42cb-aae6-a72b5218e4c8", + "name": "A work dispatched to worker[12] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603594953708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d48ada91-e97d-41ae-907d-c0b5538a6646", + "name": "worker[4] has one work error.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605975718000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d6b40728-927f-4eca-bcab-6a2ae5c0c44c", + "name": "default@CompileArkTS work[0] failed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605976052458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "47f95ca6-b739-4f89-a9ca-6d8718011516", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Worker4", + "startTime": 340603354731125, + "endTime": 340605975952250 + }, + "additional": { + "logType": "error", + "children": [], + "durationId": "32c33c11-3319-4b31-b964-0b38851e685f", + "parent": "09ce257b-39ab-4c0a-9c85-1db404f7b79d" + } + }, + { + "head": { + "id": "09ce257b-39ab-4c0a-9c85-1db404f7b79d", + "name": "Failed :entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340603346674958, + "endTime": 340605976175666 + }, + "additional": { + "logType": "error", + "children": [ + "47f95ca6-b739-4f89-a9ca-6d8718011516", + "7c3b538d-20b4-4668-a523-ce698f863080" + ], + "durationId": "c573572f-fd3b-4aac-b580-1655511f0d29" + } + }, + { + "head": { + "id": "25abcb6d-e22f-4498-afe6-d745e87de5c6", + "name": "\n\u001b[33m1 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:347:22\n \"globalThis\" is not supported (arkts-no-globalthis)\n\u001b[39m\u001b[39m\n\u001b[33m2 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/XuqmSDK.ets:40:12\n Classes cannot be used as objects (arkts-no-classes-as-obj)\n\u001b[39m\u001b[39m\n\u001b[33m3 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/XuqmSDK.ets:44:12\n Classes cannot be used as objects (arkts-no-classes-as-obj)\n\u001b[39m\u001b[39m\n\u001b[33m4 WARN: \u001b[33m\u001b[33mArkTS:WARN: For details about ArkTS syntax errors, see FAQs\u001b[39m\u001b[39m\n\u001b[33m5 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:28:30\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m6 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:29:25\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m7 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:37:15\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m8 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:39:15\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m9 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:41:13\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m10 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/HttpClient.ets:37:25\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m11 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:77:5\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m12 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:17:22\n 'showToast' has been deprecated.\n\u001b[39m\u001b[39m\n\u001b[33m13 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:27:22\n 'showToast' has been deprecated.\n\u001b[39m\u001b[39m\n\u001b[33m14 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:87:28\n 'showToast' has been deprecated.\n\u001b[39m\u001b[39m", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605976221041 + }, + "additional": { + "logType": "warn", + "children": [] + } + }, + { + "head": { + "id": "06c6608b-ac3f-4b13-a4aa-a3736df89d15", + "name": "hvigor build process will be closed with an error.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605976424875 + }, + "additional": { + "logType": "debug", + "children": [], + "durationId": "c573572f-fd3b-4aac-b580-1655511f0d29" + } + }, + { + "head": { + "id": "25158aed-7f2d-4195-9d3e-67c9fa87d713", + "name": "ERROR: stacktrace = Error: ArkTS Compiler Error\n\u001b[31m1 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/HttpClient.ets:30:11\n\u001b[39m\n\u001b[39m\n\u001b[31m2 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/HttpClient.ets:30:23\n\u001b[39m\n\u001b[39m\n\u001b[31m3 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/HttpClient.ets:30:64\n\u001b[39m\n\u001b[39m\n\u001b[31m4 ERROR: \u001b[31m10605008 ArkTS Compiler Error\nError Message: Use explicit types instead of \"any\", \"unknown\" (arkts-no-any-unknown) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:56:15\n\u001b[39m\n\u001b[39m\n\u001b[31m5 ERROR: \u001b[31m10605040 ArkTS Compiler Error\nError Message: Object literals cannot be used as type declarations (arkts-no-obj-literals-as-types) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:57:43\n\u001b[39m\n\u001b[39m\n\u001b[31m6 ERROR: \u001b[31m10605008 ArkTS Compiler Error\nError Message: Use explicit types instead of \"any\", \"unknown\" (arkts-no-any-unknown) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:57:68\n\u001b[39m\n\u001b[39m\n\u001b[31m7 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:83:16\n\u001b[39m\n\u001b[39m\n\u001b[31m8 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:89:18\n\u001b[39m\n\u001b[39m\n\u001b[31m9 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:90:11\n\u001b[39m\n\u001b[39m\n\u001b[31m10 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:110:18\n\u001b[39m\n\u001b[39m\n\u001b[31m11 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:124:106\n\u001b[39m\n\u001b[39m\n\u001b[31m12 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:145:115\n\u001b[39m\n\u001b[39m\n\u001b[31m13 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:161:72\n\u001b[39m\n\u001b[39m\n\u001b[31m14 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:169:105\n\u001b[39m\n\u001b[39m\n\u001b[31m15 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:176:106\n\u001b[39m\n\u001b[39m\n\u001b[31m16 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:184:107\n\u001b[39m\n\u001b[39m\n\u001b[31m17 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:192:106\n\u001b[39m\n\u001b[39m\n\u001b[31m18 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:200:92\n\u001b[39m\n\u001b[39m\n\u001b[31m19 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:207:56\n\u001b[39m\n\u001b[39m\n\u001b[31m20 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:213:56\n\u001b[39m\n\u001b[39m\n\u001b[31m21 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:219:85\n\u001b[39m\n\u001b[39m\n\u001b[31m22 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:225:81\n\u001b[39m\n\u001b[39m\n\u001b[31m23 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:228:7\n\u001b[39m\n\u001b[39m\n\u001b[31m24 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:228:46\n\u001b[39m\n\u001b[39m\n\u001b[31m25 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:233:71\n\u001b[39m\n\u001b[39m\n\u001b[31m26 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:240:121\n\u001b[39m\n\u001b[39m\n\u001b[31m27 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:246:121\n\u001b[39m\n\u001b[39m\n\u001b[31m28 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:252:120\n\u001b[39m\n\u001b[39m\n\u001b[31m29 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:254:7\n\u001b[39m\n\u001b[39m\n\u001b[31m30 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:254:46\n\u001b[39m\n\u001b[39m\n\u001b[31m31 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:259:110\n\u001b[39m\n\u001b[39m\n\u001b[31m32 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:265:160\n\u001b[39m\n\u001b[39m\n\u001b[31m33 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:271:160\n\u001b[39m\n\u001b[39m\n\u001b[31m34 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:277:90\n\u001b[39m\n\u001b[39m\n\u001b[31m35 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:288:101\n\u001b[39m\n\u001b[39m\n\u001b[31m36 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:290:7\n\u001b[39m\n\u001b[39m\n\u001b[31m37 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:290:31\n\u001b[39m\n\u001b[39m\n\u001b[31m38 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:291:7\n\u001b[39m\n\u001b[39m\n\u001b[31m39 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:291:29\n\u001b[39m\n\u001b[39m\n\u001b[31m40 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:292:7\n\u001b[39m\n\u001b[39m\n\u001b[31m41 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:292:29\n\u001b[39m\n\u001b[39m\n\u001b[31m42 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:339:7\n\u001b[39m\n\u001b[39m\n\u001b[31m43 ERROR: \u001b[31m10605008 ArkTS Compiler Error\nError Message: Use explicit types instead of \"any\", \"unknown\" (arkts-no-any-unknown) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:347:11\n\u001b[39m\n\u001b[39m\n\u001b[31m44 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/push/PushSDK.ets:16:58\n\u001b[39m\n\u001b[39m\n\u001b[31m45 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/push/PushSDK.ets:17:7\n\u001b[39m\n\u001b[39m\n\u001b[31m46 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/push/PushSDK.ets:26:60\n\u001b[39m\n\u001b[39m\n\u001b[31m47 ERROR: \u001b[31m10605060 ArkTS Compiler Error\nError Message: \"typeof\" operator is allowed only in expression contexts (arkts-no-type-query) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/XuqmSDK.ets:39:22\n\u001b[39m\n\u001b[39m\n\u001b[31m48 ERROR: \u001b[31m10605060 ArkTS Compiler Error\nError Message: \"typeof\" operator is allowed only in expression contexts (arkts-no-type-query) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/XuqmSDK.ets:43:24\n\u001b[39m\n\u001b[39m\n\u001b[31m49 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:14:19\n\u001b[39m\n\u001b[39m\n\u001b[31m50 ERROR: \u001b[31m10505001 ArkTS Compiler Error\nError Message: Cannot find name 'TextDecoder'. At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:56:62\n\u001b[39m\n\u001b[39m\n\u001b[31mCOMPILE RESULT:FAIL {ERROR:51 WARN:14}\u001b[39m\n at runArkPack (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/arkts-pack.js:1:5860)\nArkTSCompilerError: ArkTS Compiler Error\n at throwArkTsCompilerError (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/data/compose-error.js:1:423)\n at throwErrorIfHasErrorInfo (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/plugins/common-plugin.js:1:4478)\n at Object.handler (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/plugins/common-plugin.js:1:2547)\n at /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-base/node_modules/rollup/dist/shared/rollup.js:27765:40", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605976932541 + }, + "additional": { + "logType": "debug", + "children": [], + "durationId": "c573572f-fd3b-4aac-b580-1655511f0d29" + } + }, + { + "head": { + "id": "3720ade9-7a8f-49e9-878f-4a2ef186170b", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605977545708, + "endTime": 340605977771750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "4cdc39de-63db-4698-aab2-e1d99d0f5285", + "logId": "61371de5-ace5-428e-a7ad-135134e0edb4" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "61371de5-ace5-428e-a7ad-135134e0edb4", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605977545708, + "endTime": 340605977771750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3720ade9-7a8f-49e9-878f-4a2ef186170b" + } + }, + { + "head": { + "id": "2cce61d1-378d-455e-8b3d-7f7b8e962fe2", + "name": "assembleHap", + "description": "", + "type": "mark" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340602536367875, + "endTime": 340605978182000 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 3, + "second": 52 + }, + "completeCommand": "{\"prop\":[],\"_\":[\"assembleHap\"]};assembleHap", + "hvigorVersion": "6.22.4", + "markType": "history", + "nodeVersion": "v18.20.1", + "category": "build", + "state": "failed" + } + }, + { + "head": { + "id": "653223fc-7a4a-4d15-8dc4-10f3abe5dbcf", + "name": "BUILD FAILED in 3 s 442 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605978205250 + }, + "additional": { + "logType": "error", + "children": [] + } + }, + { + "head": { + "id": "aa1e7d25-7c17-4e70-ae1a-b16eb784d4aa", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605978448333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ddf663fa-ed87-443d-bfdb-e4bcc1697b03", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605978548666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "195f8cfa-c101-4bcb-8e70-03d643222f7a", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5 cache from map.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605978573500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b31775e0-25dd-45dc-89c1-a03858a3e8a7", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605978581125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "401fbb14-b15b-44a2-ab81-c2a94df5597d", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources/base/profile/main_pages.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605978603250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "39f0297c-32bc-40cd-8456-dcb254c83a23", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigor/hvigor-config.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605978623958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f93da85b-44eb-4cab-bf61-18239d424381", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605978644458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fc0f30d0-a9be-4090-9295-cfb4498b37d1", + "name": "Update task entry:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605978661708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "70f433ab-cd2a-4022-b99b-0b47f44b0234", + "name": "Incremental task entry:default@PreBuild post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605978738958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0dbac2d3-5a15-49f5-a620-64d496e11b64", + "name": "Update task xuqmSdk:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605978852458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5fba9e0b-6e67-45dc-bb05-9f48a425f9b2", + "name": "Update task xuqmSdk:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/module.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605978883041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "25bc499e-6aa5-43ff-9f2f-9226e5bb9314", + "name": "Update task xuqmSdk:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605978907375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "97eb8c00-b46e-4ead-ab5f-032622ae852d", + "name": "Update task xuqmSdk:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605978924416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3bfd8025-16fd-40d6-b666-b711d19b8f64", + "name": "Update task xuqmSdk:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigor/hvigor-config.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605978944000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e83812c1-bbf9-4abe-ba2d-5acd860be497", + "name": "Update task xuqmSdk:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605978961791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "92b80a3f-2b07-4f93-a925-6f025fe1264f", + "name": "Update task xuqmSdk:default@PreBuild input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605978978291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "97a8b237-8961-4760-a0a9-c23fe157e854", + "name": "Incremental task xuqmSdk:default@PreBuild post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979004541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "108455d9-10db-4e48-ba69-9020eada6e6d", + "name": "Update task entry:default@CreateModuleInfo output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/ModuleInfo.ts cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979038333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "147894b9-9b2e-494c-9a08-61a478c46f25", + "name": "Incremental task entry:default@CreateModuleInfo post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979111041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "da194510-5b56-4062-9c56-eeacb0f3afaa", + "name": "There is no need to refresh cache, since the incremental task entry:default@GenerateMetadata is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979123416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4c9261f2-072b-46a3-ac93-dbfd97cd9446", + "name": "Update task entry:default@GeneratePkgContextInfo output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979149916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5722a8e5-2049-4a3f-856a-ef4f681edfae", + "name": "Incremental task entry:default@GeneratePkgContextInfo post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979177916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0a67cd0d-23b0-4dca-9a41-6fe9cb2fe1d9", + "name": "Update task entry:default@ProcessIntegratedHsp output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build/cache/default/integrated_hsp/integratedHspCache.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979215625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b2b3ab20-13af-4a85-95a3-dbea39b847b0", + "name": "Incremental task entry:default@ProcessIntegratedHsp post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979250125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9be3a9c1-2b82-4fb0-a2b3-34e07b30cae3", + "name": "Update task xuqmSdk:default@CreateHarBuildProfile input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979266750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "25f6a609-c3c2-4422-a4e5-7c29499b0203", + "name": "Update task xuqmSdk:default@CreateHarBuildProfile input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979287750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a8465a02-bc0b-484e-9375-49aa4296aee0", + "name": "Update task xuqmSdk:default@CreateHarBuildProfile output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/BuildProfile.ets cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979304375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0c083aa9-11f6-4574-aefa-9d1445455875", + "name": "Incremental task xuqmSdk:default@CreateHarBuildProfile post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979326416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2a2a71e3-f26b-4ce5-a7e8-a219e7cac470", + "name": "Update task xuqmSdk:default@MergeProfile input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979347958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "93dfc1a8-6d12-4e4f-910e-d5595e922543", + "name": "Update task xuqmSdk:default@MergeProfile input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979364291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "abeb1f98-42ec-473f-9ddd-e7c97eb83c83", + "name": "Update task xuqmSdk:default@MergeProfile input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/module.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979378208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ed2c04a0-c836-491d-9e87-16d289ea7b19", + "name": "Update task xuqmSdk:default@MergeProfile output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/merge_profile/default/module.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979397333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2d0d6a6a-0626-4f98-95cb-68ba4630801a", + "name": "Incremental task xuqmSdk:default@MergeProfile post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979424375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3cc6fe88-e757-4043-9546-d05b0028458c", + "name": "Update task entry:default@SyscapTransform input file:/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/syscap_tool cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979436875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c20fb8e0-9944-4a53-8022-daa5b1103e4a", + "name": "Update task entry:default@SyscapTransform input file:/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/ets/api/device-define cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979469833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "315a48bf-a808-4005-80d9-a1d706dd3304", + "name": "Update task entry:default@SyscapTransform output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/syscap/default/rpcid.sc cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979655958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "08160d76-39b4-4623-9739-2eaeca7fe88f", + "name": "Incremental task entry:default@SyscapTransform post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979685666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fc279bc0-0b35-4f0e-927f-59f5aaa5209b", + "name": "Update task entry:default@ProcessRouterMap input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979771291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4b82f1c4-03ae-44f3-a70a-7184d3695c4a", + "name": "Update task entry:default@ProcessRouterMap input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979788541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ae6f3d21-0de5-4ebb-8494-e4bd35ba3d3c", + "name": "Update task entry:default@ProcessRouterMap input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979803208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "93c51ee8-afe8-4ebf-949b-aa85b96fd462", + "name": "Update task entry:default@ProcessRouterMap input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache from map.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979818416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4b6376ed-4a1f-4052-976b-04cc568e8186", + "name": "Update task entry:default@ProcessRouterMap output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/router_map/default/temp-router-map.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979829875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "422d12c1-e6b4-4d1f-9436-4377aa712d2a", + "name": "Update task entry:default@ProcessRouterMap output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/router_map/default/loader-router-map.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979851541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7622868a-1a3f-4ec5-878e-f2b654302236", + "name": "Incremental task entry:default@ProcessRouterMap post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979947166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "19de9f31-fa47-46e3-b051-74431f128cbc", + "name": "Update task entry:default@ProcessShareConfig input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605979995041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "01df5985-ada4-41af-9ed5-91c08b28c3ae", + "name": "Update task entry:default@ProcessShareConfig input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/oh-package.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980010833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6a76397f-014c-4948-a3eb-d838ccd09565", + "name": "Update task entry:default@ProcessShareConfig input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980025500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9b260551-095f-4bb2-a049-cab19cfac028", + "name": "Update task entry:default@ProcessShareConfig input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache from map.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980040125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3ab1cfcd-17f3-4a59-8ca2-13a01c43d700", + "name": "Update task entry:default@ProcessShareConfig output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/share_config/default/temp-share-config.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980048250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "08299f13-6577-4988-9452-93b343d1ca43", + "name": "Incremental task entry:default@ProcessShareConfig post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980076375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "73584284-acad-45c2-915c-3600d2b87d49", + "name": "Update task entry:default@ProcessStartupConfig input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache from map.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980131208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "093d0aa1-c541-4c85-b388-2b9838befc7f", + "name": "Update task entry:default@ProcessStartupConfig output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/startup/default/startup_config.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980141875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "35ae67d4-bbe3-4906-ace2-8dd5e5b46287", + "name": "Incremental task entry:default@ProcessStartupConfig post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980173875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fddaa6e0-2777-46cd-82bc-4a314c0cd723", + "name": "Update task entry:default@CreateBuildProfile input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980184916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "eff5c333-8fb2-45f6-b094-7b5682a48043", + "name": "Update task entry:default@CreateBuildProfile input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5 cache from map.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980200958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5b30c998-109d-4b5c-affa-ec19be0b443f", + "name": "Update task entry:default@CreateBuildProfile output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/BuildProfile.ets cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980209000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7d9e69a9-c363-480e-9e51-cd1db64bebf9", + "name": "Incremental task entry:default@CreateBuildProfile post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980234666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c744114e-ec20-4314-bfc7-5190a9bff294", + "name": "Update task entry:default@MergeProfile input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980308750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "60067ef3-c025-4b6d-a6db-68278cfa1325", + "name": "Update task entry:default@MergeProfile input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5 cache from map.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980333666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ad5e1580-74ce-4446-aa9c-4166c8ba0179", + "name": "Update task entry:default@MergeProfile input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980339625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a6853c68-948c-4853-958c-a1f5840dbb42", + "name": "Update task entry:default@MergeProfile input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/merge_profile/default/module.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980353333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e2a95574-9be7-4ad5-9570-72b9526ba3a0", + "name": "Update task entry:default@MergeProfile output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/merge_profile/default/module.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980374250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e4e28312-bc60-42fa-8163-6c3af4e62bea", + "name": "Incremental task entry:default@MergeProfile post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980401583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bd4bda69-68a0-4602-91ef-fd0b9259b67f", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980632958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ab997df5-f7ec-4672-9d1f-8dc7cc07ce8f", + "name": "Update task entry:default@GenerateLoaderJson input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache from map.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980644250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "eaa13259-5e1f-49f1-a1c4-190979198a40", + "name": "Update task entry:default@GenerateLoaderJson input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/router_map/default/temp-router-map.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980650458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fe3a1b22-e0e1-4e42-86bb-cb28dd842e42", + "name": "Update task entry:default@GenerateLoaderJson output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/loader.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980673041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fa96c831-50d1-414a-a835-29bf5fb48a30", + "name": "Incremental task entry:default@GenerateLoaderJson post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980704125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4aade27a-6129-4fab-9db9-1691d3fd8d32", + "name": "Update task entry:default@MakePackInfo input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/AppScope/app.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980729000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b4b65800-bd47-4e46-9613-6b55de342d5f", + "name": "Update task entry:default@MakePackInfo input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/module.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980744250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b192b7f9-8411-4cb6-971e-3344705ed5fb", + "name": "Update task entry:default@MakePackInfo input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5 cache from map.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980758291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e02e1c16-0b70-4bc6-810a-fcae534ae8d3", + "name": "Update task entry:default@MakePackInfo output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/pack.info cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980776541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "50213f20-5008-497d-9b61-483fc7120e13", + "name": "Incremental task entry:default@MakePackInfo post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980807916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "edf72cf3-ffee-41e1-86e3-57e2e7fe9b07", + "name": "Update task entry:default@ProcessProfile input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/merge_profile/default/module.json cache from map.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980824750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7b8737bb-03f7-4fae-9ba5-566b59e5513b", + "name": "Update task entry:default@ProcessProfile output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/process_profile/default/module.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980833875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a28e7381-003b-4d47-b920-ecb7315edf6b", + "name": "Incremental task entry:default@ProcessProfile post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980858166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "aca04b42-ad28-44af-9523-4b4346aeba07", + "name": "Update task xuqmSdk:default@ProcessLibs input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980895833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dbd59b38-fb8b-45df-a5e3-1430e5dbf932", + "name": "Update task xuqmSdk:default@ProcessLibs input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980910750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "947d31ab-3d18-4b19-9c72-8fb34e65a097", + "name": "Update task xuqmSdk:default@ProcessLibs output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/libs/default cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605980926916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6d790c5e-4dd5-4ee6-a46e-b5978666863f", + "name": "Incremental task xuqmSdk:default@ProcessLibs post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605981003083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "370e8e34-a9d4-4960-bbe4-dc91458200d2", + "name": "Update task entry:default@ProcessResource output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resConfig.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605981022875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "43d469ea-c4a5-490c-a401-914a110f32d3", + "name": "Update task entry:default@ProcessResource output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/opt-compression.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605981041291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e90c7399-6a15-46a9-9e60-4033e1d99b8f", + "name": "Incremental task entry:default@ProcessResource post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605981061541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "73393e0d-ba1c-492a-8537-0a64e2ba1643", + "name": "Update task xuqmSdk:default@DoNativeStrip input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/libs/default cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605981071375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "727406c8-2175-47cc-8c54-7857b8cd4af6", + "name": "Update task xuqmSdk:default@DoNativeStrip output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/stripped_native_libs/default cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605981104166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4327b89a-06d9-4a3f-a161-297797256bfc", + "name": "Incremental task xuqmSdk:default@DoNativeStrip post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605981143166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "222b2f32-27ed-49a7-9ba6-47790e8c7eec", + "name": "Update task entry:default@CompileResource input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/resources cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605981246833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4d9023e6-90b0-4264-8658-8d35d880d347", + "name": "Update task entry:default@CompileResource input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/process_profile/default/module.json cache from map.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605981480000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6b76ed4e-34b0-413d-b56b-793821efca83", + "name": "Update task entry:default@CompileResource input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resConfig.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605981487083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c9bd97dc-327c-4885-95c3-85e967c34b4d", + "name": "Update task entry:default@CompileResource output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605981508583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5092787b-4c76-4737-913c-98cde44c0268", + "name": "Update task entry:default@CompileResource output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/r/default/ResourceTable.h cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605981961416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "108963e7-54d8-4e0a-a5dd-3324efa2eedd", + "name": "Update task entry:default@CompileResource output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/r/default cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605981980708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4e688299-3162-4d51-9c71-d18902fa6ed1", + "name": "Incremental task entry:default@CompileResource post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605982036375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "13d591c0-5b57-4481-853f-e77de5344a39", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605982290625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "98861d80-6c3d-47ac-bda0-3086944d20a6", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/Index.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605982419083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3ca05fea-a914-4d0f-b9da-c54f61c36691", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605982449791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b7b22cd7-ceb4-47a3-a422-924255177ce2", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605982750583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "096e91f0-73e6-440c-9a8d-cf7a53d131d5", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ResourceTable.txt cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605982840041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4689a787-2d75-4c8c-9ed2-010dc780f0b4", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ark_module.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605982857541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2ab7edc1-0146-4bf5-9ee4-d8e878603e9a", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605982874000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0a7997c0-86df-4390-b038-b48c180442f7", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605982919458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "df03f10a-ad65-4986-9ee4-7af6adb35f62", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983031625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7965d80b-9d00-4eb0-8895-70367b868338", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/BuildProfile.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983049833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0897e756-7ee6-41cc-8f2e-1fb31a4e357b", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/BuildProfile.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983066083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ae932e9f-01ad-4352-a3d7-eae674f2a7df", + "name": "Update task entry:default@CompileArkTS output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983113583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7a08d32e-0344-49a1-82c2-332e8f93bb0d", + "name": "Incremental task entry:default@CompileArkTS post-execution cost:2 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983180208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b87e8fef-ffed-40fe-92d8-ec0a75cc3313", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983312791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "41cb03cf-e5f5-4480-a920-3e4254e890de", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/Index.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983374708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "937ac755-d5fd-4684-bb91-57e3131e4072", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983392041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "569239e4-b6c1-4f8b-8f8b-890f1ed96023", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ResourceTable.txt cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983474333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ca716307-3110-457f-9a4f-723b31f8182f", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ark_module.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983491250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0a5981f5-fbb8-4a82-9af1-fbcf418e7b99", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983506000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1c111f62-64ad-4026-b3b5-36a9f975b465", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983548083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ac22ae9c-8e6b-4816-8215-bfe186719292", + "name": "Update task entry:default@BuildJS output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/js cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983567416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a2f4fa7a-990e-494b-a8dd-536b607222ae", + "name": "Incremental task entry:default@BuildJS post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983629000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "76f60391-f452-4877-93ab-1c2430176403", + "name": "Update task entry:default@ProcessLibs input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/build/default/intermediates/libs/default cache from map.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983659500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ed6b76a8-4c81-4276-a497-e5736f99649c", + "name": "Update task entry:default@ProcessLibs input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983666666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ffbbf4b4-9952-4c79-9e65-8da7d088106c", + "name": "Update task entry:default@ProcessLibs input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build-profile.json5 cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983684375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c535f182-e1ac-4b80-95ee-27c94180be88", + "name": "Update task entry:default@ProcessLibs output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/libs/default cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983702875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "da58ce72-1bd6-4efa-aed5-60c92915c0e2", + "name": "Incremental task entry:default@ProcessLibs post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983744625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0e462d38-4448-42f4-81fe-1d8ddcd8b832", + "name": "There is no need to refresh cache, since the incremental task entry:default@DoNativeStrip is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983758375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d9c4194f-dad3-4dd3-847d-184977a50b0e", + "name": "There is no need to refresh cache, since the incremental task entry:default@CacheNativeLibs is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 16738, + "tid": "Main Thread", + "startTime": 340605983773958 + }, + "additional": { + "logType": "debug", + "children": [] + } + } + ], + "workLog": [] +} \ No newline at end of file diff --git a/.hvigor/report/report-202604281917275180.json b/.hvigor/report/report-202604281917275180.json new file mode 100644 index 0000000..4910433 --- /dev/null +++ b/.hvigor/report/report-202604281917275180.json @@ -0,0 +1,10736 @@ +{ + "version": "2.0", + "ppid": 25727, + "events": [ + { + "head": { + "id": "55223ccf-4710-42e0-adfd-9470e2ac82e6", + "name": "env: nodejsVersion=v18.20.1", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420468890000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fa70b6f1-7b0d-49c9-968e-4816dc1f0904", + "name": "env: hvigor-config.json5 content = {\n modelVersion: '5.0.0',\n dependencies: {},\n execution: {\n daemon: false,\n incremental: true,\n parallel: true,\n typeCheck: false\n },\n logging: { level: 'info' },\n debugging: { stacktrace: false },\n nodeOptions: { maxOldSpaceSize: 4096 }\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420469549958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "299ad826-16fd-4f55-9412-b1e34ce803af", + "name": "env: daemon=false", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420470363666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "943de643-e3ac-4290-85c8-574e194cc6e2", + "name": "no-daemon, use the parent process.execArgv --max-old-space-size=4096,--max-semi-space-size=16,--expose-gc,--enable-source-maps", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420470398875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8bc17249-e01d-47d0-866d-24e1951b9011", + "name": "init", + "description": "Initialize and build task graph.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420622957333, + "endTime": 341421498062291 + }, + "additional": { + "children": [ + "b554e32b-5225-4b78-8a85-2d3bf606e6d3", + "5d838991-5234-467e-a561-16dc8627024a", + "8942b25d-35f5-49ad-95ff-d33ba66fed5e", + "0fb533fe-aee4-4f0a-ab6f-754507cab08e", + "5ca77bd0-efa8-420c-b0b2-f6809be49c75", + "ca1db23b-4f45-4b1d-a369-c362a124d9d8", + "79fe9afd-5e92-4033-8bc1-94a1189790f7" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Init", + "taskRunReasons": [], + "logId": "d15945ac-1a62-41b3-ad04-d68edd8fbf33" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b554e32b-5225-4b78-8a85-2d3bf606e6d3", + "name": "create hvigor project model", + "description": "Initialize hvigor project model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420622961166, + "endTime": 341420628596958 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "8bc17249-e01d-47d0-866d-24e1951b9011", + "logId": "668d1b2b-6bc5-4284-91ad-65c4a4a85525" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "5d838991-5234-467e-a561-16dc8627024a", + "name": "configure hvigor plugin", + "description": "Configure hvigor plugin.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420628607583, + "endTime": 341421497130708 + }, + "additional": { + "children": [ + "233c39fd-84d3-4a75-a9e2-24dfa87dc844", + "4c352186-d51a-4e79-bedb-26aacfcdfc43", + "77ac4dca-5f4a-4a92-84bc-483ae4dce71a", + "f454d3d7-419e-4269-9e65-b3464499a5f1", + "c1d0edd8-a505-45d5-bc71-d3fdca2fba97", + "a92fefd0-5439-409b-91b7-175f1dcf8580", + "96f5f84e-a47a-4262-b571-000ce60228bc", + "811cb3ed-7861-4af2-9581-ccdc8320c0b9", + "ec6eed85-1152-4325-94a1-bb7bb45f413b" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "8bc17249-e01d-47d0-866d-24e1951b9011", + "logId": "e18b68a5-26cd-4081-8cb8-358e1d58e69c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8942b25d-35f5-49ad-95ff-d33ba66fed5e", + "name": "build task graph", + "description": "Build task graph.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421497144791, + "endTime": 341421498054000 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "8bc17249-e01d-47d0-866d-24e1951b9011", + "logId": "4eacf333-12b5-4c04-9d3f-046c6b0ffceb" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0fb533fe-aee4-4f0a-ab6f-754507cab08e", + "name": "init task execution option", + "description": "Init task execution option.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421498056500, + "endTime": 341421498059291 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "8bc17249-e01d-47d0-866d-24e1951b9011", + "logId": "b8469aeb-abf7-4ea5-880b-bd06c588f29c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "5ca77bd0-efa8-420c-b0b2-f6809be49c75", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420624808625, + "endTime": 341420624949041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "8bc17249-e01d-47d0-866d-24e1951b9011", + "logId": "56b01a42-c313-4efd-a2c8-19325a403eaf" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "56b01a42-c313-4efd-a2c8-19325a403eaf", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420624808625, + "endTime": 341420624949041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "5ca77bd0-efa8-420c-b0b2-f6809be49c75", + "parent": "d15945ac-1a62-41b3-ad04-d68edd8fbf33" + } + }, + { + "head": { + "id": "ca1db23b-4f45-4b1d-a369-c362a124d9d8", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420625599416, + "endTime": 341420625613166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "8bc17249-e01d-47d0-866d-24e1951b9011", + "logId": "80faf424-2ea3-4994-90b6-87c7e6262ad3" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "80faf424-2ea3-4994-90b6-87c7e6262ad3", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420625599416, + "endTime": 341420625613166 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ca1db23b-4f45-4b1d-a369-c362a124d9d8", + "parent": "d15945ac-1a62-41b3-ad04-d68edd8fbf33" + } + }, + { + "head": { + "id": "7caebb20-a25a-4e9f-b715-d25a1e411930", + "name": "Hvigor init with startParameters:{\n hvigorfileTypeCheck: false,\n parallelExecution: true,\n incrementalExecution: true,\n printStackTrace: true,\n daemon: false,\n analyze: 0,\n logLevel: Level { level: 20000, levelStr: 'INFO', colour: 'green' },\n optimizationStrategy: 'memory',\n hotCompile: undefined,\n hotReloadBuild: undefined,\n customizedParam: undefined\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420625772208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "044dd1ed-56d1-419b-8e7e-4f5e86e5c3f2", + "name": "Cache service initialization finished in 3 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420628540916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "668d1b2b-6bc5-4284-91ad-65c4a4a85525", + "name": "create hvigor project model", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420622961166, + "endTime": 341420628596958 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "b554e32b-5225-4b78-8a85-2d3bf606e6d3", + "parent": "d15945ac-1a62-41b3-ad04-d68edd8fbf33" + } + }, + { + "head": { + "id": "233c39fd-84d3-4a75-a9e2-24dfa87dc844", + "name": "init configuration", + "description": "Initialize configuration.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420628759166, + "endTime": 341420628769375 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "5d838991-5234-467e-a561-16dc8627024a", + "logId": "5950c6d8-f66d-4e94-b676-af38c107c887" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "4c352186-d51a-4e79-bedb-26aacfcdfc43", + "name": "configure project task", + "description": "Configure project task.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420628782875, + "endTime": 341420629021666 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "5d838991-5234-467e-a561-16dc8627024a", + "logId": "0b6c1030-8b3d-4e06-81f6-1850150d8288" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "77ac4dca-5f4a-4a92-84bc-483ae4dce71a", + "name": "eval project", + "description": "Evaluate project.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420629060083, + "endTime": 341421454970791 + }, + "additional": { + "children": [ + "fa16e93e-7af9-4e1b-b2ed-ad64cbe254da", + "9c2bb9c0-172a-4876-a29d-8eea35d2371a", + "271abf3a-d197-4faf-a68c-899ad9b8f4f8" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "5d838991-5234-467e-a561-16dc8627024a", + "logId": "3789fd72-02bb-4090-8d0c-d800575f09ba" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f454d3d7-419e-4269-9e65-b3464499a5f1", + "name": "eval modules", + "description": "Evaluate modules.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421455103666, + "endTime": 341421488147666 + }, + "additional": { + "children": [ + "719a99a4-92b8-4838-ab8b-ae1e74824599", + "2d9c097c-aa7b-4324-a28f-85ab704fd54b" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "5d838991-5234-467e-a561-16dc8627024a", + "logId": "a376b42d-c76d-4a85-a9e5-07ec56d6fd48" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c1d0edd8-a505-45d5-bc71-d3fdca2fba97", + "name": "add config dependencies", + "description": "Add configuration dependencies.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421488165041, + "endTime": 341421488165458 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "5d838991-5234-467e-a561-16dc8627024a", + "logId": "758cde6e-122f-4438-9ad3-5704864ce150" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a92fefd0-5439-409b-91b7-175f1dcf8580", + "name": "ohpm install", + "description": "Ohpm install event.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421488293208, + "endTime": 341421490916375 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "5d838991-5234-467e-a561-16dc8627024a", + "logId": "10dff098-a979-4473-98ac-595424837e83" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "96f5f84e-a47a-4262-b571-000ce60228bc", + "name": "eval hook", + "description": "EvaluateEvent hook.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421490921291, + "endTime": 341421497088541 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "5d838991-5234-467e-a561-16dc8627024a", + "logId": "2757feab-9b31-4ac9-8c94-d389faa7e857" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "811cb3ed-7861-4af2-9581-ccdc8320c0b9", + "name": "fin configuration", + "description": "Finish configuration.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421497098000, + "endTime": 341421497125916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "5d838991-5234-467e-a561-16dc8627024a", + "logId": "323d1d4e-3762-4cb9-947d-90d90cfc0435" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "5950c6d8-f66d-4e94-b676-af38c107c887", + "name": "init configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420628759166, + "endTime": 341420628769375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "233c39fd-84d3-4a75-a9e2-24dfa87dc844", + "parent": "e18b68a5-26cd-4081-8cb8-358e1d58e69c" + } + }, + { + "head": { + "id": "0b6c1030-8b3d-4e06-81f6-1850150d8288", + "name": "configure project task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420628782875, + "endTime": 341420629021666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "4c352186-d51a-4e79-bedb-26aacfcdfc43", + "parent": "e18b68a5-26cd-4081-8cb8-358e1d58e69c" + } + }, + { + "head": { + "id": "fa16e93e-7af9-4e1b-b2ed-ad64cbe254da", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420629180375, + "endTime": 341420629194958 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "77ac4dca-5f4a-4a92-84bc-483ae4dce71a", + "logId": "ca84ddea-436d-4b0f-ac1f-6118303a5932" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ca84ddea-436d-4b0f-ac1f-6118303a5932", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420629180375, + "endTime": 341420629194958 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "fa16e93e-7af9-4e1b-b2ed-ad64cbe254da", + "parent": "3789fd72-02bb-4090-8d0c-d800575f09ba" + } + }, + { + "head": { + "id": "9c2bb9c0-172a-4876-a29d-8eea35d2371a", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420629308875, + "endTime": 341421454868666 + }, + "additional": { + "children": [ + "5e082c9b-0776-4e15-a74d-34414ba9df68", + "6090bf9f-c753-46c7-a275-0b1b6ff70bf1" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "77ac4dca-5f4a-4a92-84bc-483ae4dce71a", + "logId": "e687c39c-e86f-4348-a511-6c67566f6001" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "5e082c9b-0776-4e15-a74d-34414ba9df68", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420629309333, + "endTime": 341421346915416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "9c2bb9c0-172a-4876-a29d-8eea35d2371a", + "logId": "c5bc4ae0-a104-44bc-9ee7-aee090c32db5" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "6090bf9f-c753-46c7-a275-0b1b6ff70bf1", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421346928875, + "endTime": 341421454858500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "9c2bb9c0-172a-4876-a29d-8eea35d2371a", + "logId": "e51592ae-b55d-46ae-8f25-2e6b4657ee2c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e2848648-462c-4bcc-9834-848dc460a47b", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420629312875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6db9fefa-0ade-44a8-b013-da04d2e1aedf", + "name": "hvigorfile, require result: { default: { system: [Function: appTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421346752958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c5bc4ae0-a104-44bc-9ee7-aee090c32db5", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420629309333, + "endTime": 341421346915416 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "5e082c9b-0776-4e15-a74d-34414ba9df68", + "parent": "e687c39c-e86f-4348-a511-6c67566f6001" + } + }, + { + "head": { + "id": "757f88ee-ce00-44a4-9ce0-a4ad4d61033d", + "name": "hvigorfile, binding system plugins [Function: appTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421346977583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "256a8375-a545-4025-ad9e-39e5f8f996bb", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421347550583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4a8b8c40-0994-4e15-a9e8-1bb338029880", + "name": "App plugin prepare start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421347588458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "714185d0-59a5-43f3-9e8f-ca7cebbeb754", + "name": "App plugin prepare end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421347620583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c10c9e19-bffc-4404-9643-79a269989e0a", + "name": "App plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421347634791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "be320c2e-5d22-47e7-b7e0-fc315ca35e82", + "name": "App plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421430559458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d05b31e9-daa8-4e41-adf5-0b6fa4056b81", + "name": "App plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421430783625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "750344b7-e8c0-41da-b713-83c5df7a0bd5", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421430799208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8d9869ea-b058-4aed-bc79-3f82b5485b92", + "name": "Start initialize project's product build option map with build mode debug.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421431445375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1276c672-8c7e-400a-9f3b-61fbdc7ecc13", + "name": "Picking option from product 'default' with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421431574583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4c0410f2-c241-4e26-acc4-a4b54558dbc1", + "name": "Product 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421431766833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1b99e30e-6639-43ee-8fb3-083d3d67d0fb", + "name": "End initialize project's product build option map with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421431787000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b655ce18-6d78-41a0-a074-15436a707649", + "name": "Obtain build option for product 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421432652916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c2e5f08f-8837-4cf2-ad69-f1d00a1e0558", + "name": "No signingConfig found, initRemoteHspCache failed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421433569041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8f7d59c7-c28a-4a0e-8c26-372c02dfa19b", + "name": "harmonyOS sdk scan", + "description": "HarmonyOS sdk scan", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421434458208, + "endTime": 341421435414791 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Other", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "d3ff7ed9-58bd-47bd-8583-b5fdd3a217a9", + "name": "Local scan or download HarmonyOS sdk components toolchains,ets,js,native,previewer", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421434465583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c6d697b2-b425-4773-bed9-c2afa4a9452d", + "name": "hmscore sdk scan", + "description": "Hmscore sdk scan", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421435474750, + "endTime": 341421435650833 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Other", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "d4543560-5b6a-4f84-8bb3-4e610ed0e2d5", + "name": "Local scan or download hmscore sdk components toolchains,ets,native", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421435481375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6c7c6c24-4d42-4612-b712-dbd93fa803eb", + "name": "Start recording SDK configuration permission data.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421436381875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9f9674e5-0b4d-4e10-a9f7-640b724a7d77", + "name": "Sdk init in 18 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421451930875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "372501fb-ed6c-4207-ad74-e4154ea9535e", + "name": "sdkVersion", + "description": "6.0.2.130", + "type": "mark" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421452061041 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 17, + "second": 28 + }, + "markType": "other" + } + }, + { + "head": { + "id": "922610b1-069e-48fe-8cab-ec6e3d995b4a", + "name": "caseSensitiveCheckOn", + "description": "caseSensitiveCheck check is on", + "type": "mark" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421452093083 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 17, + "second": 28 + }, + "markType": "other" + } + }, + { + "head": { + "id": "dc418e96-9c3d-4267-9a0e-f5be6d1809ca", + "name": "Project task initialization takes 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421454674333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f670a0ee-aecf-4fa6-acea-59924fb93b02", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421454750166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c107bf9a-29d4-47bc-b974-3adc1db0596f", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421454763000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ca15ef06-ff5c-4568-b7af-0bccecb507bd", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421454816458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e51592ae-b55d-46ae-8f25-2e6b4657ee2c", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421346928875, + "endTime": 341421454858500 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "6090bf9f-c753-46c7-a275-0b1b6ff70bf1", + "parent": "e687c39c-e86f-4348-a511-6c67566f6001" + } + }, + { + "head": { + "id": "e687c39c-e86f-4348-a511-6c67566f6001", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420629308875, + "endTime": 341421454868666 + }, + "additional": { + "logType": "info", + "children": [ + "c5bc4ae0-a104-44bc-9ee7-aee090c32db5", + "e51592ae-b55d-46ae-8f25-2e6b4657ee2c" + ], + "durationId": "9c2bb9c0-172a-4876-a29d-8eea35d2371a", + "parent": "3789fd72-02bb-4090-8d0c-d800575f09ba" + } + }, + { + "head": { + "id": "271abf3a-d197-4faf-a68c-899ad9b8f4f8", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421454937500, + "endTime": 341421454962708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "77ac4dca-5f4a-4a92-84bc-483ae4dce71a", + "logId": "97b6459c-8a99-4e82-99ac-4355f77deefb" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "97b6459c-8a99-4e82-99ac-4355f77deefb", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421454937500, + "endTime": 341421454962708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "271abf3a-d197-4faf-a68c-899ad9b8f4f8", + "parent": "3789fd72-02bb-4090-8d0c-d800575f09ba" + } + }, + { + "head": { + "id": "3789fd72-02bb-4090-8d0c-d800575f09ba", + "name": "eval project", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420629060083, + "endTime": 341421454970791 + }, + "additional": { + "logType": "info", + "children": [ + "ca84ddea-436d-4b0f-ac1f-6118303a5932", + "e687c39c-e86f-4348-a511-6c67566f6001", + "97b6459c-8a99-4e82-99ac-4355f77deefb" + ], + "durationId": "77ac4dca-5f4a-4a92-84bc-483ae4dce71a", + "parent": "e18b68a5-26cd-4081-8cb8-358e1d58e69c" + } + }, + { + "head": { + "id": "719a99a4-92b8-4838-ab8b-ae1e74824599", + "name": "eval submodule", + "description": "Evaluate submodule.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421455109125, + "endTime": 341421482099833 + }, + "additional": { + "children": [ + "3b9451fe-926d-414d-b0df-8f6fa89fada3", + "7abaacf2-67cd-4959-a520-d35e229ac82e", + "c4f7a8ac-ec7d-4f78-b1d3-8d1e7a6f0e52" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "f454d3d7-419e-4269-9e65-b3464499a5f1", + "logId": "a8e71ffa-567b-47af-8a28-8b41a1b8b17a" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3b9451fe-926d-414d-b0df-8f6fa89fada3", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421455165500, + "endTime": 341421455170166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "719a99a4-92b8-4838-ab8b-ae1e74824599", + "logId": "915d02aa-3311-40e4-954e-b0840d37a118" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "915d02aa-3311-40e4-954e-b0840d37a118", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421455165500, + "endTime": 341421455170166 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3b9451fe-926d-414d-b0df-8f6fa89fada3", + "parent": "a8e71ffa-567b-47af-8a28-8b41a1b8b17a" + } + }, + { + "head": { + "id": "7abaacf2-67cd-4959-a520-d35e229ac82e", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421455196666, + "endTime": 341421481779708 + }, + "additional": { + "children": [ + "7e44410f-6760-4386-88fe-3f79a5023789", + "a048f82c-214a-4e25-a961-e574c1357b42" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "719a99a4-92b8-4838-ab8b-ae1e74824599", + "logId": "6d0316f7-9cbf-4e73-84f4-94d0684f820d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "7e44410f-6760-4386-88fe-3f79a5023789", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421455196833, + "endTime": 341421459704333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "7abaacf2-67cd-4959-a520-d35e229ac82e", + "logId": "41acbb59-be40-439e-89c5-660e5830eea2" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a048f82c-214a-4e25-a961-e574c1357b42", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421459712416, + "endTime": 341421481774416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "7abaacf2-67cd-4959-a520-d35e229ac82e", + "logId": "c56ca003-39ed-456c-9215-72d645e517bc" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "65c48820-a08e-4e18-a957-2c1f20bd06c1", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421455197958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fa47529f-1254-4ac8-b276-e979da2cfe77", + "name": "hvigorfile, require result: { default: { system: [Function: harTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421459663166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "41acbb59-be40-439e-89c5-660e5830eea2", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421455196833, + "endTime": 341421459704333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "7e44410f-6760-4386-88fe-3f79a5023789", + "parent": "6d0316f7-9cbf-4e73-84f4-94d0684f820d" + } + }, + { + "head": { + "id": "fde2f2e8-1ded-4fec-a0af-befee509d7b2", + "name": "hvigorfile, binding system plugins [Function: harTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421459717125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "26c88f4d-fc3b-4e63-b424-634c56f53c8c", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421459763750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b0c4f925-40fd-48ea-b56a-2333ad82c9f2", + "name": "Har plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421459785125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "09c1601f-c8d1-44f2-b7f4-3278c9805b60", + "name": "failed to load cangjie to dynamically generate schemas: Error: Cannot find module '@ohos/cangjie-build-support/index'\nRequire stack:\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/hooks/cangjie-register.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/strategy/stage-init-strategy.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/abstract-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/factory/plugin-factory.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/index.js\n- /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/boot/index.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/cli/main/cli.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/bin/hvigor.js", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421460164750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "76d7d093-4fac-4ee6-9f81-5cf88175959a", + "name": "Start initialize module-target build option map, moduleName=xuqmSdk, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421478253625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7cb7c3f6-1dfd-49e3-8e8a-f63db9b4e266", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421478362083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d5efa095-36e7-48b1-928e-1c8f88357a39", + "name": "Module 'xuqmSdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421478585125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fe441ea3-2573-4a64-814a-8c39197f216d", + "name": "End initialize module-target build option map, moduleName=xuqmSdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421478597791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "50ac2d71-6393-4f34-956b-a70e3a254570", + "name": "Start initialize module-target build option map, moduleName=xuqmSdk, buildMode=release", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421478617291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a1ca7afd-a271-46ae-92db-07518f2509dd", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421478629500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "159132b9-15e3-46ec-b6b9-772aed646f2d", + "name": "Module 'xuqmSdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421478789166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "38af88c4-46d5-4d8f-9fa4-6ca938b46a06", + "name": "End initialize module-target build option map, moduleName=xuqmSdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421478800916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5c62d645-047b-46c3-b95b-d2c55c9cbbf1", + "name": "Start initialize module-target build option map, moduleName=xuqmSdk, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421478954250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "243bf5c2-f902-4126-ad5c-715b69597f83", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421479016375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9b011a22-a1cb-45ad-88b6-ab0ad79c60a4", + "name": "Module 'xuqmSdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421479183500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3af1ea12-e715-43ea-a7a1-7cb3be7854e1", + "name": "End initialize module-target build option map, moduleName=xuqmSdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421479196083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fb67fac5-51a0-4695-b1b9-ee8b2165eafb", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421479305833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "588ed9d5-8d3a-4e01-9fe7-6c3190bc037d", + "name": "Module xuqmSdk task initialization takes 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421481644375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "33652800-9648-4c72-bf90-4e9f04b07098", + "name": "Har plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421481691250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dab44eda-a8a8-4029-99f3-82ffb9f96f7e", + "name": "Har plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421481713958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d3cf5905-683c-4ffc-8086-d2d008d050d9", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421481722291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "415a2d8b-7c43-4810-8fee-2c00a054e6df", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421481752166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "afa4b6fc-8f61-4355-aeca-2e898e596a72", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421481762666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cf8d6127-9f94-48ed-adda-8b50b44dde9c", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421481768791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c56ca003-39ed-456c-9215-72d645e517bc", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421459712416, + "endTime": 341421481774416 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "a048f82c-214a-4e25-a961-e574c1357b42", + "parent": "6d0316f7-9cbf-4e73-84f4-94d0684f820d" + } + }, + { + "head": { + "id": "6d0316f7-9cbf-4e73-84f4-94d0684f820d", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421455196666, + "endTime": 341421481779708 + }, + "additional": { + "logType": "info", + "children": [ + "41acbb59-be40-439e-89c5-660e5830eea2", + "c56ca003-39ed-456c-9215-72d645e517bc" + ], + "durationId": "7abaacf2-67cd-4959-a520-d35e229ac82e", + "parent": "a8e71ffa-567b-47af-8a28-8b41a1b8b17a" + } + }, + { + "head": { + "id": "c4f7a8ac-ec7d-4f78-b1d3-8d1e7a6f0e52", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421482091625, + "endTime": 341421482095333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "719a99a4-92b8-4838-ab8b-ae1e74824599", + "logId": "c3c19fc4-042a-4d80-b4e1-875146f1285a" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c3c19fc4-042a-4d80-b4e1-875146f1285a", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421482091625, + "endTime": 341421482095333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "c4f7a8ac-ec7d-4f78-b1d3-8d1e7a6f0e52", + "parent": "a8e71ffa-567b-47af-8a28-8b41a1b8b17a" + } + }, + { + "head": { + "id": "a8e71ffa-567b-47af-8a28-8b41a1b8b17a", + "name": "eval submodule", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421455109125, + "endTime": 341421482099833 + }, + "additional": { + "logType": "info", + "children": [ + "915d02aa-3311-40e4-954e-b0840d37a118", + "6d0316f7-9cbf-4e73-84f4-94d0684f820d", + "c3c19fc4-042a-4d80-b4e1-875146f1285a" + ], + "durationId": "719a99a4-92b8-4838-ab8b-ae1e74824599", + "parent": "a376b42d-c76d-4a85-a9e5-07ec56d6fd48" + } + }, + { + "head": { + "id": "2d9c097c-aa7b-4324-a28f-85ab704fd54b", + "name": "eval submodule", + "description": "Evaluate submodule.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421482111833, + "endTime": 341421488143250 + }, + "additional": { + "children": [ + "26c30fd6-8133-40f0-89e1-87210231251d", + "514b91e2-bf38-4a44-8f69-69e59287266d", + "19c6dc89-8e94-4a30-ae87-51f404a57986" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "f454d3d7-419e-4269-9e65-b3464499a5f1", + "logId": "6bf4699b-94d1-47e3-a4b8-3ca9dc8f3502" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "26c30fd6-8133-40f0-89e1-87210231251d", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421482148250, + "endTime": 341421482150250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "2d9c097c-aa7b-4324-a28f-85ab704fd54b", + "logId": "f1d924a7-9127-4245-80ed-a4dcfd76a321" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f1d924a7-9127-4245-80ed-a4dcfd76a321", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421482148250, + "endTime": 341421482150250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "26c30fd6-8133-40f0-89e1-87210231251d", + "parent": "6bf4699b-94d1-47e3-a4b8-3ca9dc8f3502" + } + }, + { + "head": { + "id": "514b91e2-bf38-4a44-8f69-69e59287266d", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421482165375, + "endTime": 341421488107666 + }, + "additional": { + "children": [ + "3e38aad1-71ab-4963-a8e7-a69fd62f65c7", + "975f258e-85bd-4310-85a1-19a438631a84" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "2d9c097c-aa7b-4324-a28f-85ab704fd54b", + "logId": "b68fc786-a0f1-4943-a8b3-1bf52ff41f4e" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3e38aad1-71ab-4963-a8e7-a69fd62f65c7", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421482165541, + "endTime": 341421485313083 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "514b91e2-bf38-4a44-8f69-69e59287266d", + "logId": "1fe25865-c0c8-423b-908f-115afa4135bb" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "975f258e-85bd-4310-85a1-19a438631a84", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421485320458, + "endTime": 341421488102666 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "514b91e2-bf38-4a44-8f69-69e59287266d", + "logId": "4e8ed6f9-8471-4dba-a3ea-0d3eca29c8ca" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b4a0d51e-4d87-436f-aba3-25e0fb91997c", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421482166333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8720de66-2e20-4243-aa92-8729b8748ab6", + "name": "hvigorfile, require result: { default: { system: [Function: hapTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421485267416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1fe25865-c0c8-423b-908f-115afa4135bb", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421482165541, + "endTime": 341421485313083 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3e38aad1-71ab-4963-a8e7-a69fd62f65c7", + "parent": "b68fc786-a0f1-4943-a8b3-1bf52ff41f4e" + } + }, + { + "head": { + "id": "f1f03f42-f61f-4086-8207-5e31fbc77070", + "name": "hvigorfile, binding system plugins [Function: hapTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421485325916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d398ad4a-0065-4ea1-8000-cc78a2d1473d", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421485379583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8c18c348-29a6-4cf6-a358-9d92a43e6ac9", + "name": "Hap plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421485398583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e4bb54bf-c8da-4542-a8f0-cc2990e27a77", + "name": "failed to load cangjie to dynamically generate schemas: Error: Cannot find module '@ohos/cangjie-build-support/index'\nRequire stack:\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/hooks/cangjie-register.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/strategy/stage-init-strategy.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/abstract-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/factory/plugin-factory.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/index.js\n- /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/boot/index.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/cli/main/cli.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/bin/hvigor.js", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421485498291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1dcf0ac7-0637-418e-a9fc-b77b8bea93f1", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421487146666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "db0c96aa-d16d-4243-9ab4-ae2464e97f2a", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421487169166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a29d6890-7a5c-4579-8d60-65401b0806e3", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421487226208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f1e77553-a36e-4f36-bee0-e2188809582d", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421487234875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2ff0d727-3949-40e9-a461-bc36bc792990", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=release", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421487249500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "404c8928-b0ed-4b51-af58-f72e0da8bc0c", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421487259666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "df4ca971-acd6-464f-8a0d-90a15ac4c1c3", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421487302833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0f63fcff-67a0-4eb9-9e00-1f4ca11d67f0", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421487311416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "087fc26b-0ba6-4f0f-bddc-168f75f03b51", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421487331666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "77367083-875e-40df-9188-55a71fd34f1e", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421487341291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1e724d4f-fc76-4090-a4f3-eda1e4de98d9", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421487374666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c653806e-1754-4f08-a1d0-6c18401445a7", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421487381708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7e02b103-2431-45e5-9de7-4c747f1b2226", + "name": "Obtain build option for module 'entry' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421487391250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7153fa74-73d0-4d40-a777-17fad25a8df9", + "name": "Module entry task initialization takes 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421488011250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "00400714-296f-413d-b9ec-720d3788b508", + "name": "Hap plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421488039708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a9ae6372-1ca4-4dad-bcf6-b4f14585422d", + "name": "Hap plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421488049083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4a400a7a-00cc-43ff-b27d-116a4459b5d6", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421488055083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dddda970-67b9-4e45-a59d-2143d6a377bd", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421488080916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3704ccd1-17cc-45c0-b180-0127a19efc6c", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421488090125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "aae26a3b-802f-4e73-807c-6df1b0080a2f", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421488096416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4e8ed6f9-8471-4dba-a3ea-0d3eca29c8ca", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421485320458, + "endTime": 341421488102666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "975f258e-85bd-4310-85a1-19a438631a84", + "parent": "b68fc786-a0f1-4943-a8b3-1bf52ff41f4e" + } + }, + { + "head": { + "id": "b68fc786-a0f1-4943-a8b3-1bf52ff41f4e", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421482165375, + "endTime": 341421488107666 + }, + "additional": { + "logType": "info", + "children": [ + "1fe25865-c0c8-423b-908f-115afa4135bb", + "4e8ed6f9-8471-4dba-a3ea-0d3eca29c8ca" + ], + "durationId": "514b91e2-bf38-4a44-8f69-69e59287266d", + "parent": "6bf4699b-94d1-47e3-a4b8-3ca9dc8f3502" + } + }, + { + "head": { + "id": "19c6dc89-8e94-4a30-ae87-51f404a57986", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421488135625, + "endTime": 341421488139333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "2d9c097c-aa7b-4324-a28f-85ab704fd54b", + "logId": "6711aa1e-fe81-4e5e-b335-d214a60a2b95" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "6711aa1e-fe81-4e5e-b335-d214a60a2b95", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421488135625, + "endTime": 341421488139333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "19c6dc89-8e94-4a30-ae87-51f404a57986", + "parent": "6bf4699b-94d1-47e3-a4b8-3ca9dc8f3502" + } + }, + { + "head": { + "id": "6bf4699b-94d1-47e3-a4b8-3ca9dc8f3502", + "name": "eval submodule", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421482111833, + "endTime": 341421488143250 + }, + "additional": { + "logType": "info", + "children": [ + "f1d924a7-9127-4245-80ed-a4dcfd76a321", + "b68fc786-a0f1-4943-a8b3-1bf52ff41f4e", + "6711aa1e-fe81-4e5e-b335-d214a60a2b95" + ], + "durationId": "2d9c097c-aa7b-4324-a28f-85ab704fd54b", + "parent": "a376b42d-c76d-4a85-a9e5-07ec56d6fd48" + } + }, + { + "head": { + "id": "a376b42d-c76d-4a85-a9e5-07ec56d6fd48", + "name": "eval modules", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421455103666, + "endTime": 341421488147666 + }, + "additional": { + "logType": "info", + "children": [ + "a8e71ffa-567b-47af-8a28-8b41a1b8b17a", + "6bf4699b-94d1-47e3-a4b8-3ca9dc8f3502" + ], + "durationId": "f454d3d7-419e-4269-9e65-b3464499a5f1", + "parent": "e18b68a5-26cd-4081-8cb8-358e1d58e69c" + } + }, + { + "head": { + "id": "758cde6e-122f-4438-9ad3-5704864ce150", + "name": "add config dependencies", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421488165041, + "endTime": 341421488165458 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "c1d0edd8-a505-45d5-bc71-d3fdca2fba97", + "parent": "e18b68a5-26cd-4081-8cb8-358e1d58e69c" + } + }, + { + "head": { + "id": "ec6eed85-1152-4325-94a1-bb7bb45f413b", + "name": "\"nodesEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421488172166, + "endTime": 341421488290416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "5d838991-5234-467e-a561-16dc8627024a", + "logId": "5f47dd4a-c6e9-46e1-8385-47c4d8dd4ae6" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "caa65413-27be-49dc-85e1-0d5f58e8b7cc", + "name": "project has submodules:xuqmSdk,entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421488198625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "61387d3e-ba76-44da-aa1e-99c6b8224b5f", + "name": "module:xuqmSdk no need to execute packageHap", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421488255250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5f47dd4a-c6e9-46e1-8385-47c4d8dd4ae6", + "name": "\"nodesEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421488172166, + "endTime": 341421488290416 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ec6eed85-1152-4325-94a1-bb7bb45f413b", + "parent": "e18b68a5-26cd-4081-8cb8-358e1d58e69c" + } + }, + { + "head": { + "id": "91e69f7d-15eb-4f3a-8cd5-9833f7225088", + "name": "start to load updatedOhPackageInfo to the disk", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421488982291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bf8104c2-cfb0-4ca9-90e2-572e71ec6c7a", + "name": "load to the disk finished", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421490723583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "10dff098-a979-4473-98ac-595424837e83", + "name": "ohpm install", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421488293208, + "endTime": 341421490916375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "a92fefd0-5439-409b-91b7-175f1dcf8580", + "parent": "e18b68a5-26cd-4081-8cb8-358e1d58e69c" + } + }, + { + "head": { + "id": "607555ad-2de8-4e3f-8520-45dee53c1865", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421490958500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b7c19536-6b3e-4a1f-a7d2-65a3c652066b", + "name": "Module XuqmGroup-HarmonySDK Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421491613583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "78026db4-7993-4282-a690-38bec04eb430", + "name": "Module XuqmGroup-HarmonySDK's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421491624333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "85422967-b65e-47c2-b05b-6029941e6b7b", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421493613208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "01008ec2-e333-4687-b67f-0c66d7b70d01", + "name": "Module xuqmSdk Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421494045708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6e5ad81d-7fa3-4c31-8927-19f166cb7194", + "name": "Module xuqmSdk's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421494062208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6c559d2d-3876-49ae-9114-bcd9502ea256", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421495520166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8605f9b7-5c15-4361-a058-608ae86a054f", + "name": "Module entry Collected Dependency: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421496497458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "396efccc-51a5-4801-b2e3-73ccb64475b8", + "name": "Module entry's total dependency: 1", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421496510958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2757feab-9b31-4ac9-8c94-d389faa7e857", + "name": "eval hook", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421490921291, + "endTime": 341421497088541 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "96f5f84e-a47a-4262-b571-000ce60228bc", + "parent": "e18b68a5-26cd-4081-8cb8-358e1d58e69c" + } + }, + { + "head": { + "id": "28373956-8238-4ab3-8a03-5a57dfdd30cc", + "name": "Configuration phase cost:869 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421497116125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "323d1d4e-3762-4cb9-947d-90d90cfc0435", + "name": "fin configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421497098000, + "endTime": 341421497125916 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "811cb3ed-7861-4af2-9581-ccdc8320c0b9", + "parent": "e18b68a5-26cd-4081-8cb8-358e1d58e69c" + } + }, + { + "head": { + "id": "e18b68a5-26cd-4081-8cb8-358e1d58e69c", + "name": "configure hvigor plugin", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420628607583, + "endTime": 341421497130708 + }, + "additional": { + "logType": "info", + "children": [ + "5950c6d8-f66d-4e94-b676-af38c107c887", + "0b6c1030-8b3d-4e06-81f6-1850150d8288", + "3789fd72-02bb-4090-8d0c-d800575f09ba", + "a376b42d-c76d-4a85-a9e5-07ec56d6fd48", + "758cde6e-122f-4438-9ad3-5704864ce150", + "10dff098-a979-4473-98ac-595424837e83", + "2757feab-9b31-4ac9-8c94-d389faa7e857", + "323d1d4e-3762-4cb9-947d-90d90cfc0435", + "5f47dd4a-c6e9-46e1-8385-47c4d8dd4ae6" + ], + "durationId": "5d838991-5234-467e-a561-16dc8627024a", + "parent": "d15945ac-1a62-41b3-ad04-d68edd8fbf33" + } + }, + { + "head": { + "id": "79fe9afd-5e92-4033-8bc1-94a1189790f7", + "name": "\"taskGraphResolved\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421498033916, + "endTime": 341421498048791 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "8bc17249-e01d-47d0-866d-24e1951b9011", + "logId": "630cbef2-03bd-4087-a13f-0f48941f2938" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "630cbef2-03bd-4087-a13f-0f48941f2938", + "name": "\"taskGraphResolved\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421498033916, + "endTime": 341421498048791 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "79fe9afd-5e92-4033-8bc1-94a1189790f7", + "parent": "d15945ac-1a62-41b3-ad04-d68edd8fbf33" + } + }, + { + "head": { + "id": "4eacf333-12b5-4c04-9d3f-046c6b0ffceb", + "name": "build task graph", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421497144791, + "endTime": 341421498054000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "8942b25d-35f5-49ad-95ff-d33ba66fed5e", + "parent": "d15945ac-1a62-41b3-ad04-d68edd8fbf33" + } + }, + { + "head": { + "id": "b8469aeb-abf7-4ea5-880b-bd06c588f29c", + "name": "init task execution option", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421498056500, + "endTime": 341421498059291 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "0fb533fe-aee4-4f0a-ab6f-754507cab08e", + "parent": "d15945ac-1a62-41b3-ad04-d68edd8fbf33" + } + }, + { + "head": { + "id": "d15945ac-1a62-41b3-ad04-d68edd8fbf33", + "name": "init", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420622957333, + "endTime": 341421498062291 + }, + "additional": { + "logType": "info", + "children": [ + "668d1b2b-6bc5-4284-91ad-65c4a4a85525", + "e18b68a5-26cd-4081-8cb8-358e1d58e69c", + "4eacf333-12b5-4c04-9d3f-046c6b0ffceb", + "b8469aeb-abf7-4ea5-880b-bd06c588f29c", + "56b01a42-c313-4efd-a2c8-19325a403eaf", + "80faf424-2ea3-4994-90b6-87c7e6262ad3", + "630cbef2-03bd-4087-a13f-0f48941f2938" + ], + "durationId": "8bc17249-e01d-47d0-866d-24e1951b9011" + } + }, + { + "head": { + "id": "ff38ae0d-ce0b-4ecf-972e-2404656b78bc", + "name": "Configuration task cost before running: 876 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421498422041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cca4927e-67b5-42ad-b4b9-40d0b7abf756", + "name": "entry:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421500409375, + "endTime": 341421504541291 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Verification", + "taskRunReasons": [], + "detailId": "1816265f-56f9-4fc2-b55c-5e2c526c5d61", + "logId": "3f4a4b3e-69ac-465b-a145-5756dbc20cfa" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "1816265f-56f9-4fc2-b55c-5e2c526c5d61", + "name": "create entry:default@PreBuild task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421498671166 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "cca4927e-67b5-42ad-b4b9-40d0b7abf756" + } + }, + { + "head": { + "id": "ee4b7a92-2433-4ada-8fe6-c11258a2be45", + "name": "Executing task :entry:default@PreBuild", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421500421208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7b88956f-aaf4-4348-8ee3-17ee6654d810", + "name": "The project has not explicitly set the 'targetSdkVersion' version at build-profile.json5. It is recommended to configure it. Reference: https://developer.huawei.com/consumer/cn/doc/harmonyos-guides/ide-hvigor-build-profile-app#section45865492619", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421500592208 + }, + "additional": { + "logType": "warn", + "children": [] + } + }, + { + "head": { + "id": "f501ccf4-6548-4a5d-8f79-fc95a05ffede", + "name": "Task 'entry:default@PreBuild' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421502031375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e02a1281-6158-4fe5-be21-e9335f08127d", + "name": "Incremental task entry:default@PreBuild pre-execution cost: 2 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421504435208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e501abef-0add-483d-b6c6-b504367f9099", + "name": "entry : default@PreBuild cost memory 0.32805633544921875", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421504489666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3f4a4b3e-69ac-465b-a145-5756dbc20cfa", + "name": "UP-TO-DATE :entry:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421500409375, + "endTime": 341421504541291 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "cca4927e-67b5-42ad-b4b9-40d0b7abf756" + } + }, + { + "head": { + "id": "e0c9faa3-ebd9-408b-bf6d-b6e113025261", + "name": "xuqmSdk:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421505649125, + "endTime": 341421506890541 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Verification", + "taskRunReasons": [], + "detailId": "b088efb1-4fe9-450b-b81c-4f1c1a184028", + "logId": "b2dc1b3b-1738-47d8-95f9-1ee2499c1ed5" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b088efb1-4fe9-450b-b81c-4f1c1a184028", + "name": "create xuqmSdk:default@PreBuild task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421505081791 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "e0c9faa3-ebd9-408b-bf6d-b6e113025261" + } + }, + { + "head": { + "id": "b1d1c1cd-b3c8-4366-8072-affb833de2d6", + "name": "Executing task :xuqmSdk:default@PreBuild", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421505656166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "03024871-9366-423e-b6ce-f14dfd203d6b", + "name": "Task 'xuqmSdk:default@PreBuild' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421505810416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2113a96c-5f62-43c7-8e8c-a7d4f2226304", + "name": "Incremental task xuqmSdk:default@PreBuild pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421506842458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d3cfa975-5aa5-49bb-bc94-a8a06af7f4cd", + "name": "xuqmSdk : default@PreBuild cost memory 0.41898345947265625", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421506874375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b2dc1b3b-1738-47d8-95f9-1ee2499c1ed5", + "name": "UP-TO-DATE :xuqmSdk:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421505649125, + "endTime": 341421506890541 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e0c9faa3-ebd9-408b-bf6d-b6e113025261" + } + }, + { + "head": { + "id": "0121dd40-bc93-4874-898c-877d6b7289a7", + "name": "entry:default@CreateModuleInfo", + "description": "Create the ModuleInfo.ts file for the hap/hsp package.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421507415500, + "endTime": 341421507796875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "0589f007-e1e6-4c10-80cc-965d4453a5b0", + "logId": "b9408f46-83a2-4350-8deb-5e22e3abe63f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0589f007-e1e6-4c10-80cc-965d4453a5b0", + "name": "create entry:default@CreateModuleInfo task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421507262666 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "0121dd40-bc93-4874-898c-877d6b7289a7" + } + }, + { + "head": { + "id": "19ba8877-0a9f-4238-9cde-7c2cc1e7bfbd", + "name": "Executing task :entry:default@CreateModuleInfo", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421507419125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5bc0a409-c104-440e-984b-5196c48891b3", + "name": "Task 'entry:default@CreateModuleInfo' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421507560958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3c19c60b-81b3-4aa4-bcb0-75bb6d3a91ae", + "name": "entry : default@CreateModuleInfo cost memory 0.03595733642578125", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421507726708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f42252ec-8665-4b0a-ab70-93325a5a1a0b", + "name": "runTaskFromQueue task cost before running: 886 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421507752875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b9408f46-83a2-4350-8deb-5e22e3abe63f", + "name": "Finished :entry:default@CreateModuleInfo", + "description": "Create the ModuleInfo.ts file for the hap/hsp package.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421507415500, + "endTime": 341421507796875, + "totalTime": 327958 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "0121dd40-bc93-4874-898c-877d6b7289a7" + } + }, + { + "head": { + "id": "30c8e5d9-b910-46b8-9407-e9b45115c787", + "name": "entry:default@GenerateMetadata", + "description": "Generate metadata in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421508559708, + "endTime": 341421509149375 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "4f580ca6-ac3e-43f7-ba71-04bf20cacc23", + "logId": "dc51cf7d-c49b-44e6-9bf5-2adf29e4c3b8" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "4f580ca6-ac3e-43f7-ba71-04bf20cacc23", + "name": "create entry:default@GenerateMetadata task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421508013083 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "30c8e5d9-b910-46b8-9407-e9b45115c787" + } + }, + { + "head": { + "id": "c94ff9d4-dd90-4d77-a9fe-1ad7fca36d78", + "name": "Executing task :entry:default@GenerateMetadata", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421508565333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "41f62333-7169-486d-a94d-0199f6a70b74", + "name": "Task 'entry:default@GenerateMetadata' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421508853833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7ddc523c-fe96-400f-a4a4-90423e4aaeb8", + "name": "Incremental task entry:default@GenerateMetadata pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421509097500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cc9c29fe-af54-4c27-959a-9f02a1c535c3", + "name": "entry : default@GenerateMetadata cost memory 0.07225799560546875", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421509132500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dc51cf7d-c49b-44e6-9bf5-2adf29e4c3b8", + "name": "UP-TO-DATE :entry:default@GenerateMetadata", + "description": "Generate metadata in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421508559708, + "endTime": 341421509149375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "30c8e5d9-b910-46b8-9407-e9b45115c787" + } + }, + { + "head": { + "id": "b61d5d38-0b5d-46cc-91ae-f4dce084b2bd", + "name": "entry:default@PreCheckSyscap", + "description": "Pre-check SysCap.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421509859458, + "endTime": 341421510000750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Verification", + "taskRunReasons": [], + "detailId": "a58c3560-8ae4-42d5-b7b5-8fcd995bbea6", + "logId": "6bdaff7c-9858-4e61-9435-381dabad0641" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a58c3560-8ae4-42d5-b7b5-8fcd995bbea6", + "name": "create entry:default@PreCheckSyscap task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421509307083 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "b61d5d38-0b5d-46cc-91ae-f4dce084b2bd" + } + }, + { + "head": { + "id": "5aab1a9c-3f53-4c6d-959b-1dee847da25c", + "name": "Executing task :entry:default@PreCheckSyscap", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421509865666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "999abcc9-a20d-4770-a7a1-e02e2e07fce5", + "name": "entry : default@PreCheckSyscap cost memory 0.01348876953125", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421509969416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b4916293-6098-4914-b0b6-b4014176b3e6", + "name": "runTaskFromQueue task cost before running: 888 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421509990916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6bdaff7c-9858-4e61-9435-381dabad0641", + "name": "Finished :entry:default@PreCheckSyscap", + "description": "Pre-check SysCap.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421509859458, + "endTime": 341421510000750, + "totalTime": 124333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "b61d5d38-0b5d-46cc-91ae-f4dce084b2bd" + } + }, + { + "head": { + "id": "aa25afb2-3aaf-4229-88cd-7c102cf36a48", + "name": "entry:default@GeneratePkgContextInfo", + "description": "Generate pkgContextInfo.json to ets-loader.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421510538791, + "endTime": 341421515338750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "ed4c2920-721b-4796-b469-ac2279deb2a7", + "logId": "3e304473-e6a8-4160-b5c9-35da4b10405d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ed4c2920-721b-4796-b469-ac2279deb2a7", + "name": "create entry:default@GeneratePkgContextInfo task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421510174625 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "aa25afb2-3aaf-4229-88cd-7c102cf36a48" + } + }, + { + "head": { + "id": "39af657b-1e7a-4bba-a5e7-81109a15e10c", + "name": "Executing task :entry:default@GeneratePkgContextInfo", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421510542458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9fdaa0ed-b071-4774-8bfa-836072e0e91c", + "name": "Task 'entry:default@GeneratePkgContextInfo' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421515040125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "14bf8c7c-67c3-4229-91d1-7d861ce85881", + "name": "Incremental task entry:default@GeneratePkgContextInfo pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421515293791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d535c6df-ba30-4a7e-943e-d8df022808e5", + "name": "entry : default@GeneratePkgContextInfo cost memory 0.3084564208984375", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421515321875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3e304473-e6a8-4160-b5c9-35da4b10405d", + "name": "UP-TO-DATE :entry:default@GeneratePkgContextInfo", + "description": "Generate pkgContextInfo.json to ets-loader.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421510538791, + "endTime": 341421515338750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "aa25afb2-3aaf-4229-88cd-7c102cf36a48" + } + }, + { + "head": { + "id": "4ae9500c-95b1-41d3-a287-7c115f79b112", + "name": "entry:default@ProcessIntegratedHsp", + "description": "Use package tool process integrated hsp.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421516341916, + "endTime": 341421516572333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Sign", + "taskRunReasons": [ + "The output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build/cache/default/integrated_hsp/integratedHspCache.json' does not exist." + ], + "detailId": "f4436f94-3b5a-48d1-aae8-44cd3d59d944", + "logId": "91904b2d-9c29-49d0-b03b-8f1e6b9e8395" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f4436f94-3b5a-48d1-aae8-44cd3d59d944", + "name": "create entry:default@ProcessIntegratedHsp task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421515529416 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "4ae9500c-95b1-41d3-a287-7c115f79b112" + } + }, + { + "head": { + "id": "ec68c4fa-0bc8-4d80-8e30-f5ef5f905da1", + "name": "Executing task :entry:default@ProcessIntegratedHsp", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421516348458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "013e9598-303e-4925-8026-ddb55c4738b4", + "name": "entry:default@ProcessIntegratedHsp is not up-to-date, since the output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build/cache/default/integrated_hsp/integratedHspCache.json' does not exist.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421516478750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6f8f1977-9b8b-4040-b73e-a531e5271d02", + "name": "Incremental task entry:default@ProcessIntegratedHsp pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421516500291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7458323d-007e-4460-8d2a-f59ec51fa9e6", + "name": "entry : default@ProcessIntegratedHsp cost memory 0.04724884033203125", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421516548166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e9c88fd6-7adc-4652-abe8-2bb594528b46", + "name": "runTaskFromQueue task cost before running: 895 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421516564291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "91904b2d-9c29-49d0-b03b-8f1e6b9e8395", + "name": "Finished :entry:default@ProcessIntegratedHsp", + "description": "Use package tool process integrated hsp.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421516341916, + "endTime": 341421516572333, + "totalTime": 216958 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "4ae9500c-95b1-41d3-a287-7c115f79b112" + } + }, + { + "head": { + "id": "9fa648d2-4574-47ca-9b80-0dedca490fde", + "name": "xuqmSdk:default@CreateHarBuildProfile", + "description": "Create the BuildProfile.ets file for the HAR package.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421517123291, + "endTime": 341421517433208 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Generate", + "taskRunReasons": [], + "detailId": "4bb168f3-e0fa-404b-89ee-15ad07ebfa3b", + "logId": "9bf273e2-e531-4d9c-a1c0-32fd0f4ba5f7" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "4bb168f3-e0fa-404b-89ee-15ad07ebfa3b", + "name": "create xuqmSdk:default@CreateHarBuildProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421516776958 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "9fa648d2-4574-47ca-9b80-0dedca490fde" + } + }, + { + "head": { + "id": "59a9216b-e522-44b9-b2f6-4c9a2d2c108e", + "name": "Executing task :xuqmSdk:default@CreateHarBuildProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421517126708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9a1d71e2-eb48-4caa-addd-b00941fa1b1d", + "name": "Task 'xuqmSdk:default@CreateHarBuildProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421517204000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e31a4963-20c3-4b95-8a43-be2282a00607", + "name": "Incremental task xuqmSdk:default@CreateHarBuildProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421517405791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1c4ec863-d785-4998-af24-f6f136614bce", + "name": "xuqmSdk : default@CreateHarBuildProfile cost memory 0.2773895263671875", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421517421833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9bf273e2-e531-4d9c-a1c0-32fd0f4ba5f7", + "name": "UP-TO-DATE :xuqmSdk:default@CreateHarBuildProfile", + "description": "Create the BuildProfile.ets file for the HAR package.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421517123291, + "endTime": 341421517433208 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9fa648d2-4574-47ca-9b80-0dedca490fde" + } + }, + { + "head": { + "id": "683f043c-eae9-4448-9536-44eb9a589fcf", + "name": "xuqmSdk:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421517889125, + "endTime": 341421517961875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "69a7a381-18c8-4c99-ae43-bcb26f00e886", + "logId": "6f942bc9-8ffd-4611-91c7-f846e833d6be" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "69a7a381-18c8-4c99-ae43-bcb26f00e886", + "name": "create xuqmSdk:default@ConfigureCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421517592416 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "683f043c-eae9-4448-9536-44eb9a589fcf" + } + }, + { + "head": { + "id": "6d8177cf-f8fa-4eb0-bbf2-2d4914631538", + "name": "Executing task :xuqmSdk:default@ConfigureCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421517894125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "869b0149-9f37-451f-9137-3ba69f2428d7", + "name": "xuqmSdk : default@ConfigureCmake cost memory 0.01244354248046875", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421517934375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "62b8e639-2c99-4b28-9e07-7df4ef00062b", + "name": "runTaskFromQueue task cost before running: 896 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421517954125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6f942bc9-8ffd-4611-91c7-f846e833d6be", + "name": "Finished :xuqmSdk:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421517889125, + "endTime": 341421517961875, + "totalTime": 58708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "683f043c-eae9-4448-9536-44eb9a589fcf" + } + }, + { + "head": { + "id": "2a8ee788-0485-4ed1-95fb-da04668e0466", + "name": "xuqmSdk:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421518308625, + "endTime": 341421518878083 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Config", + "taskRunReasons": [], + "detailId": "818fe7bd-7313-45cc-ae0d-ab68fa98b4d5", + "logId": "5b71eae3-0984-4339-b359-c53c40c304f6" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "818fe7bd-7313-45cc-ae0d-ab68fa98b4d5", + "name": "create xuqmSdk:default@MergeProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421518133708 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "2a8ee788-0485-4ed1-95fb-da04668e0466" + } + }, + { + "head": { + "id": "60c9536f-cee7-4308-8a46-233ec2d32c73", + "name": "Executing task :xuqmSdk:default@MergeProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421518312125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f2a518b4-cb3a-43cf-ab38-7b9a04ac2f86", + "name": "Task 'xuqmSdk:default@MergeProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421518403833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1ee68744-28fb-4e69-8fb2-70265d0d5a47", + "name": "Incremental task xuqmSdk:default@MergeProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421518850583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "aad82d94-494a-476f-aba1-c8421b22d9be", + "name": "xuqmSdk : default@MergeProfile cost memory 0.104217529296875", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421518865125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5b71eae3-0984-4339-b359-c53c40c304f6", + "name": "UP-TO-DATE :xuqmSdk:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421518308625, + "endTime": 341421518878083 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "2a8ee788-0485-4ed1-95fb-da04668e0466" + } + }, + { + "head": { + "id": "24e39234-381c-4d96-bf0d-4e079011bed6", + "name": "entry:default@SyscapTransform", + "description": "Transform SysCap in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421519296875, + "endTime": 341421531965125 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [ + "The output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/syscap/default/rpcid.sc' does not exist." + ], + "detailId": "a564e30c-916f-44bb-a979-7f6b9917aa1b", + "logId": "1a517227-69b2-4fd3-b7a7-de685e6f77bb" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a564e30c-916f-44bb-a979-7f6b9917aa1b", + "name": "create entry:default@SyscapTransform task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421518995041 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "24e39234-381c-4d96-bf0d-4e079011bed6" + } + }, + { + "head": { + "id": "e0d9fbb3-f7c8-4162-9212-9f2b055a5dd2", + "name": "Executing task :entry:default@SyscapTransform", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421519300250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d651175e-3bc4-4d3b-8e06-703605a8d1d8", + "name": "File: '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/syscap.json' from 'sysCapJsonPath' is not exists, just ignore.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421519324375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f03f11d5-1cb9-426a-83e0-e502fcf81a25", + "name": "Task 'entry:default@SyscapTransform' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421519421291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a8091e64-cf49-4a33-8c3d-72179674f36b", + "name": "entry:default@SyscapTransform is not up-to-date, since the output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/syscap/default/rpcid.sc' does not exist.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421531736916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "839c90ec-387e-4c5c-b566-cf2c8a8eae3d", + "name": "Incremental task entry:default@SyscapTransform pre-execution cost: 13 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421531792375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d2bfe2dd-8f34-4848-82f7-72004da99e8e", + "name": "entry : default@SyscapTransform cost memory 0.1034393310546875", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421531932083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5fcc2d38-e8fa-44e1-932b-ef3cdd0acbef", + "name": "runTaskFromQueue task cost before running: 910 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421531954958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1a517227-69b2-4fd3-b7a7-de685e6f77bb", + "name": "Finished :entry:default@SyscapTransform", + "description": "Transform SysCap in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421519296875, + "endTime": 341421531965125, + "totalTime": 12648708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "24e39234-381c-4d96-bf0d-4e079011bed6" + } + }, + { + "head": { + "id": "e66e2c5f-c778-453e-a15b-1b9ddcf24e9b", + "name": "entry:default@ProcessRouterMap", + "description": "Process router map configuration.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421532727583, + "endTime": 341421533547166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "7bab604e-15b3-4303-bbb4-772b4e00ec86", + "logId": "c03c84bd-dc0f-42eb-b9e7-a6026155ef3a" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "7bab604e-15b3-4303-bbb4-772b4e00ec86", + "name": "create entry:default@ProcessRouterMap task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421532167083 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "e66e2c5f-c778-453e-a15b-1b9ddcf24e9b" + } + }, + { + "head": { + "id": "05a608c2-bcb4-400b-8a2d-2eb0a5a782ec", + "name": "Executing task :entry:default@ProcessRouterMap", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421532732541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f0695ae0-09d6-4c84-a6c9-fef63a5be277", + "name": "Incremental task entry:default@ProcessRouterMap pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421533450708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ee127e70-0872-41bb-a825-246289e69750", + "name": "entry : default@ProcessRouterMap cost memory 0.142669677734375", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421533469666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c03c84bd-dc0f-42eb-b9e7-a6026155ef3a", + "name": "UP-TO-DATE :entry:default@ProcessRouterMap", + "description": "Process router map configuration.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421532727583, + "endTime": 341421533547166 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e66e2c5f-c778-453e-a15b-1b9ddcf24e9b" + } + }, + { + "head": { + "id": "7651718f-8a19-46bd-ba32-cfbf3a2d26c4", + "name": "entry:default@ProcessShareConfig", + "description": "Process share config configuration.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421534048666, + "endTime": 341421534429458 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "c84bf5ba-a2b7-4f8a-a782-985f29450612", + "logId": "e5a03526-0190-46c5-9632-c4dbe83b62d6" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c84bf5ba-a2b7-4f8a-a782-985f29450612", + "name": "create entry:default@ProcessShareConfig task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421533714500 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "7651718f-8a19-46bd-ba32-cfbf3a2d26c4" + } + }, + { + "head": { + "id": "f1833dfe-cbc2-4fc8-b226-20b500b169c7", + "name": "Executing task :entry:default@ProcessShareConfig", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421534055000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e8be7e86-a41a-451c-a085-263ef2879620", + "name": "Incremental task entry:default@ProcessShareConfig pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421534395041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7179552e-e2e7-4f31-b2a8-5a9f249d09b0", + "name": "entry : default@ProcessShareConfig cost memory 0.12221527099609375", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421534413750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e5a03526-0190-46c5-9632-c4dbe83b62d6", + "name": "UP-TO-DATE :entry:default@ProcessShareConfig", + "description": "Process share config configuration.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421534048666, + "endTime": 341421534429458 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "7651718f-8a19-46bd-ba32-cfbf3a2d26c4" + } + }, + { + "head": { + "id": "58f81ed7-4a9d-49c5-81cb-57ede04f7cca", + "name": "entry:default@ProcessStartupConfig", + "description": "Process startup configuration.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421534868416, + "endTime": 341421535926875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [ + "The output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/startup/default/startup_config.json' does not exist." + ], + "detailId": "424d77fa-61f1-427e-9f35-d2a5aac9e2a2", + "logId": "276c5806-0ad4-4ec0-b68b-7570608c504d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "424d77fa-61f1-427e-9f35-d2a5aac9e2a2", + "name": "create entry:default@ProcessStartupConfig task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421534584791 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "58f81ed7-4a9d-49c5-81cb-57ede04f7cca" + } + }, + { + "head": { + "id": "1171896d-2101-4ecb-8021-493ff8f7df78", + "name": "Executing task :entry:default@ProcessStartupConfig", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421534872833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "22dae344-51cb-424d-91a5-8e692076f922", + "name": "Task 'entry:default@ProcessStartupConfig' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421534935708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a6452337-5bf4-4a1f-a7ab-0ab96cbc2c8f", + "name": "entry:default@ProcessStartupConfig is not up-to-date, since the output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/startup/default/startup_config.json' does not exist.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421535234916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a158af02-9b1b-45d6-b1ef-f9c8675a24bb", + "name": "Incremental task entry:default@ProcessStartupConfig pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421535294583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0e12510d-8c0a-4c39-80ae-50f293e03251", + "name": "entry : default@ProcessStartupConfig cost memory 0.11766815185546875", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421535869875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b8f7eb96-b3fb-4d99-842f-c2bb7c9a2553", + "name": "runTaskFromQueue task cost before running: 914 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421535910833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "276c5806-0ad4-4ec0-b68b-7570608c504d", + "name": "Finished :entry:default@ProcessStartupConfig", + "description": "Process startup configuration.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421534868416, + "endTime": 341421535926875, + "totalTime": 1028041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "58f81ed7-4a9d-49c5-81cb-57ede04f7cca" + } + }, + { + "head": { + "id": "1c0c3769-d1a4-4e49-a9a5-45d8f5c13df1", + "name": "entry:default@CreateBuildProfile", + "description": "Create the BuildProfile.ets file for the HAP/HSP package.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421536770750, + "endTime": 341421537212833 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "72faddc8-60f2-41b9-93a5-367e0e8afcce", + "logId": "4ec64d39-842b-48d2-bce0-05f274c777b1" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "72faddc8-60f2-41b9-93a5-367e0e8afcce", + "name": "create entry:default@CreateBuildProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421536263916 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "1c0c3769-d1a4-4e49-a9a5-45d8f5c13df1" + } + }, + { + "head": { + "id": "8ee36c91-17c7-4506-9f4b-50bb72188366", + "name": "Executing task :entry:default@CreateBuildProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421536776458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5260a034-724a-4f7b-bb10-e1a01f5cd34b", + "name": "Task 'entry:default@CreateBuildProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421536875958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8193d457-6db6-4113-b168-ca65e7db210a", + "name": "Incremental task entry:default@CreateBuildProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421537170625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5ad70153-6085-404b-b431-d2a0aa50f5c5", + "name": "entry : default@CreateBuildProfile cost memory 0.0775604248046875", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421537195625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4ec64d39-842b-48d2-bce0-05f274c777b1", + "name": "UP-TO-DATE :entry:default@CreateBuildProfile", + "description": "Create the BuildProfile.ets file for the HAP/HSP package.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421536770750, + "endTime": 341421537212833 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "1c0c3769-d1a4-4e49-a9a5-45d8f5c13df1" + } + }, + { + "head": { + "id": "1773195d-8543-4d4e-be08-00be13b825d6", + "name": "xuqmSdk:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421537660541, + "endTime": 341421537742333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "8c8ff108-2f5d-4929-85c6-c75473458136", + "logId": "0f96a495-6e6a-4122-aadb-5a88b2853a4f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8c8ff108-2f5d-4929-85c6-c75473458136", + "name": "create xuqmSdk:default@BuildNativeWithCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421537353083 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "1773195d-8543-4d4e-be08-00be13b825d6" + } + }, + { + "head": { + "id": "100f095c-ae9b-43e0-b301-dc7caa86c346", + "name": "Executing task :xuqmSdk:default@BuildNativeWithCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421537665083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1aa87d8e-c5b9-4770-ae92-53130913a256", + "name": "xuqmSdk : default@BuildNativeWithCmake cost memory 0.013580322265625", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421537716791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "53b74743-3855-4267-981c-a2b7ca3e5571", + "name": "runTaskFromQueue task cost before running: 916 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421537733833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0f96a495-6e6a-4122-aadb-5a88b2853a4f", + "name": "Finished :xuqmSdk:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421537660541, + "endTime": 341421537742333, + "totalTime": 67542 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "1773195d-8543-4d4e-be08-00be13b825d6" + } + }, + { + "head": { + "id": "9a7bced5-1f50-4e12-9bfa-57c9d2587b1e", + "name": "entry:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421537942083, + "endTime": 341421538575083 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Config", + "taskRunReasons": [], + "detailId": "7e898fbb-7e86-49c2-b068-beffc9939f7f", + "logId": "482d1552-edf0-484d-ba1d-6e8d74cd7769" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "7e898fbb-7e86-49c2-b068-beffc9939f7f", + "name": "create entry:default@MergeProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421537814208 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "9a7bced5-1f50-4e12-9bfa-57c9d2587b1e" + } + }, + { + "head": { + "id": "e4d73ceb-6ac0-49b9-a920-57fc095b052f", + "name": "Executing task :entry:default@MergeProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421537946791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "92ae1891-40de-4e61-939f-747e2ea6de32", + "name": "Task 'entry:default@MergeProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421538188333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "664c7af9-04fd-44fb-9b27-e7669fcb2bd4", + "name": "Incremental task entry:default@MergeProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421538541833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f88276e6-8829-48f6-ad50-d3188ec00731", + "name": "entry : default@MergeProfile cost memory 0.119781494140625", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421538560333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "482d1552-edf0-484d-ba1d-6e8d74cd7769", + "name": "UP-TO-DATE :entry:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421537942083, + "endTime": 341421538575083 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9a7bced5-1f50-4e12-9bfa-57c9d2587b1e" + } + }, + { + "head": { + "id": "959405af-15c2-49b5-8584-f2acc54b80f7", + "name": "entry:default@GenerateLoaderJson", + "description": "Generate loader.json in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421539381041, + "endTime": 341421541254541 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "5a2fd33b-5d6f-4eaa-aac2-9dbaa0767093", + "logId": "fbdac1fa-bf3d-4d54-b742-a844cf249405" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "5a2fd33b-5d6f-4eaa-aac2-9dbaa0767093", + "name": "create entry:default@GenerateLoaderJson task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421538754250 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "959405af-15c2-49b5-8584-f2acc54b80f7" + } + }, + { + "head": { + "id": "1bc9b8e7-c017-4c43-b693-1fd232302945", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421539081208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9685c845-ade1-4027-90bb-6531158dd818", + "name": "Executing task :entry:default@GenerateLoaderJson", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421539384958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "35243549-deef-485c-9a8f-6a28ceaddd53", + "name": "Task 'entry:default@GenerateLoaderJson' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421539784916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8d00f9c6-f7e5-435f-9591-5404c89d3453", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421540120833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6e87ca55-24d7-464b-83c8-3d0769f96a2e", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421540619000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2538d0e0-02fb-4362-8a2d-18f3cfa57bec", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421540835416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cb6c9e64-396b-4cfd-aa31-c2c674548592", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421540935833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "96dc8e19-9aab-4451-919f-ec1b743636c5", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421541014583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bc7ba9ec-c23d-4284-946e-4ffb711a84af", + "name": "Incremental task entry:default@GenerateLoaderJson pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421541227375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d769c2ce-a4f4-4283-a89a-9dc09d64bf59", + "name": "entry : default@GenerateLoaderJson cost memory 0.3710479736328125", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421541242708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fbdac1fa-bf3d-4d54-b742-a844cf249405", + "name": "UP-TO-DATE :entry:default@GenerateLoaderJson", + "description": "Generate loader.json in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421539381041, + "endTime": 341421541254541 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "959405af-15c2-49b5-8584-f2acc54b80f7" + } + }, + { + "head": { + "id": "3dfd9072-14c9-490c-804e-00c2cd22ab8f", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421541487208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "feaa4663-af08-4b04-ab3d-6c270882438a", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421541609750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "445e01d4-dc15-4934-be79-cb5dfc139fdf", + "name": "xuqmSdk:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421542017833, + "endTime": 341421542164791 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "7e1c0531-cf3d-495e-9b6c-741f7551fca6", + "logId": "4c6ec003-81c9-42de-a804-ed7f043e763c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "7e1c0531-cf3d-495e-9b6c-741f7551fca6", + "name": "create xuqmSdk:default@BuildNativeWithNinja task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421541761708 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "445e01d4-dc15-4934-be79-cb5dfc139fdf" + } + }, + { + "head": { + "id": "30a4a870-3d71-4645-9818-2037428fbf2f", + "name": "Executing task :xuqmSdk:default@BuildNativeWithNinja", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421542021166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9884f68c-029c-4c58-9836-4a0d8ebe19ba", + "name": "xuqmSdk : default@BuildNativeWithNinja cost memory 0.0190582275390625", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421542136791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "446a7c26-5035-4abd-82bb-d568cf399904", + "name": "runTaskFromQueue task cost before running: 920 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421542155791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4c6ec003-81c9-42de-a804-ed7f043e763c", + "name": "Finished :xuqmSdk:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421542017833, + "endTime": 341421542164791, + "totalTime": 130000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "445e01d4-dc15-4934-be79-cb5dfc139fdf" + } + }, + { + "head": { + "id": "54b240b7-0b08-448c-a3d3-a58a705155f9", + "name": "entry:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421542434791, + "endTime": 341421542490125 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "374c78c2-c8ff-40dd-a4e0-37a65f930ec4", + "logId": "e5163043-f397-4c54-8265-f9a1805f6b73" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "374c78c2-c8ff-40dd-a4e0-37a65f930ec4", + "name": "create entry:default@ConfigureCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421542258208 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "54b240b7-0b08-448c-a3d3-a58a705155f9" + } + }, + { + "head": { + "id": "970ba20a-9963-40bf-8649-1e9a09284e45", + "name": "Executing task :entry:default@ConfigureCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421542437458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bd854fc9-d006-49de-9f5a-17d4cfca127b", + "name": "entry : default@ConfigureCmake cost memory 0.0121307373046875", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421542467791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b078589b-bee7-43cc-96bf-e74b6422d349", + "name": "runTaskFromQueue task cost before running: 920 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421542482208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e5163043-f397-4c54-8265-f9a1805f6b73", + "name": "Finished :entry:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421542434791, + "endTime": 341421542490125, + "totalTime": 41917 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "54b240b7-0b08-448c-a3d3-a58a705155f9" + } + }, + { + "head": { + "id": "b09edb0b-ef14-42a1-82ab-ef4c652cd89d", + "name": "entry:default@MakePackInfo", + "description": "Generate module pack.info in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421542944791, + "endTime": 341421543330500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "a7a08b11-c117-4423-8be6-942613694acb", + "logId": "e81c41f0-cc57-477c-afeb-498879cb07ab" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a7a08b11-c117-4423-8be6-942613694acb", + "name": "create entry:default@MakePackInfo task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421542703750 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "b09edb0b-ef14-42a1-82ab-ef4c652cd89d" + } + }, + { + "head": { + "id": "d9da1fcf-913c-4d23-8e7c-25afa2b2709e", + "name": "Executing task :entry:default@MakePackInfo", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421542947375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6c27b1ac-a587-4ace-95e7-afe3e099ce65", + "name": "Incremental task entry:default@MakePackInfo pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421543303416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "71233480-690b-4fb4-9c0f-cc9c158494f3", + "name": "entry : default@MakePackInfo cost memory 0.09134674072265625", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421543318958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e81c41f0-cc57-477c-afeb-498879cb07ab", + "name": "UP-TO-DATE :entry:default@MakePackInfo", + "description": "Generate module pack.info in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421542944791, + "endTime": 341421543330500 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "b09edb0b-ef14-42a1-82ab-ef4c652cd89d" + } + }, + { + "head": { + "id": "3e758e42-5417-45ac-ad44-5a826557074e", + "name": "entry:default@ProcessProfile", + "description": "Process app config manifest files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421543910333, + "endTime": 341421544910916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Config", + "taskRunReasons": [], + "detailId": "dfc1746c-15e5-4bc7-8a88-430a8455326a", + "logId": "e7d68a68-db49-49ff-9555-8f308e4514e8" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "dfc1746c-15e5-4bc7-8a88-430a8455326a", + "name": "create entry:default@ProcessProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421543442458 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "3e758e42-5417-45ac-ad44-5a826557074e" + } + }, + { + "head": { + "id": "8fb39b52-6dd6-4b9f-99b4-6a056a19962e", + "name": "Executing task :entry:default@ProcessProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421543913416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a7534586-7506-4fe3-a62c-4ff9348512f4", + "name": "Task 'entry:default@ProcessProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421544421166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0a2bd2f2-f361-4f08-9d31-2e999f27b933", + "name": "Incremental task entry:default@ProcessProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421544860916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "57ee7dde-ae99-4b1e-8144-4310c05add77", + "name": "entry : default@ProcessProfile cost memory 0.11588287353515625", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421544893833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e7d68a68-db49-49ff-9555-8f308e4514e8", + "name": "UP-TO-DATE :entry:default@ProcessProfile", + "description": "Process app config manifest files in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421543910333, + "endTime": 341421544910916 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3e758e42-5417-45ac-ad44-5a826557074e" + } + }, + { + "head": { + "id": "00d73848-a886-43c5-92d5-d17f7c58e711", + "name": "xuqmSdk:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421545503875, + "endTime": 341421546202791 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Resources", + "taskRunReasons": [], + "detailId": "976525f9-a1d5-4e8a-a744-377480f91db7", + "logId": "1a26ffa3-e672-483b-afb0-98416aec1cc4" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "976525f9-a1d5-4e8a-a744-377480f91db7", + "name": "create xuqmSdk:default@ProcessLibs task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421545052083 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "00d73848-a886-43c5-92d5-d17f7c58e711" + } + }, + { + "head": { + "id": "3751cfa4-251b-40c5-ae99-798788e0f075", + "name": "Executing task :xuqmSdk:default@ProcessLibs", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421545507916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6e3871e2-0ff0-4177-88fc-d2d8336138de", + "name": "Incremental task xuqmSdk:default@ProcessLibs pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421546167708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3c6fbbbe-be22-4b7c-9ec8-fcf815c32c11", + "name": "xuqmSdk : default@ProcessLibs cost memory 0.0826416015625", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421546189208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1a26ffa3-e672-483b-afb0-98416aec1cc4", + "name": "UP-TO-DATE :xuqmSdk:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421545503875, + "endTime": 341421546202791 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "00d73848-a886-43c5-92d5-d17f7c58e711" + } + }, + { + "head": { + "id": "a8d9aa40-4aa8-450b-955e-27d6d55e02f6", + "name": "entry:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421546406000, + "endTime": 341421546485708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "8aefa596-1441-47de-949c-aa4e7630e92c", + "logId": "92441f12-c67f-43d5-89e6-721af6ed4950" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8aefa596-1441-47de-949c-aa4e7630e92c", + "name": "create entry:default@BuildNativeWithCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421546315125 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "a8d9aa40-4aa8-450b-955e-27d6d55e02f6" + } + }, + { + "head": { + "id": "9cc1ea31-4f25-4a46-9f49-6707b3fb2ea0", + "name": "Executing task :entry:default@BuildNativeWithCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421546408291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ecb34ffe-911a-45f8-b987-e9a699b9b97b", + "name": "entry : default@BuildNativeWithCmake cost memory 0.012054443359375", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421546443833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2954abc5-7691-4ac1-969c-0884295e0db3", + "name": "runTaskFromQueue task cost before running: 924 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421546474625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "92441f12-c67f-43d5-89e6-721af6ed4950", + "name": "Finished :entry:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421546406000, + "endTime": 341421546485708, + "totalTime": 46708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "a8d9aa40-4aa8-450b-955e-27d6d55e02f6" + } + }, + { + "head": { + "id": "31429f13-1841-429e-814a-772815fc6d8c", + "name": "entry:default@ProcessResource", + "description": "Process resources in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421547451500, + "endTime": 341421548536708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [], + "detailId": "f799aa6a-a4d7-41ee-b852-4d465d9fd0cc", + "logId": "d6052a7d-b0c6-4aa3-9fde-311612ec31c1" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f799aa6a-a4d7-41ee-b852-4d465d9fd0cc", + "name": "create entry:default@ProcessResource task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421546625458 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "31429f13-1841-429e-814a-772815fc6d8c" + } + }, + { + "head": { + "id": "190c3bb6-49c9-415b-bbcd-563d3b5579e9", + "name": "restool module names: entry,xuqmSdk; moduleName=entry, taskName=default@ProcessResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421546878833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fe0334f0-eca2-42a6-8821-a5faef71ec53", + "name": "Executing task :entry:default@ProcessResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421547906833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0ee0bda2-6e04-4aed-97c1-d3efb2da93f5", + "name": "Task 'entry:default@ProcessResource' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421547984916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c9e9a49f-86df-4c9f-924d-733ff78b413f", + "name": "Incremental task entry:default@ProcessResource pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421548280541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "be3bb388-243e-4582-a9d3-1469b89c27dc", + "name": "entry : default@ProcessResource cost memory 0.110626220703125", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421548395375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d6052a7d-b0c6-4aa3-9fde-311612ec31c1", + "name": "UP-TO-DATE :entry:default@ProcessResource", + "description": "Process resources in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421547451500, + "endTime": 341421548536708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "31429f13-1841-429e-814a-772815fc6d8c" + } + }, + { + "head": { + "id": "a60e616f-878a-4412-99a6-f64aedd4274f", + "name": "xuqmSdk:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421549268083, + "endTime": 341421549587166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "dde81f8e-b911-4b7d-81d1-65da98c2411d", + "logId": "2672132c-b662-4ec8-99bb-681544bb80a7" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "dde81f8e-b911-4b7d-81d1-65da98c2411d", + "name": "create xuqmSdk:default@DoNativeStrip task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421548801041 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "a60e616f-878a-4412-99a6-f64aedd4274f" + } + }, + { + "head": { + "id": "333292b5-98e6-4263-a223-b0fd4c7d5e41", + "name": "Executing task :xuqmSdk:default@DoNativeStrip", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421549272875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "56320118-1d1f-4f07-9019-e10009873352", + "name": "Task 'xuqmSdk:default@DoNativeStrip' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421549342458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a9f472b7-55a7-458e-bd7a-86417bfe036e", + "name": "Incremental task xuqmSdk:default@DoNativeStrip pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421549555500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "27bb26b2-9cc9-4552-895b-192d9c125d52", + "name": "xuqmSdk : default@DoNativeStrip cost memory 0.05982208251953125", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421549575083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2672132c-b662-4ec8-99bb-681544bb80a7", + "name": "UP-TO-DATE :xuqmSdk:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421549268083, + "endTime": 341421549587166 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "a60e616f-878a-4412-99a6-f64aedd4274f" + } + }, + { + "head": { + "id": "55d3f3f1-d0f1-48b8-811e-81378a854e13", + "name": "entry:default@CompileResource", + "description": "Compile project resources in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421550151458, + "endTime": 341421552078958 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [], + "detailId": "f0d9b034-dd4e-4b04-ab99-82a9614f306f", + "logId": "9a0530ff-17c9-41d6-baf5-24fda6da1868" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f0d9b034-dd4e-4b04-ab99-82a9614f306f", + "name": "create entry:default@CompileResource task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421549699708 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "55d3f3f1-d0f1-48b8-811e-81378a854e13" + } + }, + { + "head": { + "id": "be945e47-0269-4276-b2d8-a977cac2a6e1", + "name": "restool module names: entry,xuqmSdk; moduleName=entry, taskName=default@CompileResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421549834333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fb994362-ab97-48f5-acf6-0b81130066ad", + "name": "Executing task :entry:default@CompileResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421550179791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "483b0cb4-3305-48b1-8ca3-3a150d988d8b", + "name": "Incremental task entry:default@CompileResource pre-execution cost: 2 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421552039250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7d100b14-aba5-4278-a309-789b8fe1857f", + "name": "entry : default@CompileResource cost memory 0.325836181640625", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421552062250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9a0530ff-17c9-41d6-baf5-24fda6da1868", + "name": "UP-TO-DATE :entry:default@CompileResource", + "description": "Compile project resources in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421550151458, + "endTime": 341421552078958 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "55d3f3f1-d0f1-48b8-811e-81378a854e13" + } + }, + { + "head": { + "id": "bbbe4103-6e3f-4e1b-810f-1cb0a72723b9", + "name": "entry:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421552301500, + "endTime": 341421552397916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "519d5efb-e084-4e24-bb36-099ce98d114a", + "logId": "4baf359a-26d8-4fac-8612-cb86e53db343" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "519d5efb-e084-4e24-bb36-099ce98d114a", + "name": "create entry:default@BuildNativeWithNinja task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421552226333 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "bbbe4103-6e3f-4e1b-810f-1cb0a72723b9" + } + }, + { + "head": { + "id": "c3f9cea7-81ed-4dd1-a0fa-e1953ab958e5", + "name": "Executing task :entry:default@BuildNativeWithNinja", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421552303958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c6ca5698-5cd0-49af-b6fa-99d7d952db22", + "name": "entry : default@BuildNativeWithNinja cost memory 0.01779937744140625", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421552373166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "524d038b-40fd-4647-bec3-f6ce84c1f33f", + "name": "runTaskFromQueue task cost before running: 930 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421552387916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4baf359a-26d8-4fac-8612-cb86e53db343", + "name": "Finished :entry:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421552301500, + "endTime": 341421552397916, + "totalTime": 80791 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "bbbe4103-6e3f-4e1b-810f-1cb0a72723b9" + } + }, + { + "head": { + "id": "2c214c0c-19f6-48fa-b0e7-30ffc451e318", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421552993000, + "endTime": 341424051185958 + }, + "additional": { + "children": [ + "0435ba1e-42c2-4e43-bde5-3e223419bc1b", + "26f392a6-21fe-4ca4-86c3-783467e41023" + ], + "state": "failed", + "targetName": "default", + "moduleName": "entry", + "category": "ArkTS", + "taskRunReasons": [], + "detailId": "58c920fe-e901-456d-b385-3ee6d7199f3e", + "logId": "19b8d5a2-2aea-45c1-9722-4d6e47301c0c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "58c920fe-e901-456d-b385-3ee6d7199f3e", + "name": "create entry:default@CompileArkTS task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421552600166 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "2c214c0c-19f6-48fa-b0e7-30ffc451e318" + } + }, + { + "head": { + "id": "bf270c1d-c58b-4a83-9c2c-f2327e089311", + "name": "Executing task :entry:default@CompileArkTS", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421552996625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3adf9e80-641e-4124-868a-0d9101c0414a", + "name": "obfuscationOptions: undefined", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421553309583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d2cd4bfe-dd83-49e2-b5d0-ceb6acc34a8d", + "name": "Task 'entry:default@CompileArkTS' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421554126333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a2db37cb-d8d3-48d0-80ce-283f116016e1", + "name": "build config:", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421557806166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "77588cbc-73c0-4e53-a97a-4aa9154dafce", + "name": "Compile arkts with external api path: /Users/xuqinmin/sdk/command-line-tools/sdk/default/hms/ets", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421558390958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a2dfae39-f2ce-4e74-b127-c39c17886f31", + "name": "Since there is no instance or instance is terminated, create a new worker pool.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421558689250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fb710392-6691-40fa-9b03-e9499736c698", + "name": "Worker pool is initialized with config: {\n minPoolNum: 2,\n maxPoolNum: undefined,\n maxCoreSize: undefined,\n cacheCapacity: undefined,\n cacheTtl: undefined\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421558731041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "90fa67ce-2e9e-4b65-85f0-23b890fe6b7a", + "name": "Create resident worker with id: 0.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421559281000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "15af0c2d-f223-445c-a090-8742213e7189", + "name": "Create resident worker with id: 1.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421560550750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c76a8d85-fbca-49db-9179-849ca7523cdb", + "name": "default@CompileArkTS work[0] is submitted.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421561518916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0435ba1e-42c2-4e43-bde5-3e223419bc1b", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Worker4", + "startTime": 341421562331416, + "endTime": 341424051052166 + }, + "additional": { + "children": [], + "state": "failed", + "targetName": "default", + "moduleName": "entry", + "category": "", + "taskRunReasons": [], + "parent": "2c214c0c-19f6-48fa-b0e7-30ffc451e318", + "logId": "c3d798ea-80a6-4318-b198-cbc5855cde7d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "7ea890a7-ba24-43e4-863b-33da11cbab97", + "name": "default@CompileArkTS work[0] is pushed to ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421561687791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9ec859fc-390c-4fd3-a264-3a6e25f3ed3b", + "name": "A work dispatched to worker[13] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421561765958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cd0cee62-6cfe-49e0-9ab6-71ef9c60b76e", + "name": "A work dispatched to worker[12] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421561776125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a3a54878-38c1-4682-a073-8c6636b30bbe", + "name": "A work dispatched to worker[11] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421561784666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "45ba6a14-0a37-4b06-801b-67a749d35a91", + "name": "A work dispatched to worker[10] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421561791125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c0f17fdf-6d8b-4334-8eb6-6929245fda1a", + "name": "A work dispatched to worker[9] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421561797708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3bd0b88e-9582-4436-9fe9-b94c7383a940", + "name": "A work dispatched to worker[8] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421561804416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "27e6c50f-5aa3-4e25-884d-ab415d7e3d40", + "name": "A work dispatched to worker[7] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421561810833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "82453b39-6b2c-4339-9699-470edcd87950", + "name": "A work dispatched to worker[6] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421561816666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "25926950-184d-420e-8564-ca3e5e023231", + "name": "A work dispatched to worker[5] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421561906250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f806d21e-fc42-4afa-b532-2851de4d5675", + "name": "Create resident worker with id: 4.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421561964375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "569f02a9-285b-4f67-be7c-4da7034728e0", + "name": "default@CompileArkTS work[0] has been dispatched to worker[4].", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421562346166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "faf71fcc-202c-463d-a937-6af1ffbac057", + "name": "default@CompileArkTS work[0] is dispatched.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421562385708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1234f2b0-1f25-4dc0-9dbb-f8a67d5c164a", + "name": "CopyResources startTime: 341421562430875", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421562432958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "48b5dbe5-37fa-4a8d-805a-dc282572af22", + "name": "default@CompileArkTS work[1] is submitted.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421562451083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "26f392a6-21fe-4ca4-86c3-783467e41023", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Worker12", + "startTime": 341421806895666, + "endTime": 341421811261666 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "", + "taskRunReasons": [], + "parent": "2c214c0c-19f6-48fa-b0e7-30ffc451e318", + "logId": "32b20c7f-712c-489a-bbf0-71d2b9c734ee" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b74b376d-e86f-4811-95dd-d9efdcc40631", + "name": "default@CompileArkTS work[1] is pushed to ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421562579125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a85bc39d-62c8-4d9b-a5ab-420a020a7990", + "name": "A work dispatched to worker[13] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421562590958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5e4cd00f-9c68-4520-a4de-acfde5111236", + "name": "Create resident worker with id: 12.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421562601458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "664193be-50a3-42e1-8add-c1d906de3895", + "name": "default@CompileArkTS work[1] has been dispatched to worker[12].", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421562937166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f21a64fc-daee-41ec-be46-40d0a18916a5", + "name": "default@CompileArkTS work[1] is dispatched.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421562958666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "12d96c3f-a2f4-4874-b55b-ece1a5c87693", + "name": "entry : default@CompileArkTS cost memory 2.338134765625", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421563021083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3a9a1076-e77e-475c-b6ee-695db982c455", + "name": "entry:default@BuildJS", + "description": "Compile ArkTS or JS components using Node.js for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421563698958, + "endTime": 341421564403125 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "ArkTS", + "taskRunReasons": [], + "detailId": "1ba67ccd-39a9-43bb-b7d0-de8e52c415e8", + "logId": "73a96cdc-a01a-4622-a55f-d244ff9646e7" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "1ba67ccd-39a9-43bb-b7d0-de8e52c415e8", + "name": "create entry:default@BuildJS task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421563163000 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "3a9a1076-e77e-475c-b6ee-695db982c455" + } + }, + { + "head": { + "id": "9df7fe4e-12ac-4f34-809d-4e50a770507d", + "name": "Executing task :entry:default@BuildJS", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421563702541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4d176a60-ea7d-4aa4-b442-a5416898fa6e", + "name": "Task 'entry:default@BuildJS' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421563789958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b9c0d538-e8da-4831-92ee-b88700d00072", + "name": "entry : default@BuildJS cost memory 0.13238525390625", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421564345583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e7003f96-393e-4055-92fd-5ae564fa371a", + "name": "runTaskFromQueue task cost before running: 942 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421564365666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "73a96cdc-a01a-4622-a55f-d244ff9646e7", + "name": "Finished :entry:default@BuildJS", + "description": "Compile ArkTS or JS components using Node.js for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421563698958, + "endTime": 341421564403125, + "totalTime": 659875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3a9a1076-e77e-475c-b6ee-695db982c455" + } + }, + { + "head": { + "id": "b133a198-a89d-477e-b885-8057111f99c8", + "name": "entry:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421564596416, + "endTime": 341421566150166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [], + "detailId": "286a372e-6bfe-48b9-ba6d-df8b0349be4d", + "logId": "c37df983-535d-499a-86b4-61fbb1f88e26" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "286a372e-6bfe-48b9-ba6d-df8b0349be4d", + "name": "create entry:default@ProcessLibs task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421564503125 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "b133a198-a89d-477e-b885-8057111f99c8" + } + }, + { + "head": { + "id": "c61e881d-65a2-4888-8893-dbd406f31343", + "name": "Executing task :entry:default@ProcessLibs", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421564598458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a5f05d2c-fc56-4391-ac64-90490c86dff9", + "name": "Incremental task entry:default@ProcessLibs pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421566110250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "072871cf-43e6-431c-abe6-8900f630fc2f", + "name": "entry : default@ProcessLibs cost memory 0.25116729736328125", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421566138208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c37df983-535d-499a-86b4-61fbb1f88e26", + "name": "UP-TO-DATE :entry:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421564596416, + "endTime": 341421566150166 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "b133a198-a89d-477e-b885-8057111f99c8" + } + }, + { + "head": { + "id": "32234525-9300-4fd3-8c6b-c57164d3811c", + "name": "entry:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421566374333, + "endTime": 341421566591250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "fa50cfd9-1132-4f2d-bf63-23b6375f85a7", + "logId": "aba59bdd-34c5-4dfe-be88-d438b7f91b9f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "fa50cfd9-1132-4f2d-bf63-23b6375f85a7", + "name": "create entry:default@DoNativeStrip task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421566259416 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "32234525-9300-4fd3-8c6b-c57164d3811c" + } + }, + { + "head": { + "id": "33274602-2fcd-4b4c-964d-7f5fbae92e04", + "name": "Executing task :entry:default@DoNativeStrip", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421566376666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6bf64ec6-560e-4715-95a9-4a7745894a24", + "name": "Task 'entry:default@DoNativeStrip' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421566406500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ccb21bee-a352-4432-a1ea-0d10ee90024e", + "name": "Incremental task entry:default@DoNativeStrip pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421566567875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8ffb19ea-3658-4f39-81d4-cf85fc37267a", + "name": "entry : default@DoNativeStrip cost memory 0.05799102783203125", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421566582166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "aba59bdd-34c5-4dfe-be88-d438b7f91b9f", + "name": "UP-TO-DATE :entry:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421566374333, + "endTime": 341421566591250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "32234525-9300-4fd3-8c6b-c57164d3811c" + } + }, + { + "head": { + "id": "c2d5ff16-90ac-46a6-aef7-705b07dbe5d5", + "name": "entry:default@CacheNativeLibs", + "description": "cache native strip .so fileInfo", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421566986416, + "endTime": 341421567225375 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "0293bb3b-19bd-4447-b0b8-d98b2c4def33", + "logId": "a398b191-a47f-4db5-98c9-58a77f05e378" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0293bb3b-19bd-4447-b0b8-d98b2c4def33", + "name": "create entry:default@CacheNativeLibs task", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421566671833 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "c2d5ff16-90ac-46a6-aef7-705b07dbe5d5" + } + }, + { + "head": { + "id": "8388fe60-f13d-4d19-8849-156a156d63c4", + "name": "Executing task :entry:default@CacheNativeLibs", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421566993833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2b671df4-1879-4844-a8da-5b9eebefb5c5", + "name": "Task 'entry:default@CacheNativeLibs' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421567041291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7cbfc82b-892d-4afb-9523-046cc0001882", + "name": "Incremental task entry:default@CacheNativeLibs pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421567201125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fe91874f-5474-4417-92ac-ff50c52d8485", + "name": "entry : default@CacheNativeLibs cost memory 0.0672149658203125", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421567215250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a398b191-a47f-4db5-98c9-58a77f05e378", + "name": "UP-TO-DATE :entry:default@CacheNativeLibs", + "description": "cache native strip .so fileInfo", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421566986416, + "endTime": 341421567225375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "c2d5ff16-90ac-46a6-aef7-705b07dbe5d5" + } + }, + { + "head": { + "id": "de794043-32ed-4ac0-9974-57f3c5211257", + "name": "worker[12] has one work done.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421811478625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "27ad0349-fbb5-44d1-9d01-6fdad123c4c0", + "name": "CopyResources is end, endTime: 341421811591666", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421811595166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d3ced5f1-5d0c-4cd1-b650-a77bb773ae30", + "name": "default@CompileArkTS work[1] done.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421811708041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "32b20c7f-712c-489a-bbf0-71d2b9c734ee", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Worker12", + "startTime": 341421806895666, + "endTime": 341421811261666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "26f392a6-21fe-4ca4-86c3-783467e41023", + "parent": "19b8d5a2-2aea-45c1-9722-4d6e47301c0c" + } + }, + { + "head": { + "id": "f5bdc6f1-dc31-461d-aa04-56053bfa097e", + "name": "A work dispatched to worker[12] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421811815750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1beb523f-5947-4153-a858-ddc7620f89a6", + "name": "worker[4] has one work error.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424050970416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5d9d614e-c691-4d22-b427-c57f8c69ea83", + "name": "default@CompileArkTS work[0] failed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424051114541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c3d798ea-80a6-4318-b198-cbc5855cde7d", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Worker4", + "startTime": 341421562331416, + "endTime": 341424051052166 + }, + "additional": { + "logType": "error", + "children": [], + "durationId": "0435ba1e-42c2-4e43-bde5-3e223419bc1b", + "parent": "19b8d5a2-2aea-45c1-9722-4d6e47301c0c" + } + }, + { + "head": { + "id": "19b8d5a2-2aea-45c1-9722-4d6e47301c0c", + "name": "Failed :entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341421552993000, + "endTime": 341424051185958 + }, + "additional": { + "logType": "error", + "children": [ + "c3d798ea-80a6-4318-b198-cbc5855cde7d", + "32b20c7f-712c-489a-bbf0-71d2b9c734ee" + ], + "durationId": "2c214c0c-19f6-48fa-b0e7-30ffc451e318" + } + }, + { + "head": { + "id": "13afb875-b03a-48ac-8594-7e5a41e3e013", + "name": "\n\u001b[33m1 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:347:22\n \"globalThis\" is not supported (arkts-no-globalthis)\n\u001b[39m\u001b[39m\n\u001b[33m2 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/XuqmSDK.ets:40:12\n Classes cannot be used as objects (arkts-no-classes-as-obj)\n\u001b[39m\u001b[39m\n\u001b[33m3 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/XuqmSDK.ets:44:12\n Classes cannot be used as objects (arkts-no-classes-as-obj)\n\u001b[39m\u001b[39m\n\u001b[33m4 WARN: \u001b[33m\u001b[33mArkTS:WARN: For details about ArkTS syntax errors, see FAQs\u001b[39m\u001b[39m\n\u001b[33m5 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:28:30\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m6 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:29:25\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m7 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:37:15\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m8 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:39:15\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m9 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:41:13\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m10 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/HttpClient.ets:37:25\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m11 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:77:5\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m12 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:17:22\n 'showToast' has been deprecated.\n\u001b[39m\u001b[39m\n\u001b[33m13 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:27:22\n 'showToast' has been deprecated.\n\u001b[39m\u001b[39m\n\u001b[33m14 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:87:28\n 'showToast' has been deprecated.\n\u001b[39m\u001b[39m", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424051216833 + }, + "additional": { + "logType": "warn", + "children": [] + } + }, + { + "head": { + "id": "2cd67511-ef72-4d96-9346-6de69e192a59", + "name": "hvigor build process will be closed with an error.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424051376208 + }, + "additional": { + "logType": "debug", + "children": [], + "durationId": "2c214c0c-19f6-48fa-b0e7-30ffc451e318" + } + }, + { + "head": { + "id": "100a809f-2649-4533-8f5d-5f148fc1f4aa", + "name": "Error: ArkTS Compiler Error\n\u001b[31m1 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/HttpClient.ets:30:11\n\u001b[39m\n\u001b[39m\n\u001b[31m2 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/HttpClient.ets:30:23\n\u001b[39m\n\u001b[39m\n\u001b[31m3 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/HttpClient.ets:30:64\n\u001b[39m\n\u001b[39m\n\u001b[31m4 ERROR: \u001b[31m10605008 ArkTS Compiler Error\nError Message: Use explicit types instead of \"any\", \"unknown\" (arkts-no-any-unknown) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:56:15\n\u001b[39m\n\u001b[39m\n\u001b[31m5 ERROR: \u001b[31m10605040 ArkTS Compiler Error\nError Message: Object literals cannot be used as type declarations (arkts-no-obj-literals-as-types) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:57:43\n\u001b[39m\n\u001b[39m\n\u001b[31m6 ERROR: \u001b[31m10605008 ArkTS Compiler Error\nError Message: Use explicit types instead of \"any\", \"unknown\" (arkts-no-any-unknown) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:57:68\n\u001b[39m\n\u001b[39m\n\u001b[31m7 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:83:16\n\u001b[39m\n\u001b[39m\n\u001b[31m8 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:89:18\n\u001b[39m\n\u001b[39m\n\u001b[31m9 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:90:11\n\u001b[39m\n\u001b[39m\n\u001b[31m10 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:110:18\n\u001b[39m\n\u001b[39m\n\u001b[31m11 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:124:106\n\u001b[39m\n\u001b[39m\n\u001b[31m12 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:145:115\n\u001b[39m\n\u001b[39m\n\u001b[31m13 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:161:72\n\u001b[39m\n\u001b[39m\n\u001b[31m14 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:169:105\n\u001b[39m\n\u001b[39m\n\u001b[31m15 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:176:106\n\u001b[39m\n\u001b[39m\n\u001b[31m16 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:184:107\n\u001b[39m\n\u001b[39m\n\u001b[31m17 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:192:106\n\u001b[39m\n\u001b[39m\n\u001b[31m18 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:200:92\n\u001b[39m\n\u001b[39m\n\u001b[31m19 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:207:56\n\u001b[39m\n\u001b[39m\n\u001b[31m20 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:213:56\n\u001b[39m\n\u001b[39m\n\u001b[31m21 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:219:85\n\u001b[39m\n\u001b[39m\n\u001b[31m22 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:225:81\n\u001b[39m\n\u001b[39m\n\u001b[31m23 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:228:7\n\u001b[39m\n\u001b[39m\n\u001b[31m24 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:228:46\n\u001b[39m\n\u001b[39m\n\u001b[31m25 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:233:71\n\u001b[39m\n\u001b[39m\n\u001b[31m26 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:240:121\n\u001b[39m\n\u001b[39m\n\u001b[31m27 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:246:121\n\u001b[39m\n\u001b[39m\n\u001b[31m28 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:252:120\n\u001b[39m\n\u001b[39m\n\u001b[31m29 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:254:7\n\u001b[39m\n\u001b[39m\n\u001b[31m30 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:254:46\n\u001b[39m\n\u001b[39m\n\u001b[31m31 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:259:110\n\u001b[39m\n\u001b[39m\n\u001b[31m32 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:265:160\n\u001b[39m\n\u001b[39m\n\u001b[31m33 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:271:160\n\u001b[39m\n\u001b[39m\n\u001b[31m34 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:277:90\n\u001b[39m\n\u001b[39m\n\u001b[31m35 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:288:101\n\u001b[39m\n\u001b[39m\n\u001b[31m36 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:290:7\n\u001b[39m\n\u001b[39m\n\u001b[31m37 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:290:31\n\u001b[39m\n\u001b[39m\n\u001b[31m38 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:291:7\n\u001b[39m\n\u001b[39m\n\u001b[31m39 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:291:29\n\u001b[39m\n\u001b[39m\n\u001b[31m40 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:292:7\n\u001b[39m\n\u001b[39m\n\u001b[31m41 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:292:29\n\u001b[39m\n\u001b[39m\n\u001b[31m42 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:339:7\n\u001b[39m\n\u001b[39m\n\u001b[31m43 ERROR: \u001b[31m10605008 ArkTS Compiler Error\nError Message: Use explicit types instead of \"any\", \"unknown\" (arkts-no-any-unknown) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:347:11\n\u001b[39m\n\u001b[39m\n\u001b[31m44 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/push/PushSDK.ets:16:58\n\u001b[39m\n\u001b[39m\n\u001b[31m45 ERROR: \u001b[31m10605099 ArkTS Compiler Error\nError Message: It is possible to spread only arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/push/PushSDK.ets:17:7\n\u001b[39m\n\u001b[39m\n\u001b[31m46 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/push/PushSDK.ets:26:60\n\u001b[39m\n\u001b[39m\n\u001b[31m47 ERROR: \u001b[31m10605060 ArkTS Compiler Error\nError Message: \"typeof\" operator is allowed only in expression contexts (arkts-no-type-query) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/XuqmSDK.ets:39:22\n\u001b[39m\n\u001b[39m\n\u001b[31m48 ERROR: \u001b[31m10605060 ArkTS Compiler Error\nError Message: \"typeof\" operator is allowed only in expression contexts (arkts-no-type-query) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/XuqmSDK.ets:43:24\n\u001b[39m\n\u001b[39m\n\u001b[31m49 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:14:19\n\u001b[39m\n\u001b[39m\n\u001b[31m50 ERROR: \u001b[31m10505001 ArkTS Compiler Error\nError Message: Cannot find name 'TextDecoder'. At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:56:62\n\u001b[39m\n\u001b[39m\n\u001b[31mCOMPILE RESULT:FAIL {ERROR:51 WARN:14}\u001b[39m\n at runArkPack (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/arkts-pack.js:1:5860)\nArkTSCompilerError: ArkTS Compiler Error\n at throwArkTsCompilerError (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/data/compose-error.js:1:423)\n at throwErrorIfHasErrorInfo (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/plugins/common-plugin.js:1:4478)\n at Object.handler (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/plugins/common-plugin.js:1:2547)\n at /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-base/node_modules/rollup/dist/shared/rollup.js:27765:40", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424051772625 + }, + "additional": { + "logType": "error", + "children": [], + "durationId": "2c214c0c-19f6-48fa-b0e7-30ffc451e318" + } + }, + { + "head": { + "id": "a0d15d9e-3d5c-4dae-bce4-f6d1a07d8b4c", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424052200166, + "endTime": 341424052378583 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "6ed25a6d-256b-4d49-a646-bc461a9166bf", + "logId": "ef18d88c-d194-43d5-8ca6-70095032605f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ef18d88c-d194-43d5-8ca6-70095032605f", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424052200166, + "endTime": 341424052378583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "a0d15d9e-3d5c-4dae-bce4-f6d1a07d8b4c" + } + }, + { + "head": { + "id": "383eb0f8-3e99-49c3-8f70-17b1800130ed", + "name": "assembleHap", + "description": "", + "type": "mark" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341420622499500, + "endTime": 341424052644875 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 17, + "second": 30 + }, + "completeCommand": "{\"prop\":[],\"stacktrace\":true,\"_\":[\"assembleHap\"]};assembleHap --stacktrace", + "hvigorVersion": "6.22.4", + "markType": "history", + "nodeVersion": "v18.20.1", + "category": "build", + "state": "failed" + } + }, + { + "head": { + "id": "32fff983-df7d-4dca-9471-11f9d25587af", + "name": "BUILD FAILED in 3 s 430 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424052660833 + }, + "additional": { + "logType": "error", + "children": [] + } + }, + { + "head": { + "id": "cd371dbf-f142-40ac-83d4-128bf36d2890", + "name": "There is no need to refresh cache, since the incremental task entry:default@PreBuild is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424052759416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cd861ac9-df8e-4b26-8fb8-6eeb2c26f7db", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@PreBuild is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424052768833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cd21ce12-eb8b-450d-be84-a12a186005e4", + "name": "Update task entry:default@CreateModuleInfo output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/ModuleInfo.ts cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424052829583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c83acf18-96bf-47c6-bd45-b90b82b0116d", + "name": "Incremental task entry:default@CreateModuleInfo post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424052945916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9c11770b-646c-4f41-8f7f-0b416390a0db", + "name": "There is no need to refresh cache, since the incremental task entry:default@GenerateMetadata is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424052954666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "38bbafd8-65c7-4586-bc5e-12707faa22fe", + "name": "There is no need to refresh cache, since the incremental task entry:default@GeneratePkgContextInfo is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424052962375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ba307bd4-6502-46d1-9592-a927a50246bf", + "name": "Update task entry:default@ProcessIntegratedHsp output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build/cache/default/integrated_hsp/integratedHspCache.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424052996000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9f296530-b332-40a4-96a3-4bbadafcbd38", + "name": "Incremental task entry:default@ProcessIntegratedHsp post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053029000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4c818e17-1c9d-4501-86d8-e8ebe67691d4", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@CreateHarBuildProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053035750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "18a134e5-cd42-4d37-8be6-34f87862b059", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@MergeProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053043333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "07f6f67e-c25f-495a-85c7-d767017508ac", + "name": "Update task entry:default@SyscapTransform input file:/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/syscap_tool cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053062375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f2920dae-9b03-4e56-a26a-27273cf76495", + "name": "Update task entry:default@SyscapTransform input file:/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/ets/api/device-define cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053121583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c6bbc301-df3e-4a45-9524-eb70a33e35d8", + "name": "Update task entry:default@SyscapTransform output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/syscap/default/rpcid.sc cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053292708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fbd3d71f-b723-457f-a820-2cc6f06eb9ee", + "name": "Incremental task entry:default@SyscapTransform post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053323750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9b05c2ae-5aa1-4ed1-8cb3-4590f7911476", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessRouterMap is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053336083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7f0e9105-9beb-477b-bfd9-9f743a020aea", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessShareConfig is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053342916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b469db05-8621-4434-99a7-5653e240aa7f", + "name": "Update task entry:default@ProcessStartupConfig input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053409041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "26387047-0064-498e-b7c5-9865b0619d05", + "name": "Update task entry:default@ProcessStartupConfig output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/startup/default/startup_config.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053429375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0ef8a1b2-42e7-4a56-a2c6-c0137fbe606a", + "name": "Incremental task entry:default@ProcessStartupConfig post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053453916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1798c984-d9b4-471f-98db-ffa7f96401c6", + "name": "There is no need to refresh cache, since the incremental task entry:default@CreateBuildProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053479291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2c82039e-187d-4b8e-93ae-481403feb3e5", + "name": "There is no need to refresh cache, since the incremental task entry:default@MergeProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053494458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "eb10381c-e7e6-4779-896e-c4ef3f522a6a", + "name": "There is no need to refresh cache, since the incremental task entry:default@GenerateLoaderJson is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053503500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b2b95eae-44be-48e2-a2ef-d3e96ef97e2f", + "name": "There is no need to refresh cache, since the incremental task entry:default@MakePackInfo is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053511416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c4032de8-86f4-4faa-a05c-0d47f32d8e13", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053517708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7ec10b42-86f2-42bb-996e-55192536d1f2", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@ProcessLibs is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053528875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fa1c1ec9-197b-4cd1-bad1-23baa6a777f9", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessResource is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053539041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "366edf0a-eff8-4742-bab0-07bb959b2abb", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@DoNativeStrip is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053547333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ceb422bf-5310-49d8-aa59-69627433cae9", + "name": "There is no need to refresh cache, since the incremental task entry:default@CompileResource is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053556083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "21f1e533-827e-4433-a7cb-1effa8adfeee", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053767250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3a8df726-a69c-4e43-9040-c68fe897d88e", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/Index.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053848500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bb85c799-67f8-4910-85d3-4dfe36f37434", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424053867000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "18410aa7-c775-4e35-a11d-201d0c0d7cba", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054147416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3bb2e490-9bc6-4f9a-a887-ada7f2ec32e8", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ResourceTable.txt cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054232000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a4b02868-4d92-47e8-ad7c-52ee51796835", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ark_module.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054248833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ea058db2-a300-45da-a5c1-40314c66e571", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054265208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "aa46c3a0-cf66-473e-913b-e0e36dc27794", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054313333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0bccbb64-b414-4f9b-a104-ddc463340a80", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054404333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3af4eac8-7a7d-40a0-871b-20f8f99750fa", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/BuildProfile.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054419750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ddd6a5d3-a6e1-4ae8-9138-e0ff15e31d2c", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/BuildProfile.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054435708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "792b6f60-4860-4803-be55-e4f70d8448c1", + "name": "Update task entry:default@CompileArkTS output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054462250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5bc16449-750c-4e10-a567-8dd1da9e70fe", + "name": "Incremental task entry:default@CompileArkTS post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054517708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b55f8986-df7d-4968-8347-e8559f726385", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054602291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ddc518d0-3031-4d27-ab8f-6139e7f2e862", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/Index.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054720625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "87109d8e-103c-4473-bf48-d12797b89a87", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054737625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9f22ad5b-82e9-46e8-ae89-9ed50658dfa0", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ResourceTable.txt cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054835208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8a9c8708-40d3-419f-9e7d-824359e172be", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ark_module.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054849250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "20de792c-233e-450d-bf73-ede1b893c7bf", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054863041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "99ec8fa0-3502-42de-8c25-672fe3ba7c20", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054901708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "76a3c35f-5f36-45cf-bb07-47b4867e9e19", + "name": "Update task entry:default@BuildJS output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/js cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054920541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6b09d560-97ac-473a-ab94-5f30ebaed1d9", + "name": "Incremental task entry:default@BuildJS post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054947333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5f1cecfe-93b9-4c96-b638-5954236d5fcb", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessLibs is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054954125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3f9b80ca-56ef-43d5-b412-66541d42b4b7", + "name": "There is no need to refresh cache, since the incremental task entry:default@DoNativeStrip is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054960083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b1fb200d-1276-4660-bddc-8a23287fdd0a", + "name": "There is no need to refresh cache, since the incremental task entry:default@CacheNativeLibs is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 25738, + "tid": "Main Thread", + "startTime": 341424054967291 + }, + "additional": { + "logType": "debug", + "children": [] + } + } + ], + "workLog": [] +} \ No newline at end of file diff --git a/.hvigor/report/report-202604281919395040.json b/.hvigor/report/report-202604281919395040.json new file mode 100644 index 0000000..735f3f2 --- /dev/null +++ b/.hvigor/report/report-202604281919395040.json @@ -0,0 +1,10736 @@ +{ + "version": "2.0", + "ppid": 28361, + "events": [ + { + "head": { + "id": "123195c4-5d99-4453-afdd-5f38af02b5f2", + "name": "env: nodejsVersion=v18.20.1", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552459640791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b61518ee-83ba-4632-afab-22861d18b0b7", + "name": "env: hvigor-config.json5 content = {\n modelVersion: '5.0.0',\n dependencies: {},\n execution: {\n daemon: false,\n incremental: true,\n parallel: true,\n typeCheck: false\n },\n logging: { level: 'info' },\n debugging: { stacktrace: false },\n nodeOptions: { maxOldSpaceSize: 4096 }\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552460363125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "330f43bf-bc27-4c3a-ab5b-48e5cc73b2ae", + "name": "env: daemon=false", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552461252541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "84b7e536-4baf-43e3-b07f-ec4290e804a6", + "name": "no-daemon, use the parent process.execArgv --max-old-space-size=4096,--max-semi-space-size=16,--expose-gc,--enable-source-maps", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552461300041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "09958266-7fbd-47b3-81e6-ee27018a8570", + "name": "init", + "description": "Initialize and build task graph.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552609396708, + "endTime": 341553467740166 + }, + "additional": { + "children": [ + "74bc2d1f-a452-406c-840c-c96f3a423845", + "e1c840ba-e210-483d-8fde-a176166ac1a1", + "f99e9eaf-2b09-44e4-ad62-83e58500b99a", + "4870be77-aae8-4170-98d3-a47917262ef6", + "dbd94e83-1706-420d-9fd6-4fdd841e8ec0", + "8c675a88-3f0a-4671-bf8d-d480f865b96f", + "c5d9dd49-69b8-4634-a1c2-344efa049812" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Init", + "taskRunReasons": [], + "logId": "c40be70d-45ee-409d-aa31-336520834a3e" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "74bc2d1f-a452-406c-840c-c96f3a423845", + "name": "create hvigor project model", + "description": "Initialize hvigor project model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552609399791, + "endTime": 341552614193958 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "09958266-7fbd-47b3-81e6-ee27018a8570", + "logId": "c92491d0-c137-4d39-98bf-38d78398cb69" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e1c840ba-e210-483d-8fde-a176166ac1a1", + "name": "configure hvigor plugin", + "description": "Configure hvigor plugin.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552614201583, + "endTime": 341553466866166 + }, + "additional": { + "children": [ + "eaaddeb0-ea3a-4b8b-aa8a-6b6374297318", + "f0c082fd-e9f5-47d3-93f6-bcb21cfe59aa", + "0fe55a64-5b47-4d16-9799-8c2c09c6fcef", + "73fd7cb7-1e05-4021-9eba-43bdddbbac04", + "9b6fad0c-5f93-4cad-9579-860f28d10096", + "971f7f0b-d1fd-4476-b090-50a533483314", + "da3ddffc-f68f-476c-a071-5798c5320d34", + "057464c5-bd8e-4a44-9c6a-fe5cc8135b52", + "73a92d72-3a33-4b7b-9e3f-52366e5bc7ad" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "09958266-7fbd-47b3-81e6-ee27018a8570", + "logId": "08059c64-7b01-444b-86b9-40f3977520e2" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f99e9eaf-2b09-44e4-ad62-83e58500b99a", + "name": "build task graph", + "description": "Build task graph.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553466879000, + "endTime": 341553467732375 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "09958266-7fbd-47b3-81e6-ee27018a8570", + "logId": "ab231095-af5d-4a7b-8ab7-6e57af233f4c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "4870be77-aae8-4170-98d3-a47917262ef6", + "name": "init task execution option", + "description": "Init task execution option.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553467734291, + "endTime": 341553467737416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "09958266-7fbd-47b3-81e6-ee27018a8570", + "logId": "38014006-1f8d-4cbd-952d-b8efeadb2f79" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "dbd94e83-1706-420d-9fd6-4fdd841e8ec0", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552610953500, + "endTime": 341552611059500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "09958266-7fbd-47b3-81e6-ee27018a8570", + "logId": "b8bdcfa8-7349-415f-a353-0f69fb0ec841" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b8bdcfa8-7349-415f-a353-0f69fb0ec841", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552610953500, + "endTime": 341552611059500 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "dbd94e83-1706-420d-9fd6-4fdd841e8ec0", + "parent": "c40be70d-45ee-409d-aa31-336520834a3e" + } + }, + { + "head": { + "id": "8c675a88-3f0a-4671-bf8d-d480f865b96f", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552611685708, + "endTime": 341552611698833 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "09958266-7fbd-47b3-81e6-ee27018a8570", + "logId": "4c46adb7-71c2-43bf-9da2-d7c1de4b4fd4" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "4c46adb7-71c2-43bf-9da2-d7c1de4b4fd4", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552611685708, + "endTime": 341552611698833 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "8c675a88-3f0a-4671-bf8d-d480f865b96f", + "parent": "c40be70d-45ee-409d-aa31-336520834a3e" + } + }, + { + "head": { + "id": "816bcee1-cc95-417e-8d40-43b784b7b45b", + "name": "Hvigor init with startParameters:{\n hvigorfileTypeCheck: false,\n parallelExecution: true,\n incrementalExecution: true,\n printStackTrace: true,\n daemon: false,\n analyze: 0,\n logLevel: Level { level: 20000, levelStr: 'INFO', colour: 'green' },\n optimizationStrategy: 'memory',\n hotCompile: undefined,\n hotReloadBuild: undefined,\n customizedParam: undefined\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552611840458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c3ef3d04-5374-468f-9624-790c843c2dcc", + "name": "Cache service initialization finished in 3 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552614164291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c92491d0-c137-4d39-98bf-38d78398cb69", + "name": "create hvigor project model", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552609399791, + "endTime": 341552614193958 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "74bc2d1f-a452-406c-840c-c96f3a423845", + "parent": "c40be70d-45ee-409d-aa31-336520834a3e" + } + }, + { + "head": { + "id": "eaaddeb0-ea3a-4b8b-aa8a-6b6374297318", + "name": "init configuration", + "description": "Initialize configuration.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552614333250, + "endTime": 341552614339791 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e1c840ba-e210-483d-8fde-a176166ac1a1", + "logId": "8b706614-f31e-4f76-9091-b2187a095a29" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f0c082fd-e9f5-47d3-93f6-bcb21cfe59aa", + "name": "configure project task", + "description": "Configure project task.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552614353291, + "endTime": 341552614556791 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e1c840ba-e210-483d-8fde-a176166ac1a1", + "logId": "4ad69186-7f57-488f-914a-cf00437c09da" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0fe55a64-5b47-4d16-9799-8c2c09c6fcef", + "name": "eval project", + "description": "Evaluate project.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552614589125, + "endTime": 341553423592166 + }, + "additional": { + "children": [ + "0a2ea812-c6e5-48ea-b950-c79eecb70cbf", + "b9a30295-cddd-40a4-8749-df0fc1803a7c", + "8deec256-e3a9-4fcd-b247-a1abfa9c577f" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e1c840ba-e210-483d-8fde-a176166ac1a1", + "logId": "4ae2b233-631c-4e74-aa09-40c050c21f45" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "73fd7cb7-1e05-4021-9eba-43bdddbbac04", + "name": "eval modules", + "description": "Evaluate modules.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553423712166, + "endTime": 341553457320625 + }, + "additional": { + "children": [ + "0adfac94-ff03-46c7-84af-554bd5013d09", + "409687d5-9d5c-4bfa-b8d8-61d747f7d5df" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e1c840ba-e210-483d-8fde-a176166ac1a1", + "logId": "e8391218-106a-41f8-abf1-19e8b0f428d8" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9b6fad0c-5f93-4cad-9579-860f28d10096", + "name": "add config dependencies", + "description": "Add configuration dependencies.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553457338125, + "endTime": 341553457338583 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e1c840ba-e210-483d-8fde-a176166ac1a1", + "logId": "22d4cca9-5bea-4f75-8926-b72be931fbd6" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "971f7f0b-d1fd-4476-b090-50a533483314", + "name": "ohpm install", + "description": "Ohpm install event.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553457478291, + "endTime": 341553460561041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e1c840ba-e210-483d-8fde-a176166ac1a1", + "logId": "45c5d30e-4066-47b9-b25c-d7dc4aedc074" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "da3ddffc-f68f-476c-a071-5798c5320d34", + "name": "eval hook", + "description": "EvaluateEvent hook.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553460568500, + "endTime": 341553466829333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e1c840ba-e210-483d-8fde-a176166ac1a1", + "logId": "91f0f4ee-a386-46ec-80f5-ce89cc976bd3" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "057464c5-bd8e-4a44-9c6a-fe5cc8135b52", + "name": "fin configuration", + "description": "Finish configuration.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553466836416, + "endTime": 341553466862708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e1c840ba-e210-483d-8fde-a176166ac1a1", + "logId": "3e6b7f70-c177-47f6-838c-8880eeb3a143" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8b706614-f31e-4f76-9091-b2187a095a29", + "name": "init configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552614333250, + "endTime": 341552614339791 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "eaaddeb0-ea3a-4b8b-aa8a-6b6374297318", + "parent": "08059c64-7b01-444b-86b9-40f3977520e2" + } + }, + { + "head": { + "id": "4ad69186-7f57-488f-914a-cf00437c09da", + "name": "configure project task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552614353291, + "endTime": 341552614556791 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f0c082fd-e9f5-47d3-93f6-bcb21cfe59aa", + "parent": "08059c64-7b01-444b-86b9-40f3977520e2" + } + }, + { + "head": { + "id": "0a2ea812-c6e5-48ea-b950-c79eecb70cbf", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552614646625, + "endTime": 341552614655666 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "0fe55a64-5b47-4d16-9799-8c2c09c6fcef", + "logId": "f77b61b3-40f7-459c-927b-11b0021cf2cd" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f77b61b3-40f7-459c-927b-11b0021cf2cd", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552614646625, + "endTime": 341552614655666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "0a2ea812-c6e5-48ea-b950-c79eecb70cbf", + "parent": "4ae2b233-631c-4e74-aa09-40c050c21f45" + } + }, + { + "head": { + "id": "b9a30295-cddd-40a4-8749-df0fc1803a7c", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552614748458, + "endTime": 341553423532958 + }, + "additional": { + "children": [ + "c9e5642d-08ff-4b2d-8882-fa116b4f245a", + "198f06ee-b074-466d-a3e3-9af1ed294d63" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "0fe55a64-5b47-4d16-9799-8c2c09c6fcef", + "logId": "90948959-4c84-4a88-878c-12ee0f03d043" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c9e5642d-08ff-4b2d-8882-fa116b4f245a", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552614748791, + "endTime": 341553313824583 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "b9a30295-cddd-40a4-8749-df0fc1803a7c", + "logId": "74005250-df43-4de2-95f4-d094fc73320c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "198f06ee-b074-466d-a3e3-9af1ed294d63", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553313837750, + "endTime": 341553423526208 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "b9a30295-cddd-40a4-8749-df0fc1803a7c", + "logId": "f2213d7b-0808-472a-b443-f40e2c747187" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "760b1286-d649-4f71-af1b-8126ec2552af", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552614750333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0b0dc13a-f42e-46f3-a976-c7ba34f49227", + "name": "hvigorfile, require result: { default: { system: [Function: appTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553313663750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "74005250-df43-4de2-95f4-d094fc73320c", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552614748791, + "endTime": 341553313824583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "c9e5642d-08ff-4b2d-8882-fa116b4f245a", + "parent": "90948959-4c84-4a88-878c-12ee0f03d043" + } + }, + { + "head": { + "id": "d19a516a-0684-4c26-bc22-156ae02a8bd1", + "name": "hvigorfile, binding system plugins [Function: appTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553313890458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "78625134-b8e1-4a46-90af-7f3083bf6479", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553315393708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "118c07b4-1392-4d1d-8799-dbd768994903", + "name": "App plugin prepare start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553315435333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d3e5587d-ace5-4171-bea2-6d5c6dcd08a0", + "name": "App plugin prepare end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553315469708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fdbb73e2-a43a-4127-b540-c2d54a4dbc05", + "name": "App plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553315487791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "05f6abb0-dd29-44b3-9d2d-30d60b0c014e", + "name": "App plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553399240583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "93a08653-e438-4753-805f-16c4c854dfad", + "name": "App plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553399473375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "914b1951-6fc0-4d7d-a4e6-e54729e752ac", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553399491458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c6166e7d-3e5d-42ed-a364-2f9d9fd04998", + "name": "Start initialize project's product build option map with build mode debug.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553400225541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6c431a3e-c52e-4eb5-a458-e1dfba40088d", + "name": "Picking option from product 'default' with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553400365166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "507e0b5a-2607-4950-a92d-c57d1feedcf9", + "name": "Product 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553400667791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "76f78939-05b0-4765-8531-8e925e35359b", + "name": "End initialize project's product build option map with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553400689791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "186bc5f3-01c5-4506-bf31-0d567cadad0d", + "name": "Obtain build option for product 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553401685750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "000cfa09-ff8c-429b-9865-1c6a218b8c37", + "name": "No signingConfig found, initRemoteHspCache failed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553402636291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c07be7aa-e9d5-418e-9729-fecdd4587efe", + "name": "harmonyOS sdk scan", + "description": "HarmonyOS sdk scan", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553403594083, + "endTime": 341553404579250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Other", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9dbe67b0-c12d-42e2-a5e4-f4addc88ee75", + "name": "Local scan or download HarmonyOS sdk components toolchains,ets,js,native,previewer", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553403601791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8a860deb-ffcb-46a2-8b51-838db5d07a0e", + "name": "hmscore sdk scan", + "description": "Hmscore sdk scan", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553404642208, + "endTime": 341553404825083 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Other", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "587cabc0-c582-42c8-a71f-308cfa47d39a", + "name": "Local scan or download hmscore sdk components toolchains,ets,native", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553404648083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7a70d84f-7bfa-42cf-a6fb-4ca3610ef6ae", + "name": "Start recording SDK configuration permission data.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553405743083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "eaaccc5a-3baa-44fe-ab50-1e33a6409157", + "name": "Sdk init in 18 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553420845750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "68199fc3-2006-4afa-84ca-2c5821d8da26", + "name": "sdkVersion", + "description": "6.0.2.130", + "type": "mark" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553420938791 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 19, + "second": 40 + }, + "markType": "other" + } + }, + { + "head": { + "id": "a62d79d6-175f-4f1e-b9ba-b93ecb110fea", + "name": "caseSensitiveCheckOn", + "description": "caseSensitiveCheck check is on", + "type": "mark" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553420973916 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 19, + "second": 40 + }, + "markType": "other" + } + }, + { + "head": { + "id": "23d3245f-55ba-4df7-94b7-84d08668dc8c", + "name": "Project task initialization takes 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553423425458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "71aa5f1f-6dab-4cf8-a239-8c91919364a7", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553423499875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4cc125f9-c7e1-46c9-ba80-c3920f016a76", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553423511833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "10bca0c9-ec22-41a9-afce-be333b04be2b", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553423519708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f2213d7b-0808-472a-b443-f40e2c747187", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553313837750, + "endTime": 341553423526208 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "198f06ee-b074-466d-a3e3-9af1ed294d63", + "parent": "90948959-4c84-4a88-878c-12ee0f03d043" + } + }, + { + "head": { + "id": "90948959-4c84-4a88-878c-12ee0f03d043", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552614748458, + "endTime": 341553423532958 + }, + "additional": { + "logType": "info", + "children": [ + "74005250-df43-4de2-95f4-d094fc73320c", + "f2213d7b-0808-472a-b443-f40e2c747187" + ], + "durationId": "b9a30295-cddd-40a4-8749-df0fc1803a7c", + "parent": "4ae2b233-631c-4e74-aa09-40c050c21f45" + } + }, + { + "head": { + "id": "8deec256-e3a9-4fcd-b247-a1abfa9c577f", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553423573583, + "endTime": 341553423585250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "0fe55a64-5b47-4d16-9799-8c2c09c6fcef", + "logId": "cd11c231-e6b8-4e6f-9544-df4ed28ac915" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "cd11c231-e6b8-4e6f-9544-df4ed28ac915", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553423573583, + "endTime": 341553423585250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "8deec256-e3a9-4fcd-b247-a1abfa9c577f", + "parent": "4ae2b233-631c-4e74-aa09-40c050c21f45" + } + }, + { + "head": { + "id": "4ae2b233-631c-4e74-aa09-40c050c21f45", + "name": "eval project", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552614589125, + "endTime": 341553423592166 + }, + "additional": { + "logType": "info", + "children": [ + "f77b61b3-40f7-459c-927b-11b0021cf2cd", + "90948959-4c84-4a88-878c-12ee0f03d043", + "cd11c231-e6b8-4e6f-9544-df4ed28ac915" + ], + "durationId": "0fe55a64-5b47-4d16-9799-8c2c09c6fcef", + "parent": "08059c64-7b01-444b-86b9-40f3977520e2" + } + }, + { + "head": { + "id": "0adfac94-ff03-46c7-84af-554bd5013d09", + "name": "eval submodule", + "description": "Evaluate submodule.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553423716833, + "endTime": 341553451030916 + }, + "additional": { + "children": [ + "f2672cef-4a29-48c2-8557-df34332966c2", + "fa825e99-b9b1-40f8-8203-1d01363ba538", + "f6ce16ae-b6e5-44bb-9bbd-14db19adbe49" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "73fd7cb7-1e05-4021-9eba-43bdddbbac04", + "logId": "b05c6b5d-f9b4-44b8-9a8d-166fa75a696e" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f2672cef-4a29-48c2-8557-df34332966c2", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553423754041, + "endTime": 341553423758500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "0adfac94-ff03-46c7-84af-554bd5013d09", + "logId": "ab8c433d-de9b-49d8-b545-0c5f23686be8" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ab8c433d-de9b-49d8-b545-0c5f23686be8", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553423754041, + "endTime": 341553423758500 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f2672cef-4a29-48c2-8557-df34332966c2", + "parent": "b05c6b5d-f9b4-44b8-9a8d-166fa75a696e" + } + }, + { + "head": { + "id": "fa825e99-b9b1-40f8-8203-1d01363ba538", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553423774125, + "endTime": 341553450749333 + }, + "additional": { + "children": [ + "5ff7ee46-999c-4507-b8f2-c339b401f161", + "3bcbe9cb-0df1-4b68-9e34-d18a50709dbc" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "0adfac94-ff03-46c7-84af-554bd5013d09", + "logId": "c6f6a315-779b-43a0-9e65-c5ca19522d48" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "5ff7ee46-999c-4507-b8f2-c339b401f161", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553423774291, + "endTime": 341553428382458 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "fa825e99-b9b1-40f8-8203-1d01363ba538", + "logId": "41e012ad-b8f9-4913-9e97-82e7267f7998" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3bcbe9cb-0df1-4b68-9e34-d18a50709dbc", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553428390375, + "endTime": 341553450744666 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "fa825e99-b9b1-40f8-8203-1d01363ba538", + "logId": "9ba5b170-b177-46e5-9838-309aa69e87f9" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "50c137da-79aa-4bd9-bc51-5cc70cc9ab67", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553423775125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a80ae8df-6904-440e-b99b-e27968013329", + "name": "hvigorfile, require result: { default: { system: [Function: harTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553428338625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "41e012ad-b8f9-4913-9e97-82e7267f7998", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553423774291, + "endTime": 341553428382458 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "5ff7ee46-999c-4507-b8f2-c339b401f161", + "parent": "c6f6a315-779b-43a0-9e65-c5ca19522d48" + } + }, + { + "head": { + "id": "f7990c21-d8b9-4860-8b1d-b136540d723d", + "name": "hvigorfile, binding system plugins [Function: harTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553428395125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "903d1b0f-3186-4e29-b8c2-1e76148b42d1", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553428450041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5a28b530-fa3b-4268-aee5-b4d90212526c", + "name": "Har plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553428472250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dc491a9c-7d66-478e-90c3-3b5763896c4f", + "name": "failed to load cangjie to dynamically generate schemas: Error: Cannot find module '@ohos/cangjie-build-support/index'\nRequire stack:\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/hooks/cangjie-register.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/strategy/stage-init-strategy.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/abstract-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/factory/plugin-factory.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/index.js\n- /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/boot/index.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/cli/main/cli.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/bin/hvigor.js", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553428868208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "055836fe-dcde-4d4c-8ef9-4c61d24c34b1", + "name": "Start initialize module-target build option map, moduleName=xuqmSdk, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553447616833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b7caedf3-a5fd-4f33-bc11-1469c625321c", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553447727416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c2f92bed-da77-49f7-93b5-c0b0b38321bc", + "name": "Module 'xuqmSdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553447967250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4e619d9c-702b-40e8-b0a6-eaaf64ee041b", + "name": "End initialize module-target build option map, moduleName=xuqmSdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553447979375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c03b78aa-4e48-4283-9c61-08c959249ac2", + "name": "Start initialize module-target build option map, moduleName=xuqmSdk, buildMode=release", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553448000000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9a9c4805-7be6-411d-802e-a5ff982a6ec1", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553448013583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2c3441fe-feee-4c2e-87c9-51aa9f75812a", + "name": "Module 'xuqmSdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553448163375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "af26cf18-468b-4fab-bb04-214f94df6b14", + "name": "End initialize module-target build option map, moduleName=xuqmSdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553448173250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "072c16c7-ea5a-4d8d-a71a-83132e5c1678", + "name": "Start initialize module-target build option map, moduleName=xuqmSdk, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553448251375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1dc60a63-d249-46f5-9f2f-0f06f493a12e", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553448265458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "917e860b-c014-40c7-a2a4-308627b66a51", + "name": "Module 'xuqmSdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553448377416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f6f2d9fc-7484-4b2c-ab5c-8fd3031523cc", + "name": "End initialize module-target build option map, moduleName=xuqmSdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553448386750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d480d5d7-f576-40e2-b77b-8195764a4015", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553448458166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0e5e79f2-3d79-4468-8d2c-5cd21e990cc8", + "name": "Module xuqmSdk task initialization takes 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553450640000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "61c2cf5b-821d-456d-a931-e5107477a040", + "name": "Har plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553450672375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3eeda73a-56ec-41d8-a58d-b537ff468882", + "name": "Har plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553450689375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e0e1df87-043c-42c9-b013-e8e2b0ac4934", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553450695916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9239eeca-9214-4c6e-8358-542e4edab323", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553450722916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "30b260dd-d7f6-4093-afbb-0e0504d9ba57", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553450732125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c6c3ee35-b9f5-42b8-a625-015aa59d1788", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553450738250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9ba5b170-b177-46e5-9838-309aa69e87f9", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553428390375, + "endTime": 341553450744666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3bcbe9cb-0df1-4b68-9e34-d18a50709dbc", + "parent": "c6f6a315-779b-43a0-9e65-c5ca19522d48" + } + }, + { + "head": { + "id": "c6f6a315-779b-43a0-9e65-c5ca19522d48", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553423774125, + "endTime": 341553450749333 + }, + "additional": { + "logType": "info", + "children": [ + "41e012ad-b8f9-4913-9e97-82e7267f7998", + "9ba5b170-b177-46e5-9838-309aa69e87f9" + ], + "durationId": "fa825e99-b9b1-40f8-8203-1d01363ba538", + "parent": "b05c6b5d-f9b4-44b8-9a8d-166fa75a696e" + } + }, + { + "head": { + "id": "f6ce16ae-b6e5-44bb-9bbd-14db19adbe49", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553451023083, + "endTime": 341553451026666 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "0adfac94-ff03-46c7-84af-554bd5013d09", + "logId": "79433907-04df-4f37-94f3-b4a494f1f61a" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "79433907-04df-4f37-94f3-b4a494f1f61a", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553451023083, + "endTime": 341553451026666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f6ce16ae-b6e5-44bb-9bbd-14db19adbe49", + "parent": "b05c6b5d-f9b4-44b8-9a8d-166fa75a696e" + } + }, + { + "head": { + "id": "b05c6b5d-f9b4-44b8-9a8d-166fa75a696e", + "name": "eval submodule", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553423716833, + "endTime": 341553451030916 + }, + "additional": { + "logType": "info", + "children": [ + "ab8c433d-de9b-49d8-b545-0c5f23686be8", + "c6f6a315-779b-43a0-9e65-c5ca19522d48", + "79433907-04df-4f37-94f3-b4a494f1f61a" + ], + "durationId": "0adfac94-ff03-46c7-84af-554bd5013d09", + "parent": "e8391218-106a-41f8-abf1-19e8b0f428d8" + } + }, + { + "head": { + "id": "409687d5-9d5c-4bfa-b8d8-61d747f7d5df", + "name": "eval submodule", + "description": "Evaluate submodule.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553451042541, + "endTime": 341553457316291 + }, + "additional": { + "children": [ + "e1325bca-8d68-4bd7-a4b7-486db4b566ac", + "6c9e57cc-5e3b-49a4-97e0-9ac060934a8c", + "01afd73b-a11e-4081-95ac-50f1b0fa3433" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "73fd7cb7-1e05-4021-9eba-43bdddbbac04", + "logId": "1cb50dfe-2a80-4f23-955d-c503130946e2" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e1325bca-8d68-4bd7-a4b7-486db4b566ac", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553451071958, + "endTime": 341553451073916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "409687d5-9d5c-4bfa-b8d8-61d747f7d5df", + "logId": "d39fcb95-fb03-4a08-a947-3ddd59dcd26d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "d39fcb95-fb03-4a08-a947-3ddd59dcd26d", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553451071958, + "endTime": 341553451073916 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e1325bca-8d68-4bd7-a4b7-486db4b566ac", + "parent": "1cb50dfe-2a80-4f23-955d-c503130946e2" + } + }, + { + "head": { + "id": "6c9e57cc-5e3b-49a4-97e0-9ac060934a8c", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553451088958, + "endTime": 341553457279541 + }, + "additional": { + "children": [ + "71225f05-fba0-4701-a913-99ac6e8b1e57", + "110cd095-13b8-4cb5-85b7-b430016d6219" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "409687d5-9d5c-4bfa-b8d8-61d747f7d5df", + "logId": "abc774b0-9b24-4662-be50-5518cd0c7ecd" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "71225f05-fba0-4701-a913-99ac6e8b1e57", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553451089083, + "endTime": 341553454370333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "6c9e57cc-5e3b-49a4-97e0-9ac060934a8c", + "logId": "c8bc97db-7e72-4d76-96a9-8075b297bd3b" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "110cd095-13b8-4cb5-85b7-b430016d6219", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553454378250, + "endTime": 341553457274083 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "6c9e57cc-5e3b-49a4-97e0-9ac060934a8c", + "logId": "ce60ef34-48af-417d-81c4-3b6fa7ead928" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2ecca4c7-49da-4911-bd9b-bc1a9ffd4b74", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553451089958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2d1f19a5-4fd2-4d86-9e2d-f16f0d460ee9", + "name": "hvigorfile, require result: { default: { system: [Function: hapTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553454328458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c8bc97db-7e72-4d76-96a9-8075b297bd3b", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553451089083, + "endTime": 341553454370333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "71225f05-fba0-4701-a913-99ac6e8b1e57", + "parent": "abc774b0-9b24-4662-be50-5518cd0c7ecd" + } + }, + { + "head": { + "id": "497566ad-4f45-438b-a913-c4f42fcaaba8", + "name": "hvigorfile, binding system plugins [Function: hapTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553454382916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4e45804a-085d-4b3f-b9da-7e7253d9e1c1", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553454433708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9319bb55-da8f-4fa1-a0f8-3b6014f67aeb", + "name": "Hap plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553454456375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "77d471fd-7fcb-42d1-b71d-fd660d59efc0", + "name": "failed to load cangjie to dynamically generate schemas: Error: Cannot find module '@ohos/cangjie-build-support/index'\nRequire stack:\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/hooks/cangjie-register.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/strategy/stage-init-strategy.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/abstract-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/factory/plugin-factory.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/index.js\n- /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/boot/index.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/cli/main/cli.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/bin/hvigor.js", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553454568083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4f9b407e-a685-4fe9-96bf-1db29531e090", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553456219541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "be132c65-c557-4660-b5af-be2f9c6ffaf0", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553456243208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e5396087-a44f-4ea5-8427-a1de878e35fe", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553456295583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3cc0c5a8-e48a-4da1-a20b-fc5f6790ff11", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553456302833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f1c4b48c-c251-4bbd-b58d-91f8b9fcd9f2", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=release", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553456316333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1d4e8769-5214-4c4d-9ecb-65ec90e1813a", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553456325625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "34bc3ef5-8afc-4a1d-97b4-96cf6a8c4a75", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553456367208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7ca342fe-2537-444c-896c-da7c27b843ef", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553456373916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3e9822d1-b235-4cbf-91bf-73a3967f4298", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553456388833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a0beed22-bc3a-455f-a613-a9f70166bab5", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553456398166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c35b8049-de15-4230-b7ae-b4767f481775", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553456439250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a009a29c-6ca3-415d-9d25-c8a4b7e79983", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553456445750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6d039516-c5ee-4e8b-a054-10e60b2ece9d", + "name": "Obtain build option for module 'entry' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553456454833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "19d061b6-6c00-4af1-a2b7-9ea2d4be1fc7", + "name": "Module entry task initialization takes 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553457168291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7b80c9d1-6584-49e9-a369-c5da6c23fb1b", + "name": "Hap plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553457207458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a41217e1-393e-4941-b2ed-022c9b3da4e4", + "name": "Hap plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553457219583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "652401b3-c87b-4abf-94f3-6c6b6cd37eb6", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553457226416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7da17b27-c3b3-4ac6-be5e-d646a39ddf97", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553457252208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e34672a3-f22d-4f9f-b99f-b7e6147ab0ee", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553457262000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a5f49aac-2aa8-46a3-97ce-3840ad5c6f90", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553457268250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ce60ef34-48af-417d-81c4-3b6fa7ead928", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553454378250, + "endTime": 341553457274083 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "110cd095-13b8-4cb5-85b7-b430016d6219", + "parent": "abc774b0-9b24-4662-be50-5518cd0c7ecd" + } + }, + { + "head": { + "id": "abc774b0-9b24-4662-be50-5518cd0c7ecd", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553451088958, + "endTime": 341553457279541 + }, + "additional": { + "logType": "info", + "children": [ + "c8bc97db-7e72-4d76-96a9-8075b297bd3b", + "ce60ef34-48af-417d-81c4-3b6fa7ead928" + ], + "durationId": "6c9e57cc-5e3b-49a4-97e0-9ac060934a8c", + "parent": "1cb50dfe-2a80-4f23-955d-c503130946e2" + } + }, + { + "head": { + "id": "01afd73b-a11e-4081-95ac-50f1b0fa3433", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553457308500, + "endTime": 341553457312250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "409687d5-9d5c-4bfa-b8d8-61d747f7d5df", + "logId": "fb26c423-7d1d-4b21-9612-4e2ae8dff431" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "fb26c423-7d1d-4b21-9612-4e2ae8dff431", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553457308500, + "endTime": 341553457312250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "01afd73b-a11e-4081-95ac-50f1b0fa3433", + "parent": "1cb50dfe-2a80-4f23-955d-c503130946e2" + } + }, + { + "head": { + "id": "1cb50dfe-2a80-4f23-955d-c503130946e2", + "name": "eval submodule", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553451042541, + "endTime": 341553457316291 + }, + "additional": { + "logType": "info", + "children": [ + "d39fcb95-fb03-4a08-a947-3ddd59dcd26d", + "abc774b0-9b24-4662-be50-5518cd0c7ecd", + "fb26c423-7d1d-4b21-9612-4e2ae8dff431" + ], + "durationId": "409687d5-9d5c-4bfa-b8d8-61d747f7d5df", + "parent": "e8391218-106a-41f8-abf1-19e8b0f428d8" + } + }, + { + "head": { + "id": "e8391218-106a-41f8-abf1-19e8b0f428d8", + "name": "eval modules", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553423712166, + "endTime": 341553457320625 + }, + "additional": { + "logType": "info", + "children": [ + "b05c6b5d-f9b4-44b8-9a8d-166fa75a696e", + "1cb50dfe-2a80-4f23-955d-c503130946e2" + ], + "durationId": "73fd7cb7-1e05-4021-9eba-43bdddbbac04", + "parent": "08059c64-7b01-444b-86b9-40f3977520e2" + } + }, + { + "head": { + "id": "22d4cca9-5bea-4f75-8926-b72be931fbd6", + "name": "add config dependencies", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553457338125, + "endTime": 341553457338583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9b6fad0c-5f93-4cad-9579-860f28d10096", + "parent": "08059c64-7b01-444b-86b9-40f3977520e2" + } + }, + { + "head": { + "id": "73a92d72-3a33-4b7b-9e3f-52366e5bc7ad", + "name": "\"nodesEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553457345000, + "endTime": 341553457475583 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e1c840ba-e210-483d-8fde-a176166ac1a1", + "logId": "58416632-b183-4f32-9008-fd07f6453925" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "471cbabe-c919-43a0-84da-6661919f615f", + "name": "project has submodules:xuqmSdk,entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553457373458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2b6ab1d4-ac93-4486-84dc-60aae43f8396", + "name": "module:xuqmSdk no need to execute packageHap", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553457436333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "58416632-b183-4f32-9008-fd07f6453925", + "name": "\"nodesEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553457345000, + "endTime": 341553457475583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "73a92d72-3a33-4b7b-9e3f-52366e5bc7ad", + "parent": "08059c64-7b01-444b-86b9-40f3977520e2" + } + }, + { + "head": { + "id": "96286e4d-864c-42e6-871a-4632b9beeea9", + "name": "start to load updatedOhPackageInfo to the disk", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553458163083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "923480ec-9063-4164-a84f-6b95b5ee357b", + "name": "load to the disk finished", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553460297541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "45c5d30e-4066-47b9-b25c-d7dc4aedc074", + "name": "ohpm install", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553457478291, + "endTime": 341553460561041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "971f7f0b-d1fd-4476-b090-50a533483314", + "parent": "08059c64-7b01-444b-86b9-40f3977520e2" + } + }, + { + "head": { + "id": "17dce97e-e0e7-4922-87e9-ba1c10b9801b", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553460610916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "da646ffa-5882-4fa1-81b8-cbe9afb3264c", + "name": "Module XuqmGroup-HarmonySDK Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553461324125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d1221c86-7453-4d51-8dd5-4142a71f34e1", + "name": "Module XuqmGroup-HarmonySDK's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553461336125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3834f6ee-ea0a-4fc5-a281-9c7a04f03fff", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553463416750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0d87e042-646a-4786-b886-f4506627ad64", + "name": "Module xuqmSdk Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553463955625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ee3a454a-37b9-4e9a-85eb-a426ec03cdce", + "name": "Module xuqmSdk's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553463982291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2c27ed28-22f0-481d-929b-f7a132d9c174", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553465412833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c85a5521-445f-4c6b-942c-a03791c47a37", + "name": "Module entry Collected Dependency: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553466293541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "248265fb-15b8-440e-ba68-e85555346d53", + "name": "Module entry's total dependency: 1", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553466305958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "91f0f4ee-a386-46ec-80f5-ce89cc976bd3", + "name": "eval hook", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553460568500, + "endTime": 341553466829333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "da3ddffc-f68f-476c-a071-5798c5320d34", + "parent": "08059c64-7b01-444b-86b9-40f3977520e2" + } + }, + { + "head": { + "id": "27d880c4-004f-43cd-8b27-6cbb08d06f49", + "name": "Configuration phase cost:853 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553466852625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3e6b7f70-c177-47f6-838c-8880eeb3a143", + "name": "fin configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553466836416, + "endTime": 341553466862708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "057464c5-bd8e-4a44-9c6a-fe5cc8135b52", + "parent": "08059c64-7b01-444b-86b9-40f3977520e2" + } + }, + { + "head": { + "id": "08059c64-7b01-444b-86b9-40f3977520e2", + "name": "configure hvigor plugin", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552614201583, + "endTime": 341553466866166 + }, + "additional": { + "logType": "info", + "children": [ + "8b706614-f31e-4f76-9091-b2187a095a29", + "4ad69186-7f57-488f-914a-cf00437c09da", + "4ae2b233-631c-4e74-aa09-40c050c21f45", + "e8391218-106a-41f8-abf1-19e8b0f428d8", + "22d4cca9-5bea-4f75-8926-b72be931fbd6", + "45c5d30e-4066-47b9-b25c-d7dc4aedc074", + "91f0f4ee-a386-46ec-80f5-ce89cc976bd3", + "3e6b7f70-c177-47f6-838c-8880eeb3a143", + "58416632-b183-4f32-9008-fd07f6453925" + ], + "durationId": "e1c840ba-e210-483d-8fde-a176166ac1a1", + "parent": "c40be70d-45ee-409d-aa31-336520834a3e" + } + }, + { + "head": { + "id": "c5d9dd49-69b8-4634-a1c2-344efa049812", + "name": "\"taskGraphResolved\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553467713375, + "endTime": 341553467727791 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "09958266-7fbd-47b3-81e6-ee27018a8570", + "logId": "f1331df6-065c-4f1a-a7f3-ab5a9bd308d3" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f1331df6-065c-4f1a-a7f3-ab5a9bd308d3", + "name": "\"taskGraphResolved\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553467713375, + "endTime": 341553467727791 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "c5d9dd49-69b8-4634-a1c2-344efa049812", + "parent": "c40be70d-45ee-409d-aa31-336520834a3e" + } + }, + { + "head": { + "id": "ab231095-af5d-4a7b-8ab7-6e57af233f4c", + "name": "build task graph", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553466879000, + "endTime": 341553467732375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f99e9eaf-2b09-44e4-ad62-83e58500b99a", + "parent": "c40be70d-45ee-409d-aa31-336520834a3e" + } + }, + { + "head": { + "id": "38014006-1f8d-4cbd-952d-b8efeadb2f79", + "name": "init task execution option", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553467734291, + "endTime": 341553467737416 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "4870be77-aae8-4170-98d3-a47917262ef6", + "parent": "c40be70d-45ee-409d-aa31-336520834a3e" + } + }, + { + "head": { + "id": "c40be70d-45ee-409d-aa31-336520834a3e", + "name": "init", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552609396708, + "endTime": 341553467740166 + }, + "additional": { + "logType": "info", + "children": [ + "c92491d0-c137-4d39-98bf-38d78398cb69", + "08059c64-7b01-444b-86b9-40f3977520e2", + "ab231095-af5d-4a7b-8ab7-6e57af233f4c", + "38014006-1f8d-4cbd-952d-b8efeadb2f79", + "b8bdcfa8-7349-415f-a353-0f69fb0ec841", + "4c46adb7-71c2-43bf-9da2-d7c1de4b4fd4", + "f1331df6-065c-4f1a-a7f3-ab5a9bd308d3" + ], + "durationId": "09958266-7fbd-47b3-81e6-ee27018a8570" + } + }, + { + "head": { + "id": "9f47b236-7378-4e15-bee9-d2860f345abc", + "name": "Configuration task cost before running: 860 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553468091000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "60853f73-dbec-499f-afef-b077b7639bc5", + "name": "entry:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553470070708, + "endTime": 341553473840500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Verification", + "taskRunReasons": [], + "detailId": "fdf7a38f-9a49-4136-9087-ff541c19a9cd", + "logId": "fe6424b0-641c-4bc2-b0c6-5bfb59915ec2" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "fdf7a38f-9a49-4136-9087-ff541c19a9cd", + "name": "create entry:default@PreBuild task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553468333333 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "60853f73-dbec-499f-afef-b077b7639bc5" + } + }, + { + "head": { + "id": "a5a2abba-a76e-44c4-a83a-df2c4bc75a47", + "name": "Executing task :entry:default@PreBuild", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553470082833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5c433f14-1b44-43aa-b220-764eb16d720d", + "name": "The project has not explicitly set the 'targetSdkVersion' version at build-profile.json5. It is recommended to configure it. Reference: https://developer.huawei.com/consumer/cn/doc/harmonyos-guides/ide-hvigor-build-profile-app#section45865492619", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553470276083 + }, + "additional": { + "logType": "warn", + "children": [] + } + }, + { + "head": { + "id": "1c94a858-b599-4413-a89d-0cea0805332f", + "name": "Task 'entry:default@PreBuild' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553471485166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "80130e1a-8877-4feb-aa48-c1bacd9cac10", + "name": "Incremental task entry:default@PreBuild pre-execution cost: 2 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553473752458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "217afed8-e7c2-415b-b9ee-efc48edce6a8", + "name": "entry : default@PreBuild cost memory 0.3212890625", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553473792708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fe6424b0-641c-4bc2-b0c6-5bfb59915ec2", + "name": "UP-TO-DATE :entry:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553470070708, + "endTime": 341553473840500 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "60853f73-dbec-499f-afef-b077b7639bc5" + } + }, + { + "head": { + "id": "ff6f41cb-0866-40a9-9b25-29c7141ef475", + "name": "xuqmSdk:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553474732291, + "endTime": 341553475774125 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Verification", + "taskRunReasons": [], + "detailId": "fdf15081-aebf-438d-a008-be7f29c305b2", + "logId": "59d2d6a4-6190-4a9b-98bf-2cd1b6e9101d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "fdf15081-aebf-438d-a008-be7f29c305b2", + "name": "create xuqmSdk:default@PreBuild task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553474314583 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "ff6f41cb-0866-40a9-9b25-29c7141ef475" + } + }, + { + "head": { + "id": "68733e70-c320-435b-89a3-ab7a7a87aed6", + "name": "Executing task :xuqmSdk:default@PreBuild", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553474735583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6d169334-370f-45a1-b988-6f368da18a4e", + "name": "Task 'xuqmSdk:default@PreBuild' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553474837666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "82ff6659-6f73-425f-b75e-73959d416847", + "name": "Incremental task xuqmSdk:default@PreBuild pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553475741750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4a157b1f-14cf-4e34-b2f9-2bf692e5f5ee", + "name": "xuqmSdk : default@PreBuild cost memory 0.40570068359375", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553475762625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "59d2d6a4-6190-4a9b-98bf-2cd1b6e9101d", + "name": "UP-TO-DATE :xuqmSdk:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553474732291, + "endTime": 341553475774125 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ff6f41cb-0866-40a9-9b25-29c7141ef475" + } + }, + { + "head": { + "id": "7286083a-b087-4ee7-9cd0-5481d2c8f0e2", + "name": "entry:default@CreateModuleInfo", + "description": "Create the ModuleInfo.ts file for the hap/hsp package.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553476210416, + "endTime": 341553476494875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "b083e77d-5ab0-44c4-ad31-4151d970b355", + "logId": "e85d0ac1-4df3-454b-8f4a-23074c266a07" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b083e77d-5ab0-44c4-ad31-4151d970b355", + "name": "create entry:default@CreateModuleInfo task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553476093000 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "7286083a-b087-4ee7-9cd0-5481d2c8f0e2" + } + }, + { + "head": { + "id": "32a12c1f-07de-44d2-87f5-3f2192ca5fbe", + "name": "Executing task :entry:default@CreateModuleInfo", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553476213083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ba27aaeb-8ddc-45ee-9202-6f30dce9f42a", + "name": "Task 'entry:default@CreateModuleInfo' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553476320375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4076649d-94e7-40bd-a91c-f7aa7fbc94a9", + "name": "entry : default@CreateModuleInfo cost memory 0.03594207763671875", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553476444541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "335caf50-1723-4c34-a4b1-2ff24996465f", + "name": "runTaskFromQueue task cost before running: 868 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553476462041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e85d0ac1-4df3-454b-8f4a-23074c266a07", + "name": "Finished :entry:default@CreateModuleInfo", + "description": "Create the ModuleInfo.ts file for the hap/hsp package.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553476210416, + "endTime": 341553476494875, + "totalTime": 244792 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "7286083a-b087-4ee7-9cd0-5481d2c8f0e2" + } + }, + { + "head": { + "id": "f3ad0bae-023e-43cf-b5c0-cb9f321a02e2", + "name": "entry:default@GenerateMetadata", + "description": "Generate metadata in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553477038000, + "endTime": 341553477373750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "5aa918c8-9888-4735-805d-57bebbe77cab", + "logId": "1712ae3f-277e-4f45-9499-9c9e3d21a397" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "5aa918c8-9888-4735-805d-57bebbe77cab", + "name": "create entry:default@GenerateMetadata task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553476656583 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "f3ad0bae-023e-43cf-b5c0-cb9f321a02e2" + } + }, + { + "head": { + "id": "ee153963-0bfa-4977-86a2-11434f9b327e", + "name": "Executing task :entry:default@GenerateMetadata", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553477041750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "04ba0611-19e8-45da-872a-bb5be8387682", + "name": "Task 'entry:default@GenerateMetadata' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553477201125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c1191d51-96c2-4ec1-8fd3-f9940d0eaf73", + "name": "Incremental task entry:default@GenerateMetadata pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553477347583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3a53f4a2-05a3-4b4f-a8b0-b22365dd5d15", + "name": "entry : default@GenerateMetadata cost memory 0.07042694091796875", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553477363541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1712ae3f-277e-4f45-9499-9c9e3d21a397", + "name": "UP-TO-DATE :entry:default@GenerateMetadata", + "description": "Generate metadata in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553477038000, + "endTime": 341553477373750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f3ad0bae-023e-43cf-b5c0-cb9f321a02e2" + } + }, + { + "head": { + "id": "6d0401d1-21cd-479d-ae05-7867085b1921", + "name": "entry:default@PreCheckSyscap", + "description": "Pre-check SysCap.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553477751333, + "endTime": 341553477859291 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Verification", + "taskRunReasons": [], + "detailId": "88967a9a-9dd2-4ffd-9f8f-d06da207e438", + "logId": "98125364-844e-4642-aeb9-54c1d29488a4" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "88967a9a-9dd2-4ffd-9f8f-d06da207e438", + "name": "create entry:default@PreCheckSyscap task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553477460750 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "6d0401d1-21cd-479d-ae05-7867085b1921" + } + }, + { + "head": { + "id": "b1cfef87-8f89-4e0f-b913-17e850665a0a", + "name": "Executing task :entry:default@PreCheckSyscap", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553477755750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c657fde5-ddc1-49db-809f-d3ac31ac220d", + "name": "entry : default@PreCheckSyscap cost memory 0.01346588134765625", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553477836291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "88ceceb6-6c4e-4096-b149-0a5b3c1ce6ae", + "name": "runTaskFromQueue task cost before running: 869 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553477851708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "98125364-844e-4642-aeb9-54c1d29488a4", + "name": "Finished :entry:default@PreCheckSyscap", + "description": "Pre-check SysCap.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553477751333, + "endTime": 341553477859291, + "totalTime": 95000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "6d0401d1-21cd-479d-ae05-7867085b1921" + } + }, + { + "head": { + "id": "adba05e5-d7da-4d26-8b22-b68c30aa9dcf", + "name": "entry:default@GeneratePkgContextInfo", + "description": "Generate pkgContextInfo.json to ets-loader.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553478240666, + "endTime": 341553482693791 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "1245780d-bfca-4b45-8954-bd80c51cc5a2", + "logId": "290a0032-da96-40ce-8b99-aad807c47536" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "1245780d-bfca-4b45-8954-bd80c51cc5a2", + "name": "create entry:default@GeneratePkgContextInfo task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553477980083 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "adba05e5-d7da-4d26-8b22-b68c30aa9dcf" + } + }, + { + "head": { + "id": "d046ece6-bab5-4c0d-aaab-cac114b3cdd2", + "name": "Executing task :entry:default@GeneratePkgContextInfo", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553478243500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a133f0b7-1c6d-4846-b449-5be2a3e89cc5", + "name": "Task 'entry:default@GeneratePkgContextInfo' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553482395958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "eb1be928-d069-489d-bbe8-5afdfc8d975c", + "name": "Incremental task entry:default@GeneratePkgContextInfo pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553482648375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "41e55c2c-2866-4f78-b7ed-7ef1c66bc489", + "name": "entry : default@GeneratePkgContextInfo cost memory 0.47088623046875", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553482677583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "290a0032-da96-40ce-8b99-aad807c47536", + "name": "UP-TO-DATE :entry:default@GeneratePkgContextInfo", + "description": "Generate pkgContextInfo.json to ets-loader.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553478240666, + "endTime": 341553482693791 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "adba05e5-d7da-4d26-8b22-b68c30aa9dcf" + } + }, + { + "head": { + "id": "c49aa2b7-5bdc-4193-a552-db77ba5eb541", + "name": "entry:default@ProcessIntegratedHsp", + "description": "Use package tool process integrated hsp.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553483695666, + "endTime": 341553483915416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Sign", + "taskRunReasons": [ + "The output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build/cache/default/integrated_hsp/integratedHspCache.json' does not exist." + ], + "detailId": "2d55ebee-a376-43b1-93c9-464f3d62f0ca", + "logId": "afeca530-42ab-4c17-98d9-3414b4bdb8be" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2d55ebee-a376-43b1-93c9-464f3d62f0ca", + "name": "create entry:default@ProcessIntegratedHsp task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553482888958 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "c49aa2b7-5bdc-4193-a552-db77ba5eb541" + } + }, + { + "head": { + "id": "85b0cd7f-8400-490a-b101-8c93abf3aff6", + "name": "Executing task :entry:default@ProcessIntegratedHsp", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553483699083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "deb399c3-5c42-49c7-baa0-904959628d54", + "name": "entry:default@ProcessIntegratedHsp is not up-to-date, since the output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build/cache/default/integrated_hsp/integratedHspCache.json' does not exist.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553483823291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "67686091-762c-40fe-ad73-730c6e45dace", + "name": "Incremental task entry:default@ProcessIntegratedHsp pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553483843375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7de738ec-3ff4-4d4f-aed2-d205f059588d", + "name": "entry : default@ProcessIntegratedHsp cost memory 0.04724884033203125", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553483891541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cd35b5a3-2772-4e3c-972c-7121b70f4563", + "name": "runTaskFromQueue task cost before running: 875 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553483907500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "afeca530-42ab-4c17-98d9-3414b4bdb8be", + "name": "Finished :entry:default@ProcessIntegratedHsp", + "description": "Use package tool process integrated hsp.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553483695666, + "endTime": 341553483915416, + "totalTime": 206458 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "c49aa2b7-5bdc-4193-a552-db77ba5eb541" + } + }, + { + "head": { + "id": "0bb1e1e0-d5fe-45f8-84c9-d127dd3a645a", + "name": "xuqmSdk:default@CreateHarBuildProfile", + "description": "Create the BuildProfile.ets file for the HAR package.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553484440375, + "endTime": 341553484727625 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Generate", + "taskRunReasons": [], + "detailId": "774a1a80-4bea-4894-8cbe-0449af097a20", + "logId": "4a2a177a-2e81-4a64-a814-3570f95011f7" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "774a1a80-4bea-4894-8cbe-0449af097a20", + "name": "create xuqmSdk:default@CreateHarBuildProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553484110250 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "0bb1e1e0-d5fe-45f8-84c9-d127dd3a645a" + } + }, + { + "head": { + "id": "a7f16761-29f2-413c-919b-a5685356270a", + "name": "Executing task :xuqmSdk:default@CreateHarBuildProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553484443166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3eedecba-5a8d-4d75-ba87-bfa736f1ff33", + "name": "Task 'xuqmSdk:default@CreateHarBuildProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553484523208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8866c1c7-e5ab-4757-adbe-8565ff7e0728", + "name": "Incremental task xuqmSdk:default@CreateHarBuildProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553484702958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "55565282-3e41-4ed9-8341-03e487319ad2", + "name": "xuqmSdk : default@CreateHarBuildProfile cost memory 0.0720367431640625", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553484716916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4a2a177a-2e81-4a64-a814-3570f95011f7", + "name": "UP-TO-DATE :xuqmSdk:default@CreateHarBuildProfile", + "description": "Create the BuildProfile.ets file for the HAR package.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553484440375, + "endTime": 341553484727625 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "0bb1e1e0-d5fe-45f8-84c9-d127dd3a645a" + } + }, + { + "head": { + "id": "1a01f5b8-55b7-4512-9317-bea702b1c174", + "name": "xuqmSdk:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553485173166, + "endTime": 341553485237166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "8eb241d3-6349-4931-9cb9-15598ef28f23", + "logId": "047a1906-67b7-49fb-91ac-c86a3f9db16d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8eb241d3-6349-4931-9cb9-15598ef28f23", + "name": "create xuqmSdk:default@ConfigureCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553484889083 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "1a01f5b8-55b7-4512-9317-bea702b1c174" + } + }, + { + "head": { + "id": "ed5ad159-9e7f-4fd8-8459-562b6cfd9f2a", + "name": "Executing task :xuqmSdk:default@ConfigureCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553485176500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ba81b08a-65f2-4ba0-b5af-ed8e8bc3a712", + "name": "xuqmSdk : default@ConfigureCmake cost memory 0.01244354248046875", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553485215291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dc4ee2d9-7617-4d49-9fcc-291fa7dff3fc", + "name": "runTaskFromQueue task cost before running: 877 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553485230291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "047a1906-67b7-49fb-91ac-c86a3f9db16d", + "name": "Finished :xuqmSdk:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553485173166, + "endTime": 341553485237166, + "totalTime": 50875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "1a01f5b8-55b7-4512-9317-bea702b1c174" + } + }, + { + "head": { + "id": "fac2d280-cbdc-4749-ae0c-1990621b3c0f", + "name": "xuqmSdk:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553485577875, + "endTime": 341553486176875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Config", + "taskRunReasons": [], + "detailId": "d589b737-8d63-4476-8909-86b57aafe07a", + "logId": "6a91b918-17f2-48f0-af34-e94097201919" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "d589b737-8d63-4476-8909-86b57aafe07a", + "name": "create xuqmSdk:default@MergeProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553485400166 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "fac2d280-cbdc-4749-ae0c-1990621b3c0f" + } + }, + { + "head": { + "id": "52cef964-a6a8-4d6c-89fb-05fb887a3a3b", + "name": "Executing task :xuqmSdk:default@MergeProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553485580916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "18bf1a08-9194-4c0a-b3cd-978bfd28ebd6", + "name": "Task 'xuqmSdk:default@MergeProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553485679583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5f110801-86e6-4a71-b071-f9cf7f818bba", + "name": "Incremental task xuqmSdk:default@MergeProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553486146333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ce22828c-fc32-48ef-be67-6902ce19be94", + "name": "xuqmSdk : default@MergeProfile cost memory 0.09925079345703125", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553486164666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6a91b918-17f2-48f0-af34-e94097201919", + "name": "UP-TO-DATE :xuqmSdk:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553485577875, + "endTime": 341553486176875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "fac2d280-cbdc-4749-ae0c-1990621b3c0f" + } + }, + { + "head": { + "id": "61a39780-3c8a-49dc-84a8-1c8ff2566e39", + "name": "entry:default@SyscapTransform", + "description": "Transform SysCap in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553486826666, + "endTime": 341553497254375 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [ + "The output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/syscap/default/rpcid.sc' does not exist." + ], + "detailId": "2308b0e5-a275-4b96-9e27-635e21aa03ef", + "logId": "9e824deb-a6d6-4957-ad5d-89e0a34a49c3" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2308b0e5-a275-4b96-9e27-635e21aa03ef", + "name": "create entry:default@SyscapTransform task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553486357041 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "61a39780-3c8a-49dc-84a8-1c8ff2566e39" + } + }, + { + "head": { + "id": "21b5e36c-88ef-40f2-b82f-017841b8c862", + "name": "Executing task :entry:default@SyscapTransform", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553486831583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a119e6c6-98fe-4bf9-b6b6-5f16a4cb7aab", + "name": "File: '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/syscap.json' from 'sysCapJsonPath' is not exists, just ignore.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553486866708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "95180e14-3d54-4c2e-9e40-47834fc384f9", + "name": "Task 'entry:default@SyscapTransform' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553486982541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a705e531-906d-48f3-8c87-2752e92c1953", + "name": "entry:default@SyscapTransform is not up-to-date, since the output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/syscap/default/rpcid.sc' does not exist.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553497000833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ef9c01d4-8efa-4641-a504-a0643278ed8e", + "name": "Incremental task entry:default@SyscapTransform pre-execution cost: 11 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553497067083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "24515b6c-5797-4822-ab25-de1e33e52396", + "name": "entry : default@SyscapTransform cost memory 0.31356048583984375", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553497215875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "afc8c72a-049f-43ce-875d-6531be8bb141", + "name": "runTaskFromQueue task cost before running: 889 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553497243291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9e824deb-a6d6-4957-ad5d-89e0a34a49c3", + "name": "Finished :entry:default@SyscapTransform", + "description": "Transform SysCap in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553486826666, + "endTime": 341553497254375, + "totalTime": 10406584 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "61a39780-3c8a-49dc-84a8-1c8ff2566e39" + } + }, + { + "head": { + "id": "1e840076-cc03-4cb8-b2b0-1fc44c6140c8", + "name": "entry:default@ProcessRouterMap", + "description": "Process router map configuration.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553498071125, + "endTime": 341553498974666 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "77778814-bc15-408b-b86b-e901a7cce024", + "logId": "4a1417f4-b1bb-4075-9af5-cef633f5874e" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "77778814-bc15-408b-b86b-e901a7cce024", + "name": "create entry:default@ProcessRouterMap task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553497480416 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "1e840076-cc03-4cb8-b2b0-1fc44c6140c8" + } + }, + { + "head": { + "id": "7926612b-73f1-4d47-9e6e-5585432ee5d0", + "name": "Executing task :entry:default@ProcessRouterMap", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553498076208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c92637c4-29b6-4200-880c-4c9b1f6ad311", + "name": "Incremental task entry:default@ProcessRouterMap pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553498857000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "994aba4e-e5d0-4ae8-80f4-6dc362f9a91c", + "name": "entry : default@ProcessRouterMap cost memory 0.1393280029296875", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553498888875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4a1417f4-b1bb-4075-9af5-cef633f5874e", + "name": "UP-TO-DATE :entry:default@ProcessRouterMap", + "description": "Process router map configuration.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553498071125, + "endTime": 341553498974666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "1e840076-cc03-4cb8-b2b0-1fc44c6140c8" + } + }, + { + "head": { + "id": "d194356b-a9cd-4146-9fe0-60ac937271bb", + "name": "entry:default@ProcessShareConfig", + "description": "Process share config configuration.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553499654083, + "endTime": 341553500175416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "21f0589d-e68e-49f8-8447-c5c3905aea77", + "logId": "0ed811c4-cf6e-4339-b55f-26aa7f80ebd7" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "21f0589d-e68e-49f8-8447-c5c3905aea77", + "name": "create entry:default@ProcessShareConfig task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553499193208 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "d194356b-a9cd-4146-9fe0-60ac937271bb" + } + }, + { + "head": { + "id": "8b84b319-4859-412b-94f3-4d4a176bed2f", + "name": "Executing task :entry:default@ProcessShareConfig", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553499661750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a98d488b-0b35-4166-9ede-dc396e44b954", + "name": "Incremental task entry:default@ProcessShareConfig pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553500134375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1a344fd6-7686-4118-a730-3456d64a0b83", + "name": "entry : default@ProcessShareConfig cost memory 0.123748779296875", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553500161000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0ed811c4-cf6e-4339-b55f-26aa7f80ebd7", + "name": "UP-TO-DATE :entry:default@ProcessShareConfig", + "description": "Process share config configuration.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553499654083, + "endTime": 341553500175416 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "d194356b-a9cd-4146-9fe0-60ac937271bb" + } + }, + { + "head": { + "id": "fa4fbba6-a3dd-489b-893b-d837a9b1e5ac", + "name": "entry:default@ProcessStartupConfig", + "description": "Process startup configuration.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553500588541, + "endTime": 341553501407000 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [ + "The output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/startup/default/startup_config.json' does not exist." + ], + "detailId": "c68675e2-e391-4195-b47e-639e3d75c428", + "logId": "cde7862b-666f-46a3-84c6-5b53e170ab0b" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c68675e2-e391-4195-b47e-639e3d75c428", + "name": "create entry:default@ProcessStartupConfig task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553500298625 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "fa4fbba6-a3dd-489b-893b-d837a9b1e5ac" + } + }, + { + "head": { + "id": "93d25bc5-476f-4942-b3c2-c280874b64a6", + "name": "Executing task :entry:default@ProcessStartupConfig", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553500592625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b18b1e79-a0fa-4070-8d70-5d32245ca883", + "name": "Task 'entry:default@ProcessStartupConfig' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553500647916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "595bc2a2-f8fc-4a26-8c19-e73e376b75ad", + "name": "entry:default@ProcessStartupConfig is not up-to-date, since the output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/startup/default/startup_config.json' does not exist.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553500813583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "173782c2-5616-4a22-8cf2-138a280d7e36", + "name": "Incremental task entry:default@ProcessStartupConfig pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553500827791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "398f4c97-7aa9-46fc-a4fb-afb9b765327b", + "name": "entry : default@ProcessStartupConfig cost memory 0.11779022216796875", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553501355416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f5bf1831-20ce-45b7-9530-6e37ab775b61", + "name": "runTaskFromQueue task cost before running: 893 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553501393333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cde7862b-666f-46a3-84c6-5b53e170ab0b", + "name": "Finished :entry:default@ProcessStartupConfig", + "description": "Process startup configuration.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553500588541, + "endTime": 341553501407000, + "totalTime": 790666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "fa4fbba6-a3dd-489b-893b-d837a9b1e5ac" + } + }, + { + "head": { + "id": "6af68f0c-e722-4182-b764-59f6566aace4", + "name": "entry:default@CreateBuildProfile", + "description": "Create the BuildProfile.ets file for the HAP/HSP package.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553502224416, + "endTime": 341553502641416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "80924a74-86e3-47d6-afed-82ae9d81c799", + "logId": "203c2deb-935c-40ca-b00b-d62bf5cfa674" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "80924a74-86e3-47d6-afed-82ae9d81c799", + "name": "create entry:default@CreateBuildProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553501726083 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "6af68f0c-e722-4182-b764-59f6566aace4" + } + }, + { + "head": { + "id": "93528870-3fc6-4da1-a314-0fbfa9bf7110", + "name": "Executing task :entry:default@CreateBuildProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553502229500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "76e73c8d-f6db-4ede-9a69-59a5ceb336f1", + "name": "Task 'entry:default@CreateBuildProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553502330375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "265d1b3a-0859-4f79-9ebc-e38db6e20ef8", + "name": "Incremental task entry:default@CreateBuildProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553502604875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4f98753f-5e5b-44c4-a5aa-260ebb98c20d", + "name": "entry : default@CreateBuildProfile cost memory 0.0755615234375", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553502627125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "203c2deb-935c-40ca-b00b-d62bf5cfa674", + "name": "UP-TO-DATE :entry:default@CreateBuildProfile", + "description": "Create the BuildProfile.ets file for the HAP/HSP package.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553502224416, + "endTime": 341553502641416 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "6af68f0c-e722-4182-b764-59f6566aace4" + } + }, + { + "head": { + "id": "d45b43db-bf0b-4e59-bc3d-b846a6dae466", + "name": "xuqmSdk:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553503041250, + "endTime": 341553503118875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "b046c34d-df03-48a6-a170-6d8ef541d81a", + "logId": "d294e512-038a-435a-839c-6e06f5e9f918" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b046c34d-df03-48a6-a170-6d8ef541d81a", + "name": "create xuqmSdk:default@BuildNativeWithCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553502755166 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "d45b43db-bf0b-4e59-bc3d-b846a6dae466" + } + }, + { + "head": { + "id": "652797af-d2db-4127-aca4-fc726759aa82", + "name": "Executing task :xuqmSdk:default@BuildNativeWithCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553503045583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6873e711-72ee-4885-aeff-72588caf5403", + "name": "xuqmSdk : default@BuildNativeWithCmake cost memory 0.013580322265625", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553503093833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "38fd1941-5438-4240-b3be-60113482ed9d", + "name": "runTaskFromQueue task cost before running: 895 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553503110958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d294e512-038a-435a-839c-6e06f5e9f918", + "name": "Finished :xuqmSdk:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553503041250, + "endTime": 341553503118875, + "totalTime": 64417 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "d45b43db-bf0b-4e59-bc3d-b846a6dae466" + } + }, + { + "head": { + "id": "1367ff82-2918-4902-82c8-0acc3ad31a71", + "name": "entry:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553503324333, + "endTime": 341553503940166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Config", + "taskRunReasons": [], + "detailId": "8bf98a6f-d876-4088-ac34-fb6a780d5236", + "logId": "bd63e800-6a00-4d7a-942d-f58e660e0903" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8bf98a6f-d876-4088-ac34-fb6a780d5236", + "name": "create entry:default@MergeProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553503194000 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "1367ff82-2918-4902-82c8-0acc3ad31a71" + } + }, + { + "head": { + "id": "88815bcd-ba4a-4eab-a735-4047f541a477", + "name": "Executing task :entry:default@MergeProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553503329125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4db2c2bc-8387-40ac-b01e-49420f10976c", + "name": "Task 'entry:default@MergeProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553503567500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4233146f-97a7-4ddd-965b-99bd94b2b918", + "name": "Incremental task entry:default@MergeProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553503908500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "af75f5a1-d0cd-4e00-acf2-c9f10d817f3c", + "name": "entry : default@MergeProfile cost memory 0.11478424072265625", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553503927208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bd63e800-6a00-4d7a-942d-f58e660e0903", + "name": "UP-TO-DATE :entry:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553503324333, + "endTime": 341553503940166 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "1367ff82-2918-4902-82c8-0acc3ad31a71" + } + }, + { + "head": { + "id": "9552fec7-0b1d-44ba-afcd-a6dc5a9e1997", + "name": "entry:default@GenerateLoaderJson", + "description": "Generate loader.json in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553504739708, + "endTime": 341553506642208 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "32827b2e-cf89-4c59-bfec-ca7e06df53e6", + "logId": "8458592b-af36-416e-ba53-cce096beb358" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "32827b2e-cf89-4c59-bfec-ca7e06df53e6", + "name": "create entry:default@GenerateLoaderJson task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553504118083 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "9552fec7-0b1d-44ba-afcd-a6dc5a9e1997" + } + }, + { + "head": { + "id": "655e5b5f-7d62-4b9b-bb90-caa73b2a2492", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553504443916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2212c22b-c49f-4b9f-a58b-0f9e02087734", + "name": "Executing task :entry:default@GenerateLoaderJson", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553504742708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "793b904a-3a49-4897-bb27-5910bf559029", + "name": "Task 'entry:default@GenerateLoaderJson' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553505143375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "67c0f20b-aceb-4c5c-86b5-094fd38cce57", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553505478041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9f530bdf-0be7-4dc7-afdb-5dfc41a0a6d4", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553506019375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "934ebd67-0222-455c-80e8-64945843cb74", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553506241000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "297d0947-3b19-4d1c-9f24-d4c1a6c34de7", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553506337833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bb3f8923-acab-4a66-88ac-34207cedd46e", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553506415875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f5cd1735-076a-4020-844c-033ee56fde2d", + "name": "Incremental task entry:default@GenerateLoaderJson pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553506615500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b2b3cece-48b7-4109-8095-d93833060845", + "name": "entry : default@GenerateLoaderJson cost memory 0.36502838134765625", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553506631166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8458592b-af36-416e-ba53-cce096beb358", + "name": "UP-TO-DATE :entry:default@GenerateLoaderJson", + "description": "Generate loader.json in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553504739708, + "endTime": 341553506642208 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9552fec7-0b1d-44ba-afcd-a6dc5a9e1997" + } + }, + { + "head": { + "id": "d2e99c62-09df-45f6-9a3f-7c9928454518", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553506881458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "541f73f4-2720-4cac-93bc-90ccb861120f", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553506974750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e7dfd437-f354-4b87-a783-5464440ea6a3", + "name": "xuqmSdk:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553507380250, + "endTime": 341553507526833 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "183ffc01-3199-403d-9520-e0b9aea2108b", + "logId": "6c9bd809-1a7e-46c1-aae3-363ddcc4247d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "183ffc01-3199-403d-9520-e0b9aea2108b", + "name": "create xuqmSdk:default@BuildNativeWithNinja task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553507128541 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "e7dfd437-f354-4b87-a783-5464440ea6a3" + } + }, + { + "head": { + "id": "69a2e0f1-d179-4124-b83f-467deeda16c5", + "name": "Executing task :xuqmSdk:default@BuildNativeWithNinja", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553507383125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4321b51f-08e1-41e1-bf99-f93f76f1c051", + "name": "xuqmSdk : default@BuildNativeWithNinja cost memory 0.01908111572265625", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553507500916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5690efde-e84a-496b-978d-21f57202796c", + "name": "runTaskFromQueue task cost before running: 899 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553507518583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6c9bd809-1a7e-46c1-aae3-363ddcc4247d", + "name": "Finished :xuqmSdk:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553507380250, + "endTime": 341553507526833, + "totalTime": 131250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e7dfd437-f354-4b87-a783-5464440ea6a3" + } + }, + { + "head": { + "id": "4df42ad0-22dd-4449-a450-1b0cb7e48364", + "name": "entry:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553507756625, + "endTime": 341553507809875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "f3277677-efd7-4a35-901c-3470f3dbd4bb", + "logId": "683c8a22-899d-4b39-a61f-e74bbb9b42ee" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f3277677-efd7-4a35-901c-3470f3dbd4bb", + "name": "create entry:default@ConfigureCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553507615583 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "4df42ad0-22dd-4449-a450-1b0cb7e48364" + } + }, + { + "head": { + "id": "83dc50a5-df3f-4b99-81e4-38ea3fbd6986", + "name": "Executing task :entry:default@ConfigureCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553507759000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b38f4132-5a90-4d2b-b25b-a9b0c989bd8c", + "name": "entry : default@ConfigureCmake cost memory 0.01210784912109375", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553507788458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "42d5efe4-9c69-43bc-b534-b6150f01a247", + "name": "runTaskFromQueue task cost before running: 899 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553507802000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "683c8a22-899d-4b39-a61f-e74bbb9b42ee", + "name": "Finished :entry:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553507756625, + "endTime": 341553507809875, + "totalTime": 40291 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "4df42ad0-22dd-4449-a450-1b0cb7e48364" + } + }, + { + "head": { + "id": "a1dfed34-b218-4e5a-9608-1ef9533bdb31", + "name": "entry:default@MakePackInfo", + "description": "Generate module pack.info in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553508262291, + "endTime": 341553508638583 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "e2f0f20f-1ad8-4328-ba1e-08adb4f4df7d", + "logId": "273b8f55-9019-403a-a71d-03aaa4c6451a" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e2f0f20f-1ad8-4328-ba1e-08adb4f4df7d", + "name": "create entry:default@MakePackInfo task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553508037916 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "a1dfed34-b218-4e5a-9608-1ef9533bdb31" + } + }, + { + "head": { + "id": "c3c33b0c-e2df-4c5f-8be5-015aa5d4d23f", + "name": "Executing task :entry:default@MakePackInfo", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553508264833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a062d833-eb8b-4f6d-849a-0f481355d043", + "name": "Incremental task entry:default@MakePackInfo pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553508613250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "330e3cd1-ce03-49e0-825e-451de6280127", + "name": "entry : default@MakePackInfo cost memory 0.08878326416015625", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553508627791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "273b8f55-9019-403a-a71d-03aaa4c6451a", + "name": "UP-TO-DATE :entry:default@MakePackInfo", + "description": "Generate module pack.info in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553508262291, + "endTime": 341553508638583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "a1dfed34-b218-4e5a-9608-1ef9533bdb31" + } + }, + { + "head": { + "id": "e4c69013-63b5-4364-810d-a588add908c3", + "name": "entry:default@ProcessProfile", + "description": "Process app config manifest files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553509199250, + "endTime": 341553509973541 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Config", + "taskRunReasons": [], + "detailId": "a3c2e7fd-10d3-4de3-a00a-66dc9fba2ea6", + "logId": "445baa0f-4e1b-4295-a3b4-5305f1f421bf" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a3c2e7fd-10d3-4de3-a00a-66dc9fba2ea6", + "name": "create entry:default@ProcessProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553508744875 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "e4c69013-63b5-4364-810d-a588add908c3" + } + }, + { + "head": { + "id": "cc6dbc0a-4b1d-4bef-8b59-65c762f3aad0", + "name": "Executing task :entry:default@ProcessProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553509202083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a4464337-69a4-4b56-96d4-dbc1969a2f96", + "name": "Task 'entry:default@ProcessProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553509671208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "806eb2e2-0bf8-4da6-b724-7f81ba307dda", + "name": "Incremental task entry:default@ProcessProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553509947375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dc17232c-6090-4baa-be14-d87122ae12cc", + "name": "entry : default@ProcessProfile cost memory 0.11394500732421875", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553509963708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "445baa0f-4e1b-4295-a3b4-5305f1f421bf", + "name": "UP-TO-DATE :entry:default@ProcessProfile", + "description": "Process app config manifest files in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553509199250, + "endTime": 341553509973541 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e4c69013-63b5-4364-810d-a588add908c3" + } + }, + { + "head": { + "id": "7917c2ce-0d3d-4311-a856-268b38dd1133", + "name": "xuqmSdk:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553510295166, + "endTime": 341553510852416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Resources", + "taskRunReasons": [], + "detailId": "5db3da6c-ce8d-48fc-b9b3-7da963206e32", + "logId": "ad43acfd-a760-4ace-87fe-a8bbbf46ec49" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "5db3da6c-ce8d-48fc-b9b3-7da963206e32", + "name": "create xuqmSdk:default@ProcessLibs task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553510062833 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "7917c2ce-0d3d-4311-a856-268b38dd1133" + } + }, + { + "head": { + "id": "c7fef031-e8c0-4863-9c6d-d4d92f107498", + "name": "Executing task :xuqmSdk:default@ProcessLibs", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553510297958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a0e16333-4377-4e45-a9e1-df73c75ae283", + "name": "Incremental task xuqmSdk:default@ProcessLibs pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553510820125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0b87dde9-feb9-4337-b2ba-f29a9348053a", + "name": "xuqmSdk : default@ProcessLibs cost memory 0.32830047607421875", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553510836750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ad43acfd-a760-4ace-87fe-a8bbbf46ec49", + "name": "UP-TO-DATE :xuqmSdk:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553510295166, + "endTime": 341553510852416 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "7917c2ce-0d3d-4311-a856-268b38dd1133" + } + }, + { + "head": { + "id": "5ba777a4-c8b1-4c62-91ef-186cce6b33be", + "name": "entry:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553511008000, + "endTime": 341553511073208 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "26c9f489-1e61-4483-99c7-6ce00dd9f312", + "logId": "8e0281e4-01d3-4a97-94ec-16e57c36e1ed" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "26c9f489-1e61-4483-99c7-6ce00dd9f312", + "name": "create entry:default@BuildNativeWithCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553510937916 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "5ba777a4-c8b1-4c62-91ef-186cce6b33be" + } + }, + { + "head": { + "id": "8b4a7787-4b8e-434e-89af-aebcf1ea34ae", + "name": "Executing task :entry:default@BuildNativeWithCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553511009791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d5937d8b-a10e-4c4a-b123-2697dbfebc06", + "name": "entry : default@BuildNativeWithCmake cost memory 0.012054443359375", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553511036208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0969e29f-a91f-48c9-b03a-13e7a5676ff7", + "name": "runTaskFromQueue task cost before running: 903 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553511064291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8e0281e4-01d3-4a97-94ec-16e57c36e1ed", + "name": "Finished :entry:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553511008000, + "endTime": 341553511073208, + "totalTime": 35583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "5ba777a4-c8b1-4c62-91ef-186cce6b33be" + } + }, + { + "head": { + "id": "9ece81f1-f36d-4117-b4ba-e38d6c4f0b07", + "name": "entry:default@ProcessResource", + "description": "Process resources in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553511883666, + "endTime": 341553513167375 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [], + "detailId": "68259c1f-ce9d-48e4-945e-cd33d1ec717b", + "logId": "c13d331a-1fee-44fd-ae8a-fa55dff823a4" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "68259c1f-ce9d-48e4-945e-cd33d1ec717b", + "name": "create entry:default@ProcessResource task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553511188500 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "9ece81f1-f36d-4117-b4ba-e38d6c4f0b07" + } + }, + { + "head": { + "id": "be29f1bd-74e2-4e3d-9951-0062e047fbd4", + "name": "restool module names: entry,xuqmSdk; moduleName=entry, taskName=default@ProcessResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553511435250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a1c457ca-a56a-4169-931d-e3e639ae3894", + "name": "Executing task :entry:default@ProcessResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553512340166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "554b862d-8760-4e91-8150-5361ee554f6d", + "name": "Task 'entry:default@ProcessResource' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553512437291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f91b55ff-e440-49c0-b141-86153b0145b8", + "name": "Incremental task entry:default@ProcessResource pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553512827875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cb91ff59-84c7-4716-8192-77f059ae95a1", + "name": "entry : default@ProcessResource cost memory 0.10875701904296875", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553512965166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c13d331a-1fee-44fd-ae8a-fa55dff823a4", + "name": "UP-TO-DATE :entry:default@ProcessResource", + "description": "Process resources in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553511883666, + "endTime": 341553513167375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9ece81f1-f36d-4117-b4ba-e38d6c4f0b07" + } + }, + { + "head": { + "id": "faf99522-dfda-46df-ba21-d838d4fd7c3f", + "name": "xuqmSdk:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553513895333, + "endTime": 341553514191583 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "4acacd92-31fa-43f2-a4e4-864bb7aee43d", + "logId": "14dd0ff1-d589-4a72-abab-d49dc3451022" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "4acacd92-31fa-43f2-a4e4-864bb7aee43d", + "name": "create xuqmSdk:default@DoNativeStrip task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553513432000 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "faf99522-dfda-46df-ba21-d838d4fd7c3f" + } + }, + { + "head": { + "id": "a6a049c0-431f-44a3-88d6-42d9722f9ecc", + "name": "Executing task :xuqmSdk:default@DoNativeStrip", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553513899291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3d8afbcd-8b51-48d9-ac20-ade255306bf3", + "name": "Task 'xuqmSdk:default@DoNativeStrip' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553513955375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a49b5857-b889-477b-8c72-28ce945e0b77", + "name": "Incremental task xuqmSdk:default@DoNativeStrip pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553514160000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bb2770bd-69aa-43fe-b59f-9a1b1f19a968", + "name": "xuqmSdk : default@DoNativeStrip cost memory 0.0588836669921875", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553514180666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "14dd0ff1-d589-4a72-abab-d49dc3451022", + "name": "UP-TO-DATE :xuqmSdk:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553513895333, + "endTime": 341553514191583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "faf99522-dfda-46df-ba21-d838d4fd7c3f" + } + }, + { + "head": { + "id": "4c295390-1963-4814-bfd2-185c6d2bacff", + "name": "entry:default@CompileResource", + "description": "Compile project resources in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553514765125, + "endTime": 341553516603750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [], + "detailId": "b47cf7ee-3b9b-4118-9afa-44ac11f1d508", + "logId": "338c8019-557c-42a7-8d48-3936ddc73b45" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b47cf7ee-3b9b-4118-9afa-44ac11f1d508", + "name": "create entry:default@CompileResource task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553514305125 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "4c295390-1963-4814-bfd2-185c6d2bacff" + } + }, + { + "head": { + "id": "9572c2ae-da1b-4273-a488-0d54e2a8f4c7", + "name": "restool module names: entry,xuqmSdk; moduleName=entry, taskName=default@CompileResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553514449541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "262001eb-511d-4a33-b2a1-3264c8482397", + "name": "Executing task :entry:default@CompileResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553514791166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "185239d1-ba75-447e-a1d1-13eaa72a8075", + "name": "Incremental task entry:default@CompileResource pre-execution cost: 2 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553516566875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1390cba1-cc74-4b8f-a71c-31d626d9a383", + "name": "entry : default@CompileResource cost memory 0.32173919677734375", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553516588500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "338c8019-557c-42a7-8d48-3936ddc73b45", + "name": "UP-TO-DATE :entry:default@CompileResource", + "description": "Compile project resources in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553514765125, + "endTime": 341553516603750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "4c295390-1963-4814-bfd2-185c6d2bacff" + } + }, + { + "head": { + "id": "9abc25c9-74ac-439b-a7c3-336a9513e15f", + "name": "entry:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553516806875, + "endTime": 341553516900250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "935e02ac-c581-4c8f-89f1-1688264cbf18", + "logId": "33ba1b7d-5734-429b-a5d2-1915764cbe4e" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "935e02ac-c581-4c8f-89f1-1688264cbf18", + "name": "create entry:default@BuildNativeWithNinja task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553516735500 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "9abc25c9-74ac-439b-a7c3-336a9513e15f" + } + }, + { + "head": { + "id": "1bd5b374-acd4-4762-ad82-34afd63be9d5", + "name": "Executing task :entry:default@BuildNativeWithNinja", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553516808916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0ce06896-9c06-4e12-b151-1eb5cb437ae0", + "name": "entry : default@BuildNativeWithNinja cost memory 0.0177764892578125", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553516876708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8252d7c3-d423-4917-8e85-8f8fe77234ae", + "name": "runTaskFromQueue task cost before running: 908 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553516891416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "33ba1b7d-5734-429b-a5d2-1915764cbe4e", + "name": "Finished :entry:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553516806875, + "endTime": 341553516900250, + "totalTime": 78583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9abc25c9-74ac-439b-a7c3-336a9513e15f" + } + }, + { + "head": { + "id": "7fb47dfb-57a6-4465-887d-d9f9c2a01aa8", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553517453791, + "endTime": 341556261161000 + }, + "additional": { + "children": [ + "bb8956be-e9d7-42bd-ad9e-ed940ad9b008", + "279df0c2-f775-4ad0-9d08-982333aa9353" + ], + "state": "failed", + "targetName": "default", + "moduleName": "entry", + "category": "ArkTS", + "taskRunReasons": [], + "detailId": "f13cf20c-c8b2-454c-934f-4a418e8e52f4", + "logId": "605d1de8-f510-45d0-bea6-38a6ccb10ccc" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f13cf20c-c8b2-454c-934f-4a418e8e52f4", + "name": "create entry:default@CompileArkTS task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553517092541 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "7fb47dfb-57a6-4465-887d-d9f9c2a01aa8" + } + }, + { + "head": { + "id": "6017a56c-0d5f-4902-bcb4-54b4ff9021d9", + "name": "Executing task :entry:default@CompileArkTS", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553517457166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bc61048a-d709-4a8b-bdb6-2daa0dbf3460", + "name": "obfuscationOptions: undefined", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553517732166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1c543933-b437-4fac-89c9-b6ee656fa915", + "name": "Task 'entry:default@CompileArkTS' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553518508541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d16a6c33-0961-4ca9-a27c-8ffcfd6255c8", + "name": "build config:", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553521914000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3248d467-9e2b-40bf-b7f9-e789dab0aa82", + "name": "Compile arkts with external api path: /Users/xuqinmin/sdk/command-line-tools/sdk/default/hms/ets", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553522480416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8a796a1f-fcf2-4dee-8960-c2f6f61785b9", + "name": "Since there is no instance or instance is terminated, create a new worker pool.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553522709000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b149e244-2128-474d-ba9d-67626851f486", + "name": "Worker pool is initialized with config: {\n minPoolNum: 2,\n maxPoolNum: undefined,\n maxCoreSize: undefined,\n cacheCapacity: undefined,\n cacheTtl: undefined\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553522747000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4ae7b1a4-b6e9-4edd-8aba-dda22c64ef5f", + "name": "Create resident worker with id: 0.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553523281041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "74f33fa0-4141-4ef9-b90d-6b19a621f86c", + "name": "Create resident worker with id: 1.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553524157583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6ce7f883-22e4-460e-b985-b311eb033156", + "name": "default@CompileArkTS work[0] is submitted.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553525097708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bb8956be-e9d7-42bd-ad9e-ed940ad9b008", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Worker4", + "startTime": 341553525826666, + "endTime": 341556260805000 + }, + "additional": { + "children": [], + "state": "failed", + "targetName": "default", + "moduleName": "entry", + "category": "", + "taskRunReasons": [], + "parent": "7fb47dfb-57a6-4465-887d-d9f9c2a01aa8", + "logId": "c5fa132d-6f05-400c-aa3e-eca4433c77ad" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "37499e15-8aa3-4837-944b-d73f29186b2a", + "name": "default@CompileArkTS work[0] is pushed to ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553525284083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "94c1237f-ddad-4f16-8206-c6e1ea7b0880", + "name": "A work dispatched to worker[13] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553525364291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cfaf3d03-d822-4e8e-9885-7169be7c99a8", + "name": "A work dispatched to worker[12] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553525375458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "96723fc1-5f85-43bc-beea-fd3f72b242a1", + "name": "A work dispatched to worker[11] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553525383458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0221b410-12a5-4f95-ba21-c47accd65c37", + "name": "A work dispatched to worker[10] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553525390250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f248f78d-a247-4e10-9c99-e80090288ec9", + "name": "A work dispatched to worker[9] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553525395791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d5b70c47-f239-442d-bed6-9b35b278cc07", + "name": "A work dispatched to worker[8] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553525402291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "89425040-e769-463c-aea6-61d519aa3b57", + "name": "A work dispatched to worker[7] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553525409083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ef057d4d-03af-439b-b621-209bd9e44b91", + "name": "A work dispatched to worker[6] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553525414708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5ceb14c8-cc82-4687-8edd-08e990fa5e9a", + "name": "A work dispatched to worker[5] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553525420875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0f9ed562-91a5-4ca9-889c-9970f29df586", + "name": "Create resident worker with id: 4.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553525466291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8656400e-f9d9-4c7e-834f-396ba17dbaa1", + "name": "default@CompileArkTS work[0] has been dispatched to worker[4].", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553525840291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0458df19-5532-4f6d-8434-143ba578043e", + "name": "default@CompileArkTS work[0] is dispatched.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553525875666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "079ada35-b208-4447-a19c-81588c5baa83", + "name": "CopyResources startTime: 341553525912291", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553525913708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0cf75da9-4567-412a-901f-7277ff137ba6", + "name": "default@CompileArkTS work[1] is submitted.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553525929583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "279df0c2-f775-4ad0-9d08-982333aa9353", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Worker12", + "startTime": 341553765788833, + "endTime": 341553770024916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "", + "taskRunReasons": [], + "parent": "7fb47dfb-57a6-4465-887d-d9f9c2a01aa8", + "logId": "f3668802-8679-4f93-aacf-2195055a434f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "1ebba0db-022e-45e0-9eb3-c5c621282209", + "name": "default@CompileArkTS work[1] is pushed to ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553526038583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c9674e9e-d7e8-4540-ad68-c1000a79bf4d", + "name": "A work dispatched to worker[13] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553526048375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e6814f17-159a-4069-ac2a-203ce5a057fc", + "name": "Create resident worker with id: 12.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553526058291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1e516472-8062-412e-958f-f638f1d3733d", + "name": "default@CompileArkTS work[1] has been dispatched to worker[12].", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553526413500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d2fe46c8-089a-499a-b0cb-00e9bccc5bd7", + "name": "default@CompileArkTS work[1] is dispatched.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553526425083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "93311969-926e-479d-b9ee-df74b31f756b", + "name": "entry : default@CompileArkTS cost memory 2.3395614624023438", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553526481750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c06a3c6d-e818-4d1b-929c-99a199507eb0", + "name": "entry:default@BuildJS", + "description": "Compile ArkTS or JS components using Node.js for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553527186625, + "endTime": 341553528071083 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "ArkTS", + "taskRunReasons": [], + "detailId": "54498343-2192-4540-b453-8acb61e2f115", + "logId": "a5566a51-4d00-4cb2-b723-0501fe894119" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "54498343-2192-4540-b453-8acb61e2f115", + "name": "create entry:default@BuildJS task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553526617291 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "c06a3c6d-e818-4d1b-929c-99a199507eb0" + } + }, + { + "head": { + "id": "b0ab20ff-7556-4fed-9ffc-3593fff7f81f", + "name": "Executing task :entry:default@BuildJS", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553527191208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a350fcd8-b89c-479f-858b-5d7abf313df7", + "name": "Task 'entry:default@BuildJS' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553527280791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "851d6443-0186-42e8-be98-e36a650d7908", + "name": "entry : default@BuildJS cost memory 0.13297271728515625", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553528004500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "58da9e9e-a8f4-4a0d-a2df-7834f9e7b8ec", + "name": "runTaskFromQueue task cost before running: 920 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553528056958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a5566a51-4d00-4cb2-b723-0501fe894119", + "name": "Finished :entry:default@BuildJS", + "description": "Compile ArkTS or JS components using Node.js for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553527186625, + "endTime": 341553528071083, + "totalTime": 856959 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "c06a3c6d-e818-4d1b-929c-99a199507eb0" + } + }, + { + "head": { + "id": "6ee2a141-1e31-420d-b39c-dc256517e8c7", + "name": "entry:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553528385416, + "endTime": 341553529895875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [], + "detailId": "b4325e72-ba67-4db9-8b8a-5a4f31f77c51", + "logId": "7fe528aa-e61a-41bc-874a-cf58d2c7bdd2" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b4325e72-ba67-4db9-8b8a-5a4f31f77c51", + "name": "create entry:default@ProcessLibs task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553528214125 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "6ee2a141-1e31-420d-b39c-dc256517e8c7" + } + }, + { + "head": { + "id": "4864968d-9652-419f-8fb3-4dcdc41f80db", + "name": "Executing task :entry:default@ProcessLibs", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553528389291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a99e2c8d-2202-48fe-a5cd-f6df480d5a6b", + "name": "Incremental task entry:default@ProcessLibs pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553529861541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cbb57e27-32e4-4cf9-8aaa-8fc8c4c32f4b", + "name": "entry : default@ProcessLibs cost memory 0.2497406005859375", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553529884333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7fe528aa-e61a-41bc-874a-cf58d2c7bdd2", + "name": "UP-TO-DATE :entry:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553528385416, + "endTime": 341553529895875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "6ee2a141-1e31-420d-b39c-dc256517e8c7" + } + }, + { + "head": { + "id": "37d12e5e-0682-4633-ae4b-c1caee04d895", + "name": "entry:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553530100375, + "endTime": 341553530312958 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "f0828737-4875-4569-903b-d9c159b59a89", + "logId": "dbb641b0-f718-4a5e-99e7-7998d8af7b5d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f0828737-4875-4569-903b-d9c159b59a89", + "name": "create entry:default@DoNativeStrip task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553529996250 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "37d12e5e-0682-4633-ae4b-c1caee04d895" + } + }, + { + "head": { + "id": "8d283368-381f-4c3d-8546-206a6ce10314", + "name": "Executing task :entry:default@DoNativeStrip", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553530102625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8925c505-bf19-4b94-9463-ddda1eebe94a", + "name": "Task 'entry:default@DoNativeStrip' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553530140666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "684fbe9c-eac0-479a-a11a-236f835418a5", + "name": "Incremental task entry:default@DoNativeStrip pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553530290666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bc1df07c-f0b4-4855-92bc-2161621cba19", + "name": "entry : default@DoNativeStrip cost memory 0.05707550048828125", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553530304166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dbb641b0-f718-4a5e-99e7-7998d8af7b5d", + "name": "UP-TO-DATE :entry:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553530100375, + "endTime": 341553530312958 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "37d12e5e-0682-4633-ae4b-c1caee04d895" + } + }, + { + "head": { + "id": "ac4391bb-a6d1-4b10-84f0-ceb5cdc12565", + "name": "entry:default@CacheNativeLibs", + "description": "cache native strip .so fileInfo", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553530699791, + "endTime": 341553530923291 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "acf8fa5c-0e96-4fa8-97ea-b80740fe20a2", + "logId": "ca8c2a87-1b10-44f6-9c5f-7c2d26802910" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "acf8fa5c-0e96-4fa8-97ea-b80740fe20a2", + "name": "create entry:default@CacheNativeLibs task", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553530385541 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "ac4391bb-a6d1-4b10-84f0-ceb5cdc12565" + } + }, + { + "head": { + "id": "3f74ca69-b14c-49b4-89e3-e66f4962f52f", + "name": "Executing task :entry:default@CacheNativeLibs", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553530705000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "80c738d6-e185-46e6-9fdc-75d93e9618d5", + "name": "Task 'entry:default@CacheNativeLibs' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553530751375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cac29e58-2241-4d3f-850c-cad381ec14d8", + "name": "Incremental task entry:default@CacheNativeLibs pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553530899583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b174f9b0-7141-4381-b00a-da9226d4decc", + "name": "entry : default@CacheNativeLibs cost memory 0.06644439697265625", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553530913541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ca8c2a87-1b10-44f6-9c5f-7c2d26802910", + "name": "UP-TO-DATE :entry:default@CacheNativeLibs", + "description": "cache native strip .so fileInfo", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553530699791, + "endTime": 341553530923291 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ac4391bb-a6d1-4b10-84f0-ceb5cdc12565" + } + }, + { + "head": { + "id": "c5ad6d01-be69-4f30-b6a9-51b07c3e2732", + "name": "worker[12] has one work done.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553770464041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "843a6faa-5328-4595-af8f-8cc17577f792", + "name": "CopyResources is end, endTime: 341553770592166", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553770595250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "75a3c949-5da4-4308-8169-e6bfe2d4f1ac", + "name": "default@CompileArkTS work[1] done.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553770726750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f3668802-8679-4f93-aacf-2195055a434f", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Worker12", + "startTime": 341553765788833, + "endTime": 341553770024916 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "279df0c2-f775-4ad0-9d08-982333aa9353", + "parent": "605d1de8-f510-45d0-bea6-38a6ccb10ccc" + } + }, + { + "head": { + "id": "a5658d18-7f53-47c2-850d-459a98046ace", + "name": "A work dispatched to worker[12] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553770825083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dd695be8-a0d7-433b-9ddf-ed2fa1f40d70", + "name": "worker[4] has one work error.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556260410500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b93c4f12-8861-4f82-b69b-40f558ea1fff", + "name": "default@CompileArkTS work[0] failed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556260945041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c5fa132d-6f05-400c-aa3e-eca4433c77ad", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Worker4", + "startTime": 341553525826666, + "endTime": 341556260805000 + }, + "additional": { + "logType": "error", + "children": [], + "durationId": "bb8956be-e9d7-42bd-ad9e-ed940ad9b008", + "parent": "605d1de8-f510-45d0-bea6-38a6ccb10ccc" + } + }, + { + "head": { + "id": "605d1de8-f510-45d0-bea6-38a6ccb10ccc", + "name": "Failed :entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341553517453791, + "endTime": 341556261161000 + }, + "additional": { + "logType": "error", + "children": [ + "c5fa132d-6f05-400c-aa3e-eca4433c77ad", + "f3668802-8679-4f93-aacf-2195055a434f" + ], + "durationId": "7fb47dfb-57a6-4465-887d-d9f9c2a01aa8" + } + }, + { + "head": { + "id": "5afe0ba4-d4d8-4efa-a8ff-41b373d554e4", + "name": "\n\u001b[33m1 WARN: \u001b[33m\u001b[33mArkTS:WARN: For details about ArkTS syntax errors, see FAQs\u001b[39m\u001b[39m\n\u001b[33m2 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:28:30\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m3 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:29:25\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m4 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:37:15\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m5 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:39:15\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m6 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:41:13\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m7 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/HttpClient.ets:40:25\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m8 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:154:5\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m9 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:18:22\n 'showToast' has been deprecated.\n\u001b[39m\u001b[39m\n\u001b[33m10 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:28:22\n 'showToast' has been deprecated.\n\u001b[39m\u001b[39m\n\u001b[33m11 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:89:28\n 'showToast' has been deprecated.\n\u001b[39m\u001b[39m", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556261281791 + }, + "additional": { + "logType": "warn", + "children": [] + } + }, + { + "head": { + "id": "48a26887-126f-429d-8ab4-45ea14bb22aa", + "name": "hvigor build process will be closed with an error.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556262137291 + }, + "additional": { + "logType": "debug", + "children": [], + "durationId": "7fb47dfb-57a6-4465-887d-d9f9c2a01aa8" + } + }, + { + "head": { + "id": "55b95bc9-e7ae-4054-8ee1-aff68c676de3", + "name": "Error: ArkTS Compiler Error\n\u001b[31m1 ERROR: \u001b[31m10605017 ArkTS Compiler Error\nError Message: Indexed signatures are not supported (arkts-no-indexed-signatures) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/Types.ets:22:3\n\u001b[39m\n\u001b[39m\n\u001b[31m2 ERROR: \u001b[31m10605029 ArkTS Compiler Error\nError Message: Indexed access is not supported for fields (arkts-no-props-by-index) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/HttpClient.ets:17:23\n\u001b[39m\n\u001b[39m\n\u001b[31m3 ERROR: \u001b[31m10605030 ArkTS Compiler Error\nError Message: Structural typing is not supported (arkts-no-structural-typing) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/push/PushSDK.ets:21:58\n\u001b[39m\n\u001b[39m\n\u001b[31m4 ERROR: \u001b[31m10605030 ArkTS Compiler Error\nError Message: Structural typing is not supported (arkts-no-structural-typing) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/push/PushSDK.ets:33:60\n\u001b[39m\n\u001b[39m\n\u001b[31m5 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:15:39\n\u001b[39m\n\u001b[39m\n\u001b[31m6 ERROR: \u001b[31m10505001 ArkTS Compiler Error\nError Message: The left-hand side of an 'instanceof' expression must be of type 'any', an object type or a type parameter. At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/HttpClient.ets:19:74\n\u001b[39m\n\u001b[39m\n\u001b[31m7 ERROR: \u001b[31m10505001 ArkTS Compiler Error\nError Message: Argument of type 'PushRegisterBody' is not assignable to parameter of type 'HttpParams'.\n Index signature for type 'string' is missing in type 'PushRegisterBody'. At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/push/PushSDK.ets:21:58\n\u001b[39m\n\u001b[39m\n\u001b[31m8 ERROR: \u001b[31m10505001 ArkTS Compiler Error\nError Message: Argument of type 'PushTokenInfo' is not assignable to parameter of type 'HttpParams'.\n Index signature for type 'string' is missing in type 'PushTokenInfo'. At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/push/PushSDK.ets:33:60\n\u001b[39m\n\u001b[39m\n\u001b[31mCOMPILE RESULT:FAIL {ERROR:9 WARN:11}\u001b[39m\n at runArkPack (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/arkts-pack.js:1:5860)\nArkTSCompilerError: ArkTS Compiler Error\n at throwArkTsCompilerError (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/data/compose-error.js:1:423)\n at throwErrorIfHasErrorInfo (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/plugins/common-plugin.js:1:4478)\n at Object.handler (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/plugins/common-plugin.js:1:2547)\n at /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-base/node_modules/rollup/dist/shared/rollup.js:27765:40", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556262701333 + }, + "additional": { + "logType": "error", + "children": [], + "durationId": "7fb47dfb-57a6-4465-887d-d9f9c2a01aa8" + } + }, + { + "head": { + "id": "f993ed99-a974-4a81-afbb-33c4a9639991", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556263240041, + "endTime": 341556263560666 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "eee91215-f140-4c17-860e-a5e16a48b88d", + "logId": "3cd18f89-6c73-4fcf-b8e1-0a2d01f0a358" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3cd18f89-6c73-4fcf-b8e1-0a2d01f0a358", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556263240041, + "endTime": 341556263560666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f993ed99-a974-4a81-afbb-33c4a9639991" + } + }, + { + "head": { + "id": "78b8f06b-5fe9-48a1-b7b4-54e2026d0df6", + "name": "assembleHap", + "description": "", + "type": "mark" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341552608998125, + "endTime": 341556264122875 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 19, + "second": 43 + }, + "completeCommand": "{\"prop\":[],\"stacktrace\":true,\"_\":[\"assembleHap\"]};assembleHap --stacktrace", + "hvigorVersion": "6.22.4", + "markType": "history", + "nodeVersion": "v18.20.1", + "category": "build", + "state": "failed" + } + }, + { + "head": { + "id": "a55800cf-9d01-4fc4-8500-74128a4a9283", + "name": "BUILD FAILED in 3 s 655 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556264155458 + }, + "additional": { + "logType": "error", + "children": [] + } + }, + { + "head": { + "id": "5716c812-5f5c-495f-87bb-a2372226cd4f", + "name": "There is no need to refresh cache, since the incremental task entry:default@PreBuild is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556264290083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c4463c1c-e495-453f-96d0-e301dad2c38f", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@PreBuild is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556264304500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "71b3029b-bb9e-4ffd-9dbc-015b1c29bb0e", + "name": "Update task entry:default@CreateModuleInfo output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/ModuleInfo.ts cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556264395291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1ddecb73-3e19-4469-a1b2-4b7172ef0988", + "name": "Incremental task entry:default@CreateModuleInfo post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556264599958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d983c835-d5d1-47e3-b707-b4164e16a9ac", + "name": "There is no need to refresh cache, since the incremental task entry:default@GenerateMetadata is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556264609333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "96e94f66-3697-4654-a125-68b23d031c41", + "name": "There is no need to refresh cache, since the incremental task entry:default@GeneratePkgContextInfo is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556264625708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ebf65456-69fb-4b20-926f-1b3812522a62", + "name": "Update task entry:default@ProcessIntegratedHsp output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build/cache/default/integrated_hsp/integratedHspCache.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556264707833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b6c09abb-faca-40cb-b4d6-87da8561025f", + "name": "Incremental task entry:default@ProcessIntegratedHsp post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556264747750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9ba8d3d8-5228-4122-8fe6-7b200adec97c", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@CreateHarBuildProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556264757458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "966d33a8-3cc4-481e-ba66-e0b46c5aa3dd", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@MergeProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556264776666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2d944d61-88b7-432e-a8a9-ce3a522d6df6", + "name": "Update task entry:default@SyscapTransform input file:/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/syscap_tool cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556264811916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "462f71fc-af4e-4cc4-b78e-c413640437bd", + "name": "Update task entry:default@SyscapTransform input file:/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/ets/api/device-define cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556264935958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4af8b381-8e87-4637-b42d-43ab7b715eb0", + "name": "Update task entry:default@SyscapTransform output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/syscap/default/rpcid.sc cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265149375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "231afaf3-58aa-4b62-b6a0-d500026c0c1d", + "name": "Incremental task entry:default@SyscapTransform post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265185458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2922c13e-7c20-4144-8879-538ffbdbfe7c", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessRouterMap is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265197083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8dffd56c-bd48-4e5a-afdc-32b0124d2429", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessShareConfig is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265203791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cce6b15e-3884-424b-9447-fba9c7f379c6", + "name": "Update task entry:default@ProcessStartupConfig input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265327916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0b1ef44a-04d9-4595-80e9-0e83ecb48ca4", + "name": "Update task entry:default@ProcessStartupConfig output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/startup/default/startup_config.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265365041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "411485c6-ae2a-46d7-92a9-7370c8c7f53f", + "name": "Incremental task entry:default@ProcessStartupConfig post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265389875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "98f937de-13db-4e2e-9d73-4b634ca0f91a", + "name": "There is no need to refresh cache, since the incremental task entry:default@CreateBuildProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265420458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7184620f-fef4-444d-a8b0-e6e29b9e4bc2", + "name": "There is no need to refresh cache, since the incremental task entry:default@MergeProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265438250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8a4e5ffe-fc56-4c9b-99ee-ec11346a0ca3", + "name": "There is no need to refresh cache, since the incremental task entry:default@GenerateLoaderJson is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265446583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4471a3b2-c1d3-4877-85eb-2d7449172fee", + "name": "There is no need to refresh cache, since the incremental task entry:default@MakePackInfo is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265456291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "12045029-8382-44cc-bdf7-aa94e49ddf35", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265464208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "75501aff-a816-4ff8-8231-8c0e9d9a678c", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@ProcessLibs is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265483250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f2e2ed54-349c-4191-aaf9-a2774bdfc813", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessResource is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265492083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "79986b7e-5994-4b2f-80de-6b1eea0eb57e", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@DoNativeStrip is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265502125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2b8a114c-75b4-49b3-aec6-9e721786a393", + "name": "There is no need to refresh cache, since the incremental task entry:default@CompileResource is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265511916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "34790894-0ae8-46b5-aaae-926853dbfc9f", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265868750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bb5c50ca-165e-4aae-a087-ff19b606384e", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/Index.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265962750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "17d63a6a-39b0-4013-96b0-c94b4aad7979", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556265989166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "07df0ef8-8516-4d1d-83c5-3f35eb50e690", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556266238833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b1048268-6a91-46f2-b01d-9f0e7a059de7", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ResourceTable.txt cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556266323333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "56333dd4-c3df-4700-815f-45dfc488d89d", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ark_module.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556266340041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "268510b2-1f60-4f54-b8dd-574ffdf96670", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556266356083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "07e1bd97-07ff-47aa-a719-b27cd83ed7d7", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556266403583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c9e3bc6b-622c-4d63-9107-e6a1c092a6b8", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556266503416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "00080224-8615-457a-9c81-5cce89580940", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/BuildProfile.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556266519291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5bd91027-968a-4a1c-9714-6543dc82df73", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/BuildProfile.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556266535250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1bb808ba-501f-4f78-a4a8-32d7435a1e7e", + "name": "Update task entry:default@CompileArkTS output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556266580541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b56aa599-9b98-41c2-ad0b-6e06c99765e6", + "name": "Incremental task entry:default@CompileArkTS post-execution cost:2 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556266632750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9983aa5f-baf1-4275-a5fc-be462e9491e4", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556266727416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0035fe73-b636-476f-8c08-182a9f209d7a", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/Index.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556266853666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4a8cd10c-f8f9-4452-9eed-a614f444365b", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556266871250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b991901f-6d84-4d09-a106-76f3683f9a3d", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ResourceTable.txt cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556266982416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ccf8ef1f-d43e-4d8b-808d-285802ca505e", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ark_module.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556266998166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "22091385-8fbb-4d2c-8d1c-1066b1f22c1b", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556267013375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a5fe044a-d64f-4971-b682-e30e07f40b00", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556267054083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ab737712-cb7e-494e-8049-5d9e7f04a8f5", + "name": "Update task entry:default@BuildJS output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/js cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556267073666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2f76dad7-1693-45e0-8a7b-4f476d436b54", + "name": "Incremental task entry:default@BuildJS post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556267107958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "309dd537-5137-43e6-9f8a-6d9b8ea11c48", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessLibs is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556267115208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2d726587-471a-453f-808e-b8d031aeede6", + "name": "There is no need to refresh cache, since the incremental task entry:default@DoNativeStrip is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556267121250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "353d6b25-82e7-4da5-8a88-567d9bc66ea3", + "name": "There is no need to refresh cache, since the incremental task entry:default@CacheNativeLibs is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 28371, + "tid": "Main Thread", + "startTime": 341556267128625 + }, + "additional": { + "logType": "debug", + "children": [] + } + } + ], + "workLog": [] +} \ No newline at end of file diff --git a/.hvigor/report/report-202604281921369060.json b/.hvigor/report/report-202604281921369060.json new file mode 100644 index 0000000..cb6c038 --- /dev/null +++ b/.hvigor/report/report-202604281921369060.json @@ -0,0 +1,10736 @@ +{ + "version": "2.0", + "ppid": 31813, + "events": [ + { + "head": { + "id": "4f3c30b0-0880-4a50-ba88-419cc3ebe1db", + "name": "env: nodejsVersion=v18.20.1", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341669863562833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0bd58a52-4674-48ee-9b59-c2e6a08a79e4", + "name": "env: hvigor-config.json5 content = {\n modelVersion: '5.0.0',\n dependencies: {},\n execution: {\n daemon: false,\n incremental: true,\n parallel: true,\n typeCheck: false\n },\n logging: { level: 'info' },\n debugging: { stacktrace: false },\n nodeOptions: { maxOldSpaceSize: 4096 }\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341669864214958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bb391b4d-4258-4428-bc73-4a136b3ee9c5", + "name": "env: daemon=false", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341669865042041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "26eaad09-59aa-44dc-aa9d-1d28a5f40cbd", + "name": "no-daemon, use the parent process.execArgv --max-old-space-size=4096,--max-semi-space-size=16,--expose-gc,--enable-source-maps", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341669865074791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "85d6e69d-9ec6-4548-a265-a52ad313428a", + "name": "init", + "description": "Initialize and build task graph.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670013730833, + "endTime": 341670899722333 + }, + "additional": { + "children": [ + "20f7db7d-b5fe-43e5-8896-6cd6bc56b268", + "ff1b8bdf-792a-40fa-84c4-4afca058e6ed", + "3bee0096-aeb2-4d93-9290-20e75f961658", + "692cb0cc-1f7a-49f4-98cc-474df57c4558", + "0e8bd882-9292-4c24-975c-b733ac2115c3", + "769e8064-128a-4f61-913a-795272bd6f2f", + "593e50cb-2c76-4a70-92c0-8e9b8dd06ad3" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Init", + "taskRunReasons": [], + "logId": "bdd2b17b-76d8-476a-a07c-41127d1db192" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "20f7db7d-b5fe-43e5-8896-6cd6bc56b268", + "name": "create hvigor project model", + "description": "Initialize hvigor project model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670013736916, + "endTime": 341670019328708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "85d6e69d-9ec6-4548-a265-a52ad313428a", + "logId": "5c1bee94-31ea-48ec-979a-6f6d7ba0b1c6" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ff1b8bdf-792a-40fa-84c4-4afca058e6ed", + "name": "configure hvigor plugin", + "description": "Configure hvigor plugin.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670019338208, + "endTime": 341670898813875 + }, + "additional": { + "children": [ + "cb569abf-f7b7-4adf-adb1-54261b4929c7", + "7f81d558-6ca6-4b86-bc22-738500cecbfa", + "ccaef645-cce4-4d29-a0a3-830500c3a598", + "4f428507-a83d-4429-9f70-e320191e4506", + "8e6eaade-6ad1-4884-8594-587cd65f5cb2", + "2891de89-7eec-40b1-bdc4-ac1f3fabbc7d", + "86edf4c4-4b98-4fd9-9468-1d18a7716473", + "180951dc-98f1-4c2f-9010-246978d1760f", + "a7341ab5-d41e-4766-bc87-c54a2d706df1" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "85d6e69d-9ec6-4548-a265-a52ad313428a", + "logId": "2e7cf46b-653f-49eb-9e21-9cfe985e25c2" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3bee0096-aeb2-4d93-9290-20e75f961658", + "name": "build task graph", + "description": "Build task graph.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670898827666, + "endTime": 341670899714000 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "85d6e69d-9ec6-4548-a265-a52ad313428a", + "logId": "858e8e95-ebf1-4e0e-9596-9616f4acf75c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "692cb0cc-1f7a-49f4-98cc-474df57c4558", + "name": "init task execution option", + "description": "Init task execution option.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670899716500, + "endTime": 341670899719458 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "85d6e69d-9ec6-4548-a265-a52ad313428a", + "logId": "6cad4439-b146-408e-9b9f-150a1d545406" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0e8bd882-9292-4c24-975c-b733ac2115c3", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670015118333, + "endTime": 341670015223375 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "85d6e69d-9ec6-4548-a265-a52ad313428a", + "logId": "0b077450-9a25-4e13-82e0-cc18db4226f2" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0b077450-9a25-4e13-82e0-cc18db4226f2", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670015118333, + "endTime": 341670015223375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "0e8bd882-9292-4c24-975c-b733ac2115c3", + "parent": "bdd2b17b-76d8-476a-a07c-41127d1db192" + } + }, + { + "head": { + "id": "769e8064-128a-4f61-913a-795272bd6f2f", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670015878750, + "endTime": 341670015892708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "85d6e69d-9ec6-4548-a265-a52ad313428a", + "logId": "b848efef-4a9c-427d-b4ed-cf2abc06b204" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b848efef-4a9c-427d-b4ed-cf2abc06b204", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670015878750, + "endTime": 341670015892708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "769e8064-128a-4f61-913a-795272bd6f2f", + "parent": "bdd2b17b-76d8-476a-a07c-41127d1db192" + } + }, + { + "head": { + "id": "ec136768-3e9f-4c4c-9027-a231ea5fa00e", + "name": "Hvigor init with startParameters:{\n hvigorfileTypeCheck: false,\n parallelExecution: true,\n incrementalExecution: true,\n printStackTrace: true,\n daemon: false,\n analyze: 0,\n logLevel: Level { level: 20000, levelStr: 'INFO', colour: 'green' },\n optimizationStrategy: 'memory',\n hotCompile: undefined,\n hotReloadBuild: undefined,\n customizedParam: undefined\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670016036625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6d5fe7d1-2d4d-4898-940f-28d78044464a", + "name": "Cache service initialization finished in 3 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670019280166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5c1bee94-31ea-48ec-979a-6f6d7ba0b1c6", + "name": "create hvigor project model", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670013736916, + "endTime": 341670019328708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "20f7db7d-b5fe-43e5-8896-6cd6bc56b268", + "parent": "bdd2b17b-76d8-476a-a07c-41127d1db192" + } + }, + { + "head": { + "id": "cb569abf-f7b7-4adf-adb1-54261b4929c7", + "name": "init configuration", + "description": "Initialize configuration.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670019471583, + "endTime": 341670019479708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ff1b8bdf-792a-40fa-84c4-4afca058e6ed", + "logId": "75692e18-de49-409a-9632-51ac9643d549" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "7f81d558-6ca6-4b86-bc22-738500cecbfa", + "name": "configure project task", + "description": "Configure project task.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670019493375, + "endTime": 341670019697750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ff1b8bdf-792a-40fa-84c4-4afca058e6ed", + "logId": "9a4a34a9-d93c-47f1-94ac-4468dfd1e5e9" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ccaef645-cce4-4d29-a0a3-830500c3a598", + "name": "eval project", + "description": "Evaluate project.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670019728875, + "endTime": 341670854811916 + }, + "additional": { + "children": [ + "f3a010d9-566d-48e3-ad0d-747588cabda4", + "87b1d6eb-49bb-4464-885a-1f6927f21327", + "43cdadc1-bcf7-4041-9d61-5920e52ec59a" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ff1b8bdf-792a-40fa-84c4-4afca058e6ed", + "logId": "0d01d4ce-b138-4d68-bcd6-388e14782820" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "4f428507-a83d-4429-9f70-e320191e4506", + "name": "eval modules", + "description": "Evaluate modules.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670854931333, + "endTime": 341670889266083 + }, + "additional": { + "children": [ + "fd29735e-4f9c-404b-b94b-336bf6ca32ce", + "96f0231a-b459-4de0-98ef-6f9d115912b7" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ff1b8bdf-792a-40fa-84c4-4afca058e6ed", + "logId": "623d8e77-2536-4a8e-b05e-008b0f629d20" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8e6eaade-6ad1-4884-8594-587cd65f5cb2", + "name": "add config dependencies", + "description": "Add configuration dependencies.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670889283458, + "endTime": 341670889283833 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ff1b8bdf-792a-40fa-84c4-4afca058e6ed", + "logId": "99464cea-6c50-4cf7-b61b-2e33620648a4" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2891de89-7eec-40b1-bdc4-ac1f3fabbc7d", + "name": "ohpm install", + "description": "Ohpm install event.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670889422875, + "endTime": 341670894190541 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ff1b8bdf-792a-40fa-84c4-4afca058e6ed", + "logId": "909a9794-462b-470b-80f5-d0863336c0fb" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "86edf4c4-4b98-4fd9-9468-1d18a7716473", + "name": "eval hook", + "description": "EvaluateEvent hook.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670894198541, + "endTime": 341670898776416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ff1b8bdf-792a-40fa-84c4-4afca058e6ed", + "logId": "6393f84a-5c85-4b60-977f-16fc1fce0164" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "180951dc-98f1-4c2f-9010-246978d1760f", + "name": "fin configuration", + "description": "Finish configuration.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670898783500, + "endTime": 341670898810041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ff1b8bdf-792a-40fa-84c4-4afca058e6ed", + "logId": "9b38cfc8-179e-4055-802e-162df5f4789c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "75692e18-de49-409a-9632-51ac9643d549", + "name": "init configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670019471583, + "endTime": 341670019479708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "cb569abf-f7b7-4adf-adb1-54261b4929c7", + "parent": "2e7cf46b-653f-49eb-9e21-9cfe985e25c2" + } + }, + { + "head": { + "id": "9a4a34a9-d93c-47f1-94ac-4468dfd1e5e9", + "name": "configure project task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670019493375, + "endTime": 341670019697750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "7f81d558-6ca6-4b86-bc22-738500cecbfa", + "parent": "2e7cf46b-653f-49eb-9e21-9cfe985e25c2" + } + }, + { + "head": { + "id": "f3a010d9-566d-48e3-ad0d-747588cabda4", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670019796083, + "endTime": 341670019809250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ccaef645-cce4-4d29-a0a3-830500c3a598", + "logId": "9de808a9-1048-4bb7-9529-89a91ed0c084" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9de808a9-1048-4bb7-9529-89a91ed0c084", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670019796083, + "endTime": 341670019809250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f3a010d9-566d-48e3-ad0d-747588cabda4", + "parent": "0d01d4ce-b138-4d68-bcd6-388e14782820" + } + }, + { + "head": { + "id": "87b1d6eb-49bb-4464-885a-1f6927f21327", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670019908458, + "endTime": 341670854751666 + }, + "additional": { + "children": [ + "63c4006f-b880-4efa-b954-373ab0a8ce3f", + "1f40960a-a9b5-4316-9ec6-91ed0973611a" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ccaef645-cce4-4d29-a0a3-830500c3a598", + "logId": "48670cb1-9fea-4db6-9562-3d60dff12abf" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "63c4006f-b880-4efa-b954-373ab0a8ce3f", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670019908958, + "endTime": 341670742765416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "87b1d6eb-49bb-4464-885a-1f6927f21327", + "logId": "023e9056-a30c-4a5b-a34e-13ea9ac1fac0" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "1f40960a-a9b5-4316-9ec6-91ed0973611a", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670742777458, + "endTime": 341670854744291 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "87b1d6eb-49bb-4464-885a-1f6927f21327", + "logId": "1ef41938-9aac-4602-a002-63889b62a5ae" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "030cbd36-738b-4d08-ae6b-a2e690f795db", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670019910541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "54d5b541-80a0-415d-9ebf-ffd24652eb1e", + "name": "hvigorfile, require result: { default: { system: [Function: appTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670742620416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "023e9056-a30c-4a5b-a34e-13ea9ac1fac0", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670019908958, + "endTime": 341670742765416 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "63c4006f-b880-4efa-b954-373ab0a8ce3f", + "parent": "48670cb1-9fea-4db6-9562-3d60dff12abf" + } + }, + { + "head": { + "id": "5b6d681e-6eed-46d5-9301-45439673849f", + "name": "hvigorfile, binding system plugins [Function: appTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670742835000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a3e62e76-1c67-48c3-a00c-cad62c12517e", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670743380625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e057abea-c776-43d2-8bcd-9c17cbe2cd24", + "name": "App plugin prepare start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670743418750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "633b31f0-b342-47fc-b870-dcd96e3b7756", + "name": "App plugin prepare end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670743455208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "16b5147f-d793-49ae-98b6-1b5db701bbde", + "name": "App plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670743469375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "16758f83-8cd3-43fa-b697-b01d1ef1e880", + "name": "App plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670828504416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e772dda7-d6db-47ab-8f04-df65290d3bc1", + "name": "App plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670828796708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fb185555-04a3-4cf6-a481-71a495c72fd5", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670828821791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "24576185-504e-48d7-87b2-d9c391803e05", + "name": "Start initialize project's product build option map with build mode debug.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670829839333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6d802a35-c85c-4ebb-a599-86e980b910cc", + "name": "Picking option from product 'default' with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670829992166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "79a67025-e927-4e8d-b42c-56e0e51f17f4", + "name": "Product 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670830274708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "823d424c-45ff-492a-a46f-6c0f0cd1d031", + "name": "End initialize project's product build option map with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670830322666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "15d1ffd5-beab-4fe4-a799-a55a4896aeea", + "name": "Obtain build option for product 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670831692166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b16e8e70-6406-4ddf-9996-7e8ba919a419", + "name": "No signingConfig found, initRemoteHspCache failed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670832870791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fecf1e6e-789e-4774-b189-973ebb1f253b", + "name": "harmonyOS sdk scan", + "description": "HarmonyOS sdk scan", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670833867000, + "endTime": 341670834811416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Other", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9f7a0242-2270-4962-a192-10f8cf86ce46", + "name": "Local scan or download HarmonyOS sdk components toolchains,ets,js,native,previewer", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670833874791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b53e2e06-123b-427b-876d-0d41d271c874", + "name": "hmscore sdk scan", + "description": "Hmscore sdk scan", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670834879666, + "endTime": 341670835066833 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Other", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "7b9bc044-83f4-41cd-b2ed-48b0420fea8e", + "name": "Local scan or download hmscore sdk components toolchains,ets,native", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670834885583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8acac12b-64dc-4178-8b33-b082fe292b41", + "name": "Start recording SDK configuration permission data.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670835921250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1f127e24-41aa-4e6c-9a69-ecdeed4e4665", + "name": "Sdk init in 19 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670851883166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ff80f756-deec-4746-885d-3986128ca889", + "name": "sdkVersion", + "description": "6.0.2.130", + "type": "mark" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670851989916 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 21, + "second": 37 + }, + "markType": "other" + } + }, + { + "head": { + "id": "3ab67c54-bc20-4a1b-90dc-22bbac6bd373", + "name": "caseSensitiveCheckOn", + "description": "caseSensitiveCheck check is on", + "type": "mark" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670852025583 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 21, + "second": 37 + }, + "markType": "other" + } + }, + { + "head": { + "id": "6fea6028-16ba-4ad8-a263-1d5ec53c5434", + "name": "Project task initialization takes 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670854652416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "522b9f6c-a7be-4303-9dff-488852fc707c", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670854717625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5c829e7d-10dd-46b8-a5ae-978b1b2c23b5", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670854729916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "665ccb24-8286-46cb-99f7-1ccb707cf7ea", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670854737625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1ef41938-9aac-4602-a002-63889b62a5ae", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670742777458, + "endTime": 341670854744291 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "1f40960a-a9b5-4316-9ec6-91ed0973611a", + "parent": "48670cb1-9fea-4db6-9562-3d60dff12abf" + } + }, + { + "head": { + "id": "48670cb1-9fea-4db6-9562-3d60dff12abf", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670019908458, + "endTime": 341670854751666 + }, + "additional": { + "logType": "info", + "children": [ + "023e9056-a30c-4a5b-a34e-13ea9ac1fac0", + "1ef41938-9aac-4602-a002-63889b62a5ae" + ], + "durationId": "87b1d6eb-49bb-4464-885a-1f6927f21327", + "parent": "0d01d4ce-b138-4d68-bcd6-388e14782820" + } + }, + { + "head": { + "id": "43cdadc1-bcf7-4041-9d61-5920e52ec59a", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670854792500, + "endTime": 341670854804875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ccaef645-cce4-4d29-a0a3-830500c3a598", + "logId": "be9b348e-8e3f-4052-90d7-0c1c2dd5ac79" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "be9b348e-8e3f-4052-90d7-0c1c2dd5ac79", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670854792500, + "endTime": 341670854804875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "43cdadc1-bcf7-4041-9d61-5920e52ec59a", + "parent": "0d01d4ce-b138-4d68-bcd6-388e14782820" + } + }, + { + "head": { + "id": "0d01d4ce-b138-4d68-bcd6-388e14782820", + "name": "eval project", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670019728875, + "endTime": 341670854811916 + }, + "additional": { + "logType": "info", + "children": [ + "9de808a9-1048-4bb7-9529-89a91ed0c084", + "48670cb1-9fea-4db6-9562-3d60dff12abf", + "be9b348e-8e3f-4052-90d7-0c1c2dd5ac79" + ], + "durationId": "ccaef645-cce4-4d29-a0a3-830500c3a598", + "parent": "2e7cf46b-653f-49eb-9e21-9cfe985e25c2" + } + }, + { + "head": { + "id": "fd29735e-4f9c-404b-b94b-336bf6ca32ce", + "name": "eval submodule", + "description": "Evaluate submodule.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670854936083, + "endTime": 341670883064375 + }, + "additional": { + "children": [ + "74d0a5f6-feb7-4170-84f5-ed1f592f0786", + "629f06d8-b869-4d55-9b7b-07cbbcebbcb0", + "15ad6847-d5e5-4a6f-af39-e8e7d35f4191" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "4f428507-a83d-4429-9f70-e320191e4506", + "logId": "1ae8fce8-8b19-491d-997e-a114b62bdb30" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "74d0a5f6-feb7-4170-84f5-ed1f592f0786", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670854977291, + "endTime": 341670854981833 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "fd29735e-4f9c-404b-b94b-336bf6ca32ce", + "logId": "76e40ccb-6086-442e-9c3f-65031cb88b6c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "76e40ccb-6086-442e-9c3f-65031cb88b6c", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670854977291, + "endTime": 341670854981833 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "74d0a5f6-feb7-4170-84f5-ed1f592f0786", + "parent": "1ae8fce8-8b19-491d-997e-a114b62bdb30" + } + }, + { + "head": { + "id": "629f06d8-b869-4d55-9b7b-07cbbcebbcb0", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670855002875, + "endTime": 341670882582000 + }, + "additional": { + "children": [ + "d580d4dc-17e3-4e5f-9649-64f3f450f8d2", + "cc04aef6-c9b7-41c9-a225-87d6e0b8b3b8" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "fd29735e-4f9c-404b-b94b-336bf6ca32ce", + "logId": "d03ad0c1-2801-4b75-ab53-6879f2a8c3a8" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "d580d4dc-17e3-4e5f-9649-64f3f450f8d2", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670855003083, + "endTime": 341670860033250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "629f06d8-b869-4d55-9b7b-07cbbcebbcb0", + "logId": "cbd1a018-9312-4d30-95f1-3100068fcd91" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "cc04aef6-c9b7-41c9-a225-87d6e0b8b3b8", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670860040958, + "endTime": 341670882576958 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "629f06d8-b869-4d55-9b7b-07cbbcebbcb0", + "logId": "c09131b7-7d94-463c-aa12-a76c7059b4ab" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3bf9d20c-5a97-4282-8ba4-57f73ee4cabd", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670855004000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "65cb1e02-e702-42b6-bd89-d6a54fe07c1a", + "name": "hvigorfile, require result: { default: { system: [Function: harTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670859981250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cbd1a018-9312-4d30-95f1-3100068fcd91", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670855003083, + "endTime": 341670860033250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "d580d4dc-17e3-4e5f-9649-64f3f450f8d2", + "parent": "d03ad0c1-2801-4b75-ab53-6879f2a8c3a8" + } + }, + { + "head": { + "id": "c0815e05-5419-4cce-9c34-db22da8205c5", + "name": "hvigorfile, binding system plugins [Function: harTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670860045958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "52e2c5a3-032e-4232-84d5-aec2f01e0ee3", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670860101041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dc02e8eb-11ce-4aee-9764-7e23a95922fa", + "name": "Har plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670860124458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "55b9178e-d547-4df7-9030-53285aea9548", + "name": "failed to load cangjie to dynamically generate schemas: Error: Cannot find module '@ohos/cangjie-build-support/index'\nRequire stack:\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/hooks/cangjie-register.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/strategy/stage-init-strategy.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/abstract-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/factory/plugin-factory.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/index.js\n- /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/boot/index.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/cli/main/cli.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/bin/hvigor.js", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670860550583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "267b1254-f055-4e2b-852b-24e4c4984713", + "name": "Start initialize module-target build option map, moduleName=xuqmSdk, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670879411791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5692ab20-3ba4-45f5-8fe5-5ef153a6e2e4", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670879527916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9cc65ce6-cc76-4b36-a31a-7bc533c1a39a", + "name": "Module 'xuqmSdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670879768458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cef3c539-364c-488f-93c6-e97ec00de14d", + "name": "End initialize module-target build option map, moduleName=xuqmSdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670879781333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "649d10e2-1d96-4610-bea3-8ab7d2ee1097", + "name": "Start initialize module-target build option map, moduleName=xuqmSdk, buildMode=release", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670879800958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1dfb857a-70af-4205-bfd8-a6cf21cdfb43", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670879813583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c9a2d0ab-7c16-4633-80a3-c86eb26f1e37", + "name": "Module 'xuqmSdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670879964750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0da3478b-cf7f-4c50-bd9d-f09ea7b8371d", + "name": "End initialize module-target build option map, moduleName=xuqmSdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670879975375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "578a1665-0c01-4fc5-b8a6-5a877f8852b7", + "name": "Start initialize module-target build option map, moduleName=xuqmSdk, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670880052833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "157fa22f-e67b-486e-b2e3-87a9f2f73fdb", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670880065666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "26b38918-2081-476b-a8c7-cbeffd5d6454", + "name": "Module 'xuqmSdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670880179000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a3ba8da5-71d6-4463-ace9-985c0a606b8c", + "name": "End initialize module-target build option map, moduleName=xuqmSdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670880188291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "afa6801e-8e6c-4e0f-91fe-c2d57e7315e1", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670880262458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0c2b0871-096b-4fed-acf3-1004338d3dc5", + "name": "Module xuqmSdk task initialization takes 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670882327500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "01c2693c-0789-4b77-bcb3-4ba623a4dc90", + "name": "Har plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670882450041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4dacdd50-7d26-4177-b948-9e6e3e950cfd", + "name": "Har plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670882506708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4faa4835-3feb-42b6-a046-18044f105061", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670882517541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "51e0c28b-45d2-4b3c-8834-4f35db861e02", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670882554333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ed47e908-5a98-4d6b-8c04-be1acb2ec286", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670882565458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8eb50829-7aac-451b-8b27-60c96d358bb9", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670882571166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c09131b7-7d94-463c-aa12-a76c7059b4ab", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670860040958, + "endTime": 341670882576958 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "cc04aef6-c9b7-41c9-a225-87d6e0b8b3b8", + "parent": "d03ad0c1-2801-4b75-ab53-6879f2a8c3a8" + } + }, + { + "head": { + "id": "d03ad0c1-2801-4b75-ab53-6879f2a8c3a8", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670855002875, + "endTime": 341670882582000 + }, + "additional": { + "logType": "info", + "children": [ + "cbd1a018-9312-4d30-95f1-3100068fcd91", + "c09131b7-7d94-463c-aa12-a76c7059b4ab" + ], + "durationId": "629f06d8-b869-4d55-9b7b-07cbbcebbcb0", + "parent": "1ae8fce8-8b19-491d-997e-a114b62bdb30" + } + }, + { + "head": { + "id": "15ad6847-d5e5-4a6f-af39-e8e7d35f4191", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670883051250, + "endTime": 341670883057000 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "fd29735e-4f9c-404b-b94b-336bf6ca32ce", + "logId": "ceb94368-867e-4ce3-b850-7f9de2c07e81" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ceb94368-867e-4ce3-b850-7f9de2c07e81", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670883051250, + "endTime": 341670883057000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "15ad6847-d5e5-4a6f-af39-e8e7d35f4191", + "parent": "1ae8fce8-8b19-491d-997e-a114b62bdb30" + } + }, + { + "head": { + "id": "1ae8fce8-8b19-491d-997e-a114b62bdb30", + "name": "eval submodule", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670854936083, + "endTime": 341670883064375 + }, + "additional": { + "logType": "info", + "children": [ + "76e40ccb-6086-442e-9c3f-65031cb88b6c", + "d03ad0c1-2801-4b75-ab53-6879f2a8c3a8", + "ceb94368-867e-4ce3-b850-7f9de2c07e81" + ], + "durationId": "fd29735e-4f9c-404b-b94b-336bf6ca32ce", + "parent": "623d8e77-2536-4a8e-b05e-008b0f629d20" + } + }, + { + "head": { + "id": "96f0231a-b459-4de0-98ef-6f9d115912b7", + "name": "eval submodule", + "description": "Evaluate submodule.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670883080458, + "endTime": 341670889261625 + }, + "additional": { + "children": [ + "12eb1760-5d35-4976-8d0e-62e6f1cdc590", + "51a0d06f-e6f8-44e0-b4ef-e88cb0d6ceec", + "160abcf7-c6c3-4cfc-9f14-ab9f527da0af" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "4f428507-a83d-4429-9f70-e320191e4506", + "logId": "cf74f002-2370-4a0f-86f8-95e35b640b43" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "12eb1760-5d35-4976-8d0e-62e6f1cdc590", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670883120500, + "endTime": 341670883123250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "96f0231a-b459-4de0-98ef-6f9d115912b7", + "logId": "7adb6b9f-ecbb-4cc7-b917-d40e71903f06" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "7adb6b9f-ecbb-4cc7-b917-d40e71903f06", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670883120500, + "endTime": 341670883123250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "12eb1760-5d35-4976-8d0e-62e6f1cdc590", + "parent": "cf74f002-2370-4a0f-86f8-95e35b640b43" + } + }, + { + "head": { + "id": "51a0d06f-e6f8-44e0-b4ef-e88cb0d6ceec", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670883144666, + "endTime": 341670889224208 + }, + "additional": { + "children": [ + "aaf9b219-2ec6-4f41-8004-2ea4a036e58c", + "4484cda2-0aac-4686-a53a-7428d4ccc28f" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "96f0231a-b459-4de0-98ef-6f9d115912b7", + "logId": "d6ad17ba-b368-4dcd-8f07-32842dbc033c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "aaf9b219-2ec6-4f41-8004-2ea4a036e58c", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670883144833, + "endTime": 341670886274250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "51a0d06f-e6f8-44e0-b4ef-e88cb0d6ceec", + "logId": "4427a065-8ba1-45df-94d9-42899d378938" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "4484cda2-0aac-4686-a53a-7428d4ccc28f", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670886281583, + "endTime": 341670889218833 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "51a0d06f-e6f8-44e0-b4ef-e88cb0d6ceec", + "logId": "c0809011-c5d6-46f9-8561-ecbf53f61018" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "204982c2-052f-4cf3-9f98-5b0869639b0c", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670883145958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0c7ecce5-1874-4c80-9a89-74b50f2810c0", + "name": "hvigorfile, require result: { default: { system: [Function: hapTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670886238458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4427a065-8ba1-45df-94d9-42899d378938", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670883144833, + "endTime": 341670886274250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "aaf9b219-2ec6-4f41-8004-2ea4a036e58c", + "parent": "d6ad17ba-b368-4dcd-8f07-32842dbc033c" + } + }, + { + "head": { + "id": "d33215ab-e340-4d6d-8b85-ce751ddc45bb", + "name": "hvigorfile, binding system plugins [Function: hapTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670886285958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4fc25e9e-cd4b-4505-8221-0615bf124284", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670886334666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "550fe974-0524-443e-924d-647b11bebb24", + "name": "Hap plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670886351333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b6b78e19-1f1e-49dd-b4aa-6c6c6002e570", + "name": "failed to load cangjie to dynamically generate schemas: Error: Cannot find module '@ohos/cangjie-build-support/index'\nRequire stack:\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/hooks/cangjie-register.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/strategy/stage-init-strategy.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/abstract-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/factory/plugin-factory.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/index.js\n- /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/boot/index.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/cli/main/cli.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/bin/hvigor.js", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670886450666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ee374dbb-ac5b-4d9a-9f67-fac6406a6571", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670888117458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cdfb17e8-d257-4dcb-978d-40fa0fa3a780", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670888138875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f74dc134-5d59-4b52-9a4d-b3507eea76a6", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670888187375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "99e659c8-3cc2-4354-9abc-96dc34bf6e75", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670888194666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e4e97ca3-c598-45fd-9802-dc5f7384ff50", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=release", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670888208041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "84b1259e-8445-4d7e-b306-6b73ab9a7364", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670888217125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c2f699b8-26ad-4e9f-87fe-2a3b9dc9535e", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670888256750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "92c80782-21a6-4c18-a6af-d0797704dc21", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670888264125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "877a9a17-a1cf-4ea3-a729-6dc65681830a", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670888278666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8d352147-9701-4295-aa7f-49aa61a3a692", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670888287791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c18727a0-43c4-4b9b-b064-df49c93578d8", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670888319333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fa05374f-a59b-4df4-8d91-77c3d4847f30", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670888325583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b00686d4-a939-416b-922d-bbbcd3926f02", + "name": "Obtain build option for module 'entry' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670888335833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ed4a7170-8864-4bd3-8b11-f3fa5bed95bf", + "name": "Module entry task initialization takes 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670889111458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0dba88c8-3cd0-43d5-baea-273de87b7cff", + "name": "Hap plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670889152916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "30b64a3a-9473-4862-b703-f2265fb0ff3e", + "name": "Hap plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670889165083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fee4dbf0-4175-44e8-83e3-5f36271b4a8e", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670889171958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2f8e46fe-ec4e-40ed-a3df-99694cea1d20", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670889197833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cbdd73eb-eefd-430c-9a23-23dc64cb193e", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670889207250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2b28f8b7-6a2b-48c2-b8b5-78d402435ee4", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670889213375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c0809011-c5d6-46f9-8561-ecbf53f61018", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670886281583, + "endTime": 341670889218833 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "4484cda2-0aac-4686-a53a-7428d4ccc28f", + "parent": "d6ad17ba-b368-4dcd-8f07-32842dbc033c" + } + }, + { + "head": { + "id": "d6ad17ba-b368-4dcd-8f07-32842dbc033c", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670883144666, + "endTime": 341670889224208 + }, + "additional": { + "logType": "info", + "children": [ + "4427a065-8ba1-45df-94d9-42899d378938", + "c0809011-c5d6-46f9-8561-ecbf53f61018" + ], + "durationId": "51a0d06f-e6f8-44e0-b4ef-e88cb0d6ceec", + "parent": "cf74f002-2370-4a0f-86f8-95e35b640b43" + } + }, + { + "head": { + "id": "160abcf7-c6c3-4cfc-9f14-ab9f527da0af", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670889253791, + "endTime": 341670889257291 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "96f0231a-b459-4de0-98ef-6f9d115912b7", + "logId": "75f21b52-f3fe-43bc-ae23-08334bfc7114" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "75f21b52-f3fe-43bc-ae23-08334bfc7114", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670889253791, + "endTime": 341670889257291 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "160abcf7-c6c3-4cfc-9f14-ab9f527da0af", + "parent": "cf74f002-2370-4a0f-86f8-95e35b640b43" + } + }, + { + "head": { + "id": "cf74f002-2370-4a0f-86f8-95e35b640b43", + "name": "eval submodule", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670883080458, + "endTime": 341670889261625 + }, + "additional": { + "logType": "info", + "children": [ + "7adb6b9f-ecbb-4cc7-b917-d40e71903f06", + "d6ad17ba-b368-4dcd-8f07-32842dbc033c", + "75f21b52-f3fe-43bc-ae23-08334bfc7114" + ], + "durationId": "96f0231a-b459-4de0-98ef-6f9d115912b7", + "parent": "623d8e77-2536-4a8e-b05e-008b0f629d20" + } + }, + { + "head": { + "id": "623d8e77-2536-4a8e-b05e-008b0f629d20", + "name": "eval modules", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670854931333, + "endTime": 341670889266083 + }, + "additional": { + "logType": "info", + "children": [ + "1ae8fce8-8b19-491d-997e-a114b62bdb30", + "cf74f002-2370-4a0f-86f8-95e35b640b43" + ], + "durationId": "4f428507-a83d-4429-9f70-e320191e4506", + "parent": "2e7cf46b-653f-49eb-9e21-9cfe985e25c2" + } + }, + { + "head": { + "id": "99464cea-6c50-4cf7-b61b-2e33620648a4", + "name": "add config dependencies", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670889283458, + "endTime": 341670889283833 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "8e6eaade-6ad1-4884-8594-587cd65f5cb2", + "parent": "2e7cf46b-653f-49eb-9e21-9cfe985e25c2" + } + }, + { + "head": { + "id": "a7341ab5-d41e-4766-bc87-c54a2d706df1", + "name": "\"nodesEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670889290625, + "endTime": 341670889420125 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "ff1b8bdf-792a-40fa-84c4-4afca058e6ed", + "logId": "2a2ff5b6-4a22-40e4-b316-24a9c4ab8be4" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c97e7a5f-8391-4d53-b33e-a3dc68b50a8c", + "name": "project has submodules:xuqmSdk,entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670889318041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1e3d730e-aee9-44f1-ac26-94e68d820b40", + "name": "module:xuqmSdk no need to execute packageHap", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670889380166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2a2ff5b6-4a22-40e4-b316-24a9c4ab8be4", + "name": "\"nodesEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670889290625, + "endTime": 341670889420125 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "a7341ab5-d41e-4766-bc87-c54a2d706df1", + "parent": "2e7cf46b-653f-49eb-9e21-9cfe985e25c2" + } + }, + { + "head": { + "id": "477843b8-0b09-4789-b989-b9759fc5d912", + "name": "start to load updatedOhPackageInfo to the disk", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670890234541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "805440e7-9637-4a7b-a318-a0c778423751", + "name": "load to the disk finished", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670893884500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "909a9794-462b-470b-80f5-d0863336c0fb", + "name": "ohpm install", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670889422875, + "endTime": 341670894190541 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "2891de89-7eec-40b1-bdc4-ac1f3fabbc7d", + "parent": "2e7cf46b-653f-49eb-9e21-9cfe985e25c2" + } + }, + { + "head": { + "id": "17f50c44-d17e-4a5e-8263-2740aea51de0", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670894251583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4311a1c2-ec57-479a-8b73-77cf36f35562", + "name": "Module XuqmGroup-HarmonySDK Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670894991583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f4776d30-b067-4286-b620-739d4183e180", + "name": "Module XuqmGroup-HarmonySDK's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670895005166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3a0b1258-8214-4a87-9318-606a5a170604", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670895656958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c77f984b-f5d1-4497-8216-9d442d6c1311", + "name": "Module xuqmSdk Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670895959500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "51bd8b24-047a-41c4-904a-11f0085c837e", + "name": "Module xuqmSdk's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670895970875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "644d984f-df40-431d-af8a-4ee8589e0ef7", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670897302125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "051b9463-fa26-43d0-be27-5a6c4e6c0329", + "name": "Module entry Collected Dependency: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670898204625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "138edc88-0f61-454c-9379-b942cd0ebcaa", + "name": "Module entry's total dependency: 1", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670898216541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6393f84a-5c85-4b60-977f-16fc1fce0164", + "name": "eval hook", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670894198541, + "endTime": 341670898776416 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "86edf4c4-4b98-4fd9-9468-1d18a7716473", + "parent": "2e7cf46b-653f-49eb-9e21-9cfe985e25c2" + } + }, + { + "head": { + "id": "b62d09c8-81ef-4e2a-8170-ddf3ed4d4b41", + "name": "Configuration phase cost:880 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670898800208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9b38cfc8-179e-4055-802e-162df5f4789c", + "name": "fin configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670898783500, + "endTime": 341670898810041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "180951dc-98f1-4c2f-9010-246978d1760f", + "parent": "2e7cf46b-653f-49eb-9e21-9cfe985e25c2" + } + }, + { + "head": { + "id": "2e7cf46b-653f-49eb-9e21-9cfe985e25c2", + "name": "configure hvigor plugin", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670019338208, + "endTime": 341670898813875 + }, + "additional": { + "logType": "info", + "children": [ + "75692e18-de49-409a-9632-51ac9643d549", + "9a4a34a9-d93c-47f1-94ac-4468dfd1e5e9", + "0d01d4ce-b138-4d68-bcd6-388e14782820", + "623d8e77-2536-4a8e-b05e-008b0f629d20", + "99464cea-6c50-4cf7-b61b-2e33620648a4", + "909a9794-462b-470b-80f5-d0863336c0fb", + "6393f84a-5c85-4b60-977f-16fc1fce0164", + "9b38cfc8-179e-4055-802e-162df5f4789c", + "2a2ff5b6-4a22-40e4-b316-24a9c4ab8be4" + ], + "durationId": "ff1b8bdf-792a-40fa-84c4-4afca058e6ed", + "parent": "bdd2b17b-76d8-476a-a07c-41127d1db192" + } + }, + { + "head": { + "id": "593e50cb-2c76-4a70-92c0-8e9b8dd06ad3", + "name": "\"taskGraphResolved\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670899693875, + "endTime": 341670899708041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "85d6e69d-9ec6-4548-a265-a52ad313428a", + "logId": "bb9c82f6-d4f6-4746-b3ab-83c6b1d516ed" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "bb9c82f6-d4f6-4746-b3ab-83c6b1d516ed", + "name": "\"taskGraphResolved\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670899693875, + "endTime": 341670899708041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "593e50cb-2c76-4a70-92c0-8e9b8dd06ad3", + "parent": "bdd2b17b-76d8-476a-a07c-41127d1db192" + } + }, + { + "head": { + "id": "858e8e95-ebf1-4e0e-9596-9616f4acf75c", + "name": "build task graph", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670898827666, + "endTime": 341670899714000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3bee0096-aeb2-4d93-9290-20e75f961658", + "parent": "bdd2b17b-76d8-476a-a07c-41127d1db192" + } + }, + { + "head": { + "id": "6cad4439-b146-408e-9b9f-150a1d545406", + "name": "init task execution option", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670899716500, + "endTime": 341670899719458 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "692cb0cc-1f7a-49f4-98cc-474df57c4558", + "parent": "bdd2b17b-76d8-476a-a07c-41127d1db192" + } + }, + { + "head": { + "id": "bdd2b17b-76d8-476a-a07c-41127d1db192", + "name": "init", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670013730833, + "endTime": 341670899722333 + }, + "additional": { + "logType": "info", + "children": [ + "5c1bee94-31ea-48ec-979a-6f6d7ba0b1c6", + "2e7cf46b-653f-49eb-9e21-9cfe985e25c2", + "858e8e95-ebf1-4e0e-9596-9616f4acf75c", + "6cad4439-b146-408e-9b9f-150a1d545406", + "0b077450-9a25-4e13-82e0-cc18db4226f2", + "b848efef-4a9c-427d-b4ed-cf2abc06b204", + "bb9c82f6-d4f6-4746-b3ab-83c6b1d516ed" + ], + "durationId": "85d6e69d-9ec6-4548-a265-a52ad313428a" + } + }, + { + "head": { + "id": "0e010633-609f-4a40-a1ee-fe23419ac647", + "name": "Configuration task cost before running: 887 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670900085666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e0904e0f-d1be-495a-b137-0ae229cebd1a", + "name": "entry:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670902104250, + "endTime": 341670905907041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Verification", + "taskRunReasons": [], + "detailId": "e915ce87-8e65-4336-8de1-e8fd9aff91ad", + "logId": "99c64af2-2e4a-431f-8d3c-3964fe766f6b" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e915ce87-8e65-4336-8de1-e8fd9aff91ad", + "name": "create entry:default@PreBuild task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670900343333 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "e0904e0f-d1be-495a-b137-0ae229cebd1a" + } + }, + { + "head": { + "id": "25cc92a5-2669-42a0-8d87-0cf993fed8ac", + "name": "Executing task :entry:default@PreBuild", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670902116250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "86353874-f0e6-4036-8ba5-ffdebaea593c", + "name": "The project has not explicitly set the 'targetSdkVersion' version at build-profile.json5. It is recommended to configure it. Reference: https://developer.huawei.com/consumer/cn/doc/harmonyos-guides/ide-hvigor-build-profile-app#section45865492619", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670902294708 + }, + "additional": { + "logType": "warn", + "children": [] + } + }, + { + "head": { + "id": "2b696a4c-1fa7-4d09-b419-91d5665bf0d9", + "name": "Task 'entry:default@PreBuild' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670903720125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a8281064-e1c6-46b5-b0df-00c6d317fdba", + "name": "Incremental task entry:default@PreBuild pre-execution cost: 2 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670905820083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "41bf2b5e-dce3-40ae-9dd2-15dc74d1e467", + "name": "entry : default@PreBuild cost memory 0.5981674194335938", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670905861541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "99c64af2-2e4a-431f-8d3c-3964fe766f6b", + "name": "UP-TO-DATE :entry:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670902104250, + "endTime": 341670905907041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e0904e0f-d1be-495a-b137-0ae229cebd1a" + } + }, + { + "head": { + "id": "33e9bd2c-3b24-4634-95da-3d4dbd48aa57", + "name": "xuqmSdk:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670906786291, + "endTime": 341670907883500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Verification", + "taskRunReasons": [], + "detailId": "664c447f-4af7-46a8-a2bd-85a039cdf61c", + "logId": "6eb83833-7f4f-4c47-a26a-24a2012ba69a" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "664c447f-4af7-46a8-a2bd-85a039cdf61c", + "name": "create xuqmSdk:default@PreBuild task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670906357666 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "33e9bd2c-3b24-4634-95da-3d4dbd48aa57" + } + }, + { + "head": { + "id": "36c338c5-c110-4566-9b90-e358be516a87", + "name": "Executing task :xuqmSdk:default@PreBuild", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670906789250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7020e800-3883-4b93-99b4-e985e7214667", + "name": "Task 'xuqmSdk:default@PreBuild' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670906895166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4a34a66b-a5e7-46a2-8b23-bba1b76b0fcb", + "name": "Incremental task xuqmSdk:default@PreBuild pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670907840583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3b594957-3777-4707-b9e9-7f4cbd7256b5", + "name": "xuqmSdk : default@PreBuild cost memory 0.41614532470703125", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670907872000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6eb83833-7f4f-4c47-a26a-24a2012ba69a", + "name": "UP-TO-DATE :xuqmSdk:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670906786291, + "endTime": 341670907883500 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "33e9bd2c-3b24-4634-95da-3d4dbd48aa57" + } + }, + { + "head": { + "id": "9c5b7c40-8291-4220-b323-f75e41367aed", + "name": "entry:default@CreateModuleInfo", + "description": "Create the ModuleInfo.ts file for the hap/hsp package.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670908323750, + "endTime": 341670908603083 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "3a625610-55e4-4a19-b34f-58d4d72af207", + "logId": "af0c85c8-77cb-4f8f-bb7e-5650eea7ce03" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3a625610-55e4-4a19-b34f-58d4d72af207", + "name": "create entry:default@CreateModuleInfo task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670908194125 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "9c5b7c40-8291-4220-b323-f75e41367aed" + } + }, + { + "head": { + "id": "3a54ee36-9926-44c7-a7eb-4f0726f857a6", + "name": "Executing task :entry:default@CreateModuleInfo", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670908326750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "df03fd7a-27fa-44a4-87dd-d1eaf1250cb8", + "name": "Task 'entry:default@CreateModuleInfo' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670908432166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ea5905a7-a0a7-4cb9-a9bd-9ffe1cd165d2", + "name": "entry : default@CreateModuleInfo cost memory 0.03591156005859375", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670908553375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d4d01b05-af86-4a03-b9a7-947c1df610e5", + "name": "runTaskFromQueue task cost before running: 896 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670908570541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "af0c85c8-77cb-4f8f-bb7e-5650eea7ce03", + "name": "Finished :entry:default@CreateModuleInfo", + "description": "Create the ModuleInfo.ts file for the hap/hsp package.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670908323750, + "endTime": 341670908603083, + "totalTime": 240792 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9c5b7c40-8291-4220-b323-f75e41367aed" + } + }, + { + "head": { + "id": "b45ffafd-9af0-401a-9d63-497ddb72a208", + "name": "entry:default@GenerateMetadata", + "description": "Generate metadata in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670909214375, + "endTime": 341670909560416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "7ef68ea2-9cf3-4ede-b106-29cc81c45f4d", + "logId": "940d3528-c073-422e-9727-cf24e55386c7" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "7ef68ea2-9cf3-4ede-b106-29cc81c45f4d", + "name": "create entry:default@GenerateMetadata task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670908780333 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "b45ffafd-9af0-401a-9d63-497ddb72a208" + } + }, + { + "head": { + "id": "fb813267-8999-41d7-9056-765340cbe755", + "name": "Executing task :entry:default@GenerateMetadata", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670909220583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6cb893bf-95ab-4aee-952d-76c9ad461b1d", + "name": "Task 'entry:default@GenerateMetadata' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670909383708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "214ee94e-e0d8-4c41-ae8a-074f8e854a7c", + "name": "Incremental task entry:default@GenerateMetadata pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670909533583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "17170a3b-2afe-44dd-8e6d-8d5afd593893", + "name": "entry : default@GenerateMetadata cost memory 0.07225799560546875", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670909549458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "940d3528-c073-422e-9727-cf24e55386c7", + "name": "UP-TO-DATE :entry:default@GenerateMetadata", + "description": "Generate metadata in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670909214375, + "endTime": 341670909560416 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "b45ffafd-9af0-401a-9d63-497ddb72a208" + } + }, + { + "head": { + "id": "ff10e84a-768b-4c77-955f-647598753b62", + "name": "entry:default@PreCheckSyscap", + "description": "Pre-check SysCap.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670909960500, + "endTime": 341670910074541 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Verification", + "taskRunReasons": [], + "detailId": "4a38482e-e89f-4cf7-8481-9489a04a9c20", + "logId": "4bc54b06-f75d-4cd1-b775-207a7d6b7ac3" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "4a38482e-e89f-4cf7-8481-9489a04a9c20", + "name": "create entry:default@PreCheckSyscap task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670909651166 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "ff10e84a-768b-4c77-955f-647598753b62" + } + }, + { + "head": { + "id": "688489ad-674b-4fcf-9d4a-c51a9f70741e", + "name": "Executing task :entry:default@PreCheckSyscap", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670909967208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a945e040-e4f2-45ac-9e15-2d3587a79223", + "name": "entry : default@PreCheckSyscap cost memory 0.01346588134765625", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670910050791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ac4049f0-a1d9-43a9-bf56-833a52f61b34", + "name": "runTaskFromQueue task cost before running: 897 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670910066625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4bc54b06-f75d-4cd1-b775-207a7d6b7ac3", + "name": "Finished :entry:default@PreCheckSyscap", + "description": "Pre-check SysCap.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670909960500, + "endTime": 341670910074541, + "totalTime": 100709 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ff10e84a-768b-4c77-955f-647598753b62" + } + }, + { + "head": { + "id": "07518ca7-d84e-48e4-a99c-f0d8a4715e27", + "name": "entry:default@GeneratePkgContextInfo", + "description": "Generate pkgContextInfo.json to ets-loader.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670910465166, + "endTime": 341670915320916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "5dc2bf33-198d-4dee-9ab1-96c9e223d526", + "logId": "303fa142-d596-4e77-bb32-43b47527aa53" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "5dc2bf33-198d-4dee-9ab1-96c9e223d526", + "name": "create entry:default@GeneratePkgContextInfo task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670910198208 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "07518ca7-d84e-48e4-a99c-f0d8a4715e27" + } + }, + { + "head": { + "id": "1a2924ea-0d2e-4af3-a793-e2db9f22ce9f", + "name": "Executing task :entry:default@GeneratePkgContextInfo", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670910468333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e2aeb82d-b259-4f63-b181-7cb9cc5a32cf", + "name": "Task 'entry:default@GeneratePkgContextInfo' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670914992291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2ee91bf0-19d4-45de-93ed-aefbb2a89a7c", + "name": "Incremental task entry:default@GeneratePkgContextInfo pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670915268708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1ef94b83-9daa-4cea-8865-f83a3423a504", + "name": "entry : default@GeneratePkgContextInfo cost memory 0.5229110717773438", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670915300583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "303fa142-d596-4e77-bb32-43b47527aa53", + "name": "UP-TO-DATE :entry:default@GeneratePkgContextInfo", + "description": "Generate pkgContextInfo.json to ets-loader.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670910465166, + "endTime": 341670915320916 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "07518ca7-d84e-48e4-a99c-f0d8a4715e27" + } + }, + { + "head": { + "id": "3c2bc63c-7494-4fe3-9f5e-aeafbba8f92a", + "name": "entry:default@ProcessIntegratedHsp", + "description": "Use package tool process integrated hsp.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670916427000, + "endTime": 341670916746625 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Sign", + "taskRunReasons": [ + "The output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build/cache/default/integrated_hsp/integratedHspCache.json' does not exist." + ], + "detailId": "cbb23882-f23c-4da3-9cad-7ee745810d94", + "logId": "d306c73e-54fa-43f3-828f-1c2829c6b85a" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "cbb23882-f23c-4da3-9cad-7ee745810d94", + "name": "create entry:default@ProcessIntegratedHsp task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670915530208 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "3c2bc63c-7494-4fe3-9f5e-aeafbba8f92a" + } + }, + { + "head": { + "id": "6a52a4d6-40c1-4906-80ad-e36f8fe7cab9", + "name": "Executing task :entry:default@ProcessIntegratedHsp", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670916432666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2f8079f5-960a-4d4f-ae07-71a2cee2f276", + "name": "entry:default@ProcessIntegratedHsp is not up-to-date, since the output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build/cache/default/integrated_hsp/integratedHspCache.json' does not exist.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670916590791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d794e670-a6a7-42e5-9e18-9f2d72f74ce9", + "name": "Incremental task entry:default@ProcessIntegratedHsp pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670916616250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "08b975c3-0164-41d2-9aa9-5a1d228dc45d", + "name": "entry : default@ProcessIntegratedHsp cost memory 0.0470123291015625", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670916671791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "878e02fb-adf7-4f9b-a30e-ce4200bc3997", + "name": "runTaskFromQueue task cost before running: 904 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670916723625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d306c73e-54fa-43f3-828f-1c2829c6b85a", + "name": "Finished :entry:default@ProcessIntegratedHsp", + "description": "Use package tool process integrated hsp.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670916427000, + "endTime": 341670916746625, + "totalTime": 281041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3c2bc63c-7494-4fe3-9f5e-aeafbba8f92a" + } + }, + { + "head": { + "id": "d3d748c0-4967-4e75-a532-45ceec28f021", + "name": "xuqmSdk:default@CreateHarBuildProfile", + "description": "Create the BuildProfile.ets file for the HAR package.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670917551125, + "endTime": 341670918012666 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Generate", + "taskRunReasons": [], + "detailId": "560c8d87-8a36-4312-8753-6dff78795c60", + "logId": "36538588-cfb8-4ccb-939d-81d73da1368b" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "560c8d87-8a36-4312-8753-6dff78795c60", + "name": "create xuqmSdk:default@CreateHarBuildProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670917056875 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "d3d748c0-4967-4e75-a532-45ceec28f021" + } + }, + { + "head": { + "id": "cea0a87c-dda5-4afd-8910-868210452742", + "name": "Executing task :xuqmSdk:default@CreateHarBuildProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670917559583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "63349a57-d5d2-41cb-9fca-c1001af553bc", + "name": "Task 'xuqmSdk:default@CreateHarBuildProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670917698416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1b663c9a-7917-4443-9d6a-81f86c2fd565", + "name": "Incremental task xuqmSdk:default@CreateHarBuildProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670917974583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b0f992cb-f7f3-418c-96eb-ad6113ca62b2", + "name": "xuqmSdk : default@CreateHarBuildProfile cost memory 0.07399749755859375", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670917997416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "36538588-cfb8-4ccb-939d-81d73da1368b", + "name": "UP-TO-DATE :xuqmSdk:default@CreateHarBuildProfile", + "description": "Create the BuildProfile.ets file for the HAR package.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670917551125, + "endTime": 341670918012666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "d3d748c0-4967-4e75-a532-45ceec28f021" + } + }, + { + "head": { + "id": "da7a8a2c-1149-4aec-b5eb-b3f9b94927f2", + "name": "xuqmSdk:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670918643333, + "endTime": 341670918773708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "bddc0ddb-69dd-42bf-9d99-5549ae616e12", + "logId": "e8a80f61-6356-446e-b7ea-066ea7a28f00" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "bddc0ddb-69dd-42bf-9d99-5549ae616e12", + "name": "create xuqmSdk:default@ConfigureCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670918245375 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "da7a8a2c-1149-4aec-b5eb-b3f9b94927f2" + } + }, + { + "head": { + "id": "fc2cfa93-f155-468d-bc02-1cdaa28600af", + "name": "Executing task :xuqmSdk:default@ConfigureCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670918650125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1fe6fd3f-3e7e-4a71-b9b0-3f392fa4ac90", + "name": "xuqmSdk : default@ConfigureCmake cost memory 0.0124664306640625", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670918739500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7707d6c8-c294-452f-9893-b9285894c91a", + "name": "runTaskFromQueue task cost before running: 906 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670918764458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e8a80f61-6356-446e-b7ea-066ea7a28f00", + "name": "Finished :xuqmSdk:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670918643333, + "endTime": 341670918773708, + "totalTime": 112042 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "da7a8a2c-1149-4aec-b5eb-b3f9b94927f2" + } + }, + { + "head": { + "id": "9b12a88b-6b0e-406e-920c-19d2e5071bed", + "name": "xuqmSdk:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670919153333, + "endTime": 341670919744625 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Config", + "taskRunReasons": [], + "detailId": "f760bd82-4ba5-4b1e-b78f-dc76b54632d9", + "logId": "b1bc95b8-bbc3-4555-9ef8-b0a0033ab523" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f760bd82-4ba5-4b1e-b78f-dc76b54632d9", + "name": "create xuqmSdk:default@MergeProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670918950166 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "9b12a88b-6b0e-406e-920c-19d2e5071bed" + } + }, + { + "head": { + "id": "a9c456f1-7183-45d2-899a-00e1b000c479", + "name": "Executing task :xuqmSdk:default@MergeProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670919156291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f8a1e1ed-12af-470f-9820-f163a481e3f6", + "name": "Task 'xuqmSdk:default@MergeProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670919243833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ed2e6b9f-02ab-4bbf-970f-a0d8d13e02ad", + "name": "Incremental task xuqmSdk:default@MergeProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670919713708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bb2c6aad-b920-4c21-920f-2a64d43e45a4", + "name": "xuqmSdk : default@MergeProfile cost memory 0.104248046875", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670919730791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b1bc95b8-bbc3-4555-9ef8-b0a0033ab523", + "name": "UP-TO-DATE :xuqmSdk:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670919153333, + "endTime": 341670919744625 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "9b12a88b-6b0e-406e-920c-19d2e5071bed" + } + }, + { + "head": { + "id": "f1c395c6-cf91-4b28-9aa8-ac26f00deab6", + "name": "entry:default@SyscapTransform", + "description": "Transform SysCap in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670920204708, + "endTime": 341670931845791 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [ + "The output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/syscap/default/rpcid.sc' does not exist." + ], + "detailId": "92fdfd44-4f52-4e7b-82c6-986a79e9a4b2", + "logId": "f0d67038-1e72-4b77-83b3-4681a7a7f5a2" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "92fdfd44-4f52-4e7b-82c6-986a79e9a4b2", + "name": "create entry:default@SyscapTransform task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670919865666 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "f1c395c6-cf91-4b28-9aa8-ac26f00deab6" + } + }, + { + "head": { + "id": "fd9efccf-76d6-4158-ab02-57b820471f5a", + "name": "Executing task :entry:default@SyscapTransform", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670920208083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f43af195-42f9-4fe1-a2e4-3d8376e120bb", + "name": "File: '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/syscap.json' from 'sysCapJsonPath' is not exists, just ignore.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670920235458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7762a86e-6248-4ddc-8252-d44811f9bab5", + "name": "Task 'entry:default@SyscapTransform' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670920326458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "85d2b71e-6ca6-4676-a006-62ee99b2753a", + "name": "entry:default@SyscapTransform is not up-to-date, since the output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/syscap/default/rpcid.sc' does not exist.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670931591166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "72cb44f2-5bb8-4e90-ba95-41322710ec14", + "name": "Incremental task entry:default@SyscapTransform pre-execution cost: 12 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670931660500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6ff4df6c-2303-4510-bb01-0c93d59ac8bc", + "name": "entry : default@SyscapTransform cost memory 0.10289764404296875", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670931807916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c213168d-a0bc-4577-a10a-7f2325ebd658", + "name": "runTaskFromQueue task cost before running: 919 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670931834458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f0d67038-1e72-4b77-83b3-4681a7a7f5a2", + "name": "Finished :entry:default@SyscapTransform", + "description": "Transform SysCap in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670920204708, + "endTime": 341670931845791, + "totalTime": 11619709 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f1c395c6-cf91-4b28-9aa8-ac26f00deab6" + } + }, + { + "head": { + "id": "828384eb-6643-4fc5-bbb0-b9f6645ad87e", + "name": "entry:default@ProcessRouterMap", + "description": "Process router map configuration.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670932655500, + "endTime": 341670933497708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "f9fc4dd0-d4af-4765-bb43-f6a54e7326bf", + "logId": "637f0294-9797-41e0-9ae4-7a0e081eb57f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f9fc4dd0-d4af-4765-bb43-f6a54e7326bf", + "name": "create entry:default@ProcessRouterMap task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670932064375 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "828384eb-6643-4fc5-bbb0-b9f6645ad87e" + } + }, + { + "head": { + "id": "574f39f5-4385-4f32-87dd-099f9f4296c2", + "name": "Executing task :entry:default@ProcessRouterMap", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670932660666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "576168db-aade-4593-947a-c48c9d0c175e", + "name": "Incremental task entry:default@ProcessRouterMap pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670933400750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f07767b4-82a7-4a89-931f-41c68fa13fc0", + "name": "entry : default@ProcessRouterMap cost memory 0.14263153076171875", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670933421875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "637f0294-9797-41e0-9ae4-7a0e081eb57f", + "name": "UP-TO-DATE :entry:default@ProcessRouterMap", + "description": "Process router map configuration.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670932655500, + "endTime": 341670933497708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "828384eb-6643-4fc5-bbb0-b9f6645ad87e" + } + }, + { + "head": { + "id": "35e102b6-ad03-4e31-8a27-d8612d68a8d8", + "name": "entry:default@ProcessShareConfig", + "description": "Process share config configuration.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670934000666, + "endTime": 341670934419750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "f4cd9f12-5155-430f-b323-3c792b43d1e3", + "logId": "231675ee-97a4-465b-a7fa-9483c56d50ad" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f4cd9f12-5155-430f-b323-3c792b43d1e3", + "name": "create entry:default@ProcessShareConfig task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670933669208 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "35e102b6-ad03-4e31-8a27-d8612d68a8d8" + } + }, + { + "head": { + "id": "206f3398-49db-489e-8e9c-16b53f80c25f", + "name": "Executing task :entry:default@ProcessShareConfig", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670934007416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7e37c6fa-56c7-41b5-94f6-a54158157c98", + "name": "Incremental task entry:default@ProcessShareConfig pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670934356583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6b13ecb5-81e3-4c77-851a-6e2684b99098", + "name": "entry : default@ProcessShareConfig cost memory 0.122222900390625", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670934375291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "231675ee-97a4-465b-a7fa-9483c56d50ad", + "name": "UP-TO-DATE :entry:default@ProcessShareConfig", + "description": "Process share config configuration.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670934000666, + "endTime": 341670934419750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "35e102b6-ad03-4e31-8a27-d8612d68a8d8" + } + }, + { + "head": { + "id": "e7db4cda-1d83-4f48-b7c8-362ae3edebc9", + "name": "entry:default@ProcessStartupConfig", + "description": "Process startup configuration.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670934848541, + "endTime": 341670935549750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [ + "The output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/startup/default/startup_config.json' does not exist." + ], + "detailId": "af286f1f-481b-45b4-b3e7-2924e3a08526", + "logId": "228f284a-4749-4eb9-84f4-fdee84bd9a32" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "af286f1f-481b-45b4-b3e7-2924e3a08526", + "name": "create entry:default@ProcessStartupConfig task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670934551958 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "e7db4cda-1d83-4f48-b7c8-362ae3edebc9" + } + }, + { + "head": { + "id": "e3cd9b2a-ca59-44fe-87de-764e693e8a22", + "name": "Executing task :entry:default@ProcessStartupConfig", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670934853125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0ecf3a08-0921-442a-be71-f7f4d5196b02", + "name": "Task 'entry:default@ProcessStartupConfig' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670934913666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "22da6d95-cef9-4d5e-b2d9-235c2178c84c", + "name": "entry:default@ProcessStartupConfig is not up-to-date, since the output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/startup/default/startup_config.json' does not exist.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670935102750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "44f5af94-9feb-48ed-95e3-76644ab98683", + "name": "Incremental task entry:default@ProcessStartupConfig pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670935117666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9fabeeca-8ceb-4b80-b443-817891948e98", + "name": "entry : default@ProcessStartupConfig cost memory 0.1179046630859375", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670935524916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d24a0f4a-5c57-48b4-a6d0-d1e65b666e6c", + "name": "runTaskFromQueue task cost before running: 923 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670935540916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "228f284a-4749-4eb9-84f4-fdee84bd9a32", + "name": "Finished :entry:default@ProcessStartupConfig", + "description": "Process startup configuration.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670934848541, + "endTime": 341670935549750, + "totalTime": 687166 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e7db4cda-1d83-4f48-b7c8-362ae3edebc9" + } + }, + { + "head": { + "id": "05513e6f-3acf-4652-9d5d-5943df009aec", + "name": "entry:default@CreateBuildProfile", + "description": "Create the BuildProfile.ets file for the HAP/HSP package.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670936058375, + "endTime": 341670936391208 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "f113e535-f177-45f3-a791-1892da7eb98b", + "logId": "6fd05388-ead9-4e6b-b124-b72ec07ff258" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f113e535-f177-45f3-a791-1892da7eb98b", + "name": "create entry:default@CreateBuildProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670935755291 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "05513e6f-3acf-4652-9d5d-5943df009aec" + } + }, + { + "head": { + "id": "3fc79afc-4e3e-4bf4-9a5c-8eee55b494f5", + "name": "Executing task :entry:default@CreateBuildProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670936062291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "35b8f544-ec73-44f4-a869-7bd8c3ce7641", + "name": "Task 'entry:default@CreateBuildProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670936141833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5b45761a-b7ee-4eaf-8cb7-0a13c1815487", + "name": "Incremental task entry:default@CreateBuildProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670936357916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "836b0815-b4ca-4171-a72c-1b810b638684", + "name": "entry : default@CreateBuildProfile cost memory 0.0775604248046875", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670936377708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6fd05388-ead9-4e6b-b124-b72ec07ff258", + "name": "UP-TO-DATE :entry:default@CreateBuildProfile", + "description": "Create the BuildProfile.ets file for the HAP/HSP package.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670936058375, + "endTime": 341670936391208 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "05513e6f-3acf-4652-9d5d-5943df009aec" + } + }, + { + "head": { + "id": "69092fe8-4056-405f-897c-ebf537f26452", + "name": "xuqmSdk:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670937032041, + "endTime": 341670937156958 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "668d08a5-f6d3-489a-9165-e05faa434a86", + "logId": "81f92b2b-bb11-4fbb-8201-4e1479bc2d49" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "668d08a5-f6d3-489a-9165-e05faa434a86", + "name": "create xuqmSdk:default@BuildNativeWithCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670936613291 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "69092fe8-4056-405f-897c-ebf537f26452" + } + }, + { + "head": { + "id": "051f0bac-f4b6-4478-b807-2ba61eadbc54", + "name": "Executing task :xuqmSdk:default@BuildNativeWithCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670937038583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ce56826c-3e60-4e14-8cd0-fec1abebab51", + "name": "xuqmSdk : default@BuildNativeWithCmake cost memory 0.01360321044921875", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670937117333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e1c3663c-c5d5-47a8-9386-e88745d42b12", + "name": "runTaskFromQueue task cost before running: 924 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670937145708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "81f92b2b-bb11-4fbb-8201-4e1479bc2d49", + "name": "Finished :xuqmSdk:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670937032041, + "endTime": 341670937156958, + "totalTime": 104708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "69092fe8-4056-405f-897c-ebf537f26452" + } + }, + { + "head": { + "id": "4588197e-9160-4b4b-b179-ffb5ca732324", + "name": "entry:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670937432333, + "endTime": 341670938139625 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Config", + "taskRunReasons": [], + "detailId": "2035cf5e-3f14-4f1e-8314-54a59256b9db", + "logId": "9fcd06aa-0cab-4be2-99e4-a82946cd38b3" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2035cf5e-3f14-4f1e-8314-54a59256b9db", + "name": "create entry:default@MergeProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670937266083 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "4588197e-9160-4b4b-b179-ffb5ca732324" + } + }, + { + "head": { + "id": "5638a38a-c4be-4551-86b9-93329bf53b2f", + "name": "Executing task :entry:default@MergeProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670937437500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e4bc4513-339c-4faf-aadd-eef18443fae6", + "name": "Task 'entry:default@MergeProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670937705541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "77033734-45bd-4d53-99fb-b3251ed11836", + "name": "Incremental task entry:default@MergeProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670938107583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c40f94ea-2a08-4c5c-9c07-a684b227b85c", + "name": "entry : default@MergeProfile cost memory 0.11980438232421875", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670938127250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9fcd06aa-0cab-4be2-99e4-a82946cd38b3", + "name": "UP-TO-DATE :entry:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670937432333, + "endTime": 341670938139625 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "4588197e-9160-4b4b-b179-ffb5ca732324" + } + }, + { + "head": { + "id": "d7d84a23-e8f3-48c1-9cea-c9984c9f93d0", + "name": "entry:default@GenerateLoaderJson", + "description": "Generate loader.json in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670938995750, + "endTime": 341670941303291 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "bc4c9287-1f69-4760-a4b8-5ae69a660de5", + "logId": "5374968a-e514-4728-ad49-b0a0c7bfc75f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "bc4c9287-1f69-4760-a4b8-5ae69a660de5", + "name": "create entry:default@GenerateLoaderJson task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670938315958 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "d7d84a23-e8f3-48c1-9cea-c9984c9f93d0" + } + }, + { + "head": { + "id": "2d052239-bf26-488d-aa86-16cbca9a5372", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670938703333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9f00f029-4bd1-4bf7-9367-5961d2ca9a66", + "name": "Executing task :entry:default@GenerateLoaderJson", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670938998708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2eaaffe1-5faf-4acc-b1d0-511c23a7a946", + "name": "Task 'entry:default@GenerateLoaderJson' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670939433291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dce7be20-ef59-4238-979c-a83ca5580fc2", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670939772916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "851b76ed-b52d-4d8c-b49a-c8216dd42e9d", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670940393541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dd64b304-bb0e-43bb-9aaa-54ed59ca0484", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670940763000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b6e1c380-5498-4da0-839d-0d547b6fa14e", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670940901375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "19f2ae74-ccbf-4208-b4ca-a96540b4a827", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670940992041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d4915ebf-c9e9-486f-bd3f-ae559294f0cd", + "name": "Incremental task entry:default@GenerateLoaderJson pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670941264083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f99d2b3b-22e3-4403-8727-cfba7c113023", + "name": "entry : default@GenerateLoaderJson cost memory 0.61700439453125", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670941288750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5374968a-e514-4728-ad49-b0a0c7bfc75f", + "name": "UP-TO-DATE :entry:default@GenerateLoaderJson", + "description": "Generate loader.json in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670938995750, + "endTime": 341670941303291 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "d7d84a23-e8f3-48c1-9cea-c9984c9f93d0" + } + }, + { + "head": { + "id": "fe7f96a3-2cd3-4338-966a-c9cb8b51b502", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670941555083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "31bcc762-ddbd-436a-b3d2-4d3a63187cf2", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670941657041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6fb5fb90-fa9d-486d-bccc-b1888d41a7df", + "name": "xuqmSdk:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670942230666, + "endTime": 341670942405916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "b564f2cb-02d7-4f2f-8714-18f4e80b65de", + "logId": "fcedae91-c31d-4895-9993-1bbf43f418ed" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b564f2cb-02d7-4f2f-8714-18f4e80b65de", + "name": "create xuqmSdk:default@BuildNativeWithNinja task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670941855875 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "6fb5fb90-fa9d-486d-bccc-b1888d41a7df" + } + }, + { + "head": { + "id": "6f400e49-955b-48ee-a049-4b06977faf7f", + "name": "Executing task :xuqmSdk:default@BuildNativeWithNinja", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670942234125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c9cca3b8-91ab-4e81-a569-6db3fa178da5", + "name": "xuqmSdk : default@BuildNativeWithNinja cost memory 0.0190582275390625", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670942373875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c836df00-01d7-47ed-9348-cb4e9417fbd0", + "name": "runTaskFromQueue task cost before running: 930 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670942395791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fcedae91-c31d-4895-9993-1bbf43f418ed", + "name": "Finished :xuqmSdk:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670942230666, + "endTime": 341670942405916, + "totalTime": 156000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "6fb5fb90-fa9d-486d-bccc-b1888d41a7df" + } + }, + { + "head": { + "id": "1348e1d8-1414-4dd9-b5eb-9348372342f2", + "name": "entry:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670942669583, + "endTime": 341670942727916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "adde3353-b136-46e2-837e-25e5fee04bdc", + "logId": "a472ca40-c49f-4e95-83de-2bbb6c64b785" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "adde3353-b136-46e2-837e-25e5fee04bdc", + "name": "create entry:default@ConfigureCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670942515375 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "1348e1d8-1414-4dd9-b5eb-9348372342f2" + } + }, + { + "head": { + "id": "fc3c3833-4614-4cef-bcba-f9cf5ea73f3a", + "name": "Executing task :entry:default@ConfigureCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670942672291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fc59ca98-eb0c-43d8-9c4a-e9d13a0f838d", + "name": "entry : default@ConfigureCmake cost memory 0.0121307373046875", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670942704916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "89bf6c25-a7ef-475d-8765-1301e4c20f45", + "name": "runTaskFromQueue task cost before running: 930 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670942719791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a472ca40-c49f-4e95-83de-2bbb6c64b785", + "name": "Finished :entry:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670942669583, + "endTime": 341670942727916, + "totalTime": 44375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "1348e1d8-1414-4dd9-b5eb-9348372342f2" + } + }, + { + "head": { + "id": "3b7d4227-f723-48db-9c13-9bd056a2f4ad", + "name": "entry:default@MakePackInfo", + "description": "Generate module pack.info in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670943243500, + "endTime": 341670943671041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "e14a7e61-0c6f-4c00-9e0f-62539b522410", + "logId": "80e5e6e0-f199-45fa-8a90-0edb47f436fa" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e14a7e61-0c6f-4c00-9e0f-62539b522410", + "name": "create entry:default@MakePackInfo task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670942957416 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "3b7d4227-f723-48db-9c13-9bd056a2f4ad" + } + }, + { + "head": { + "id": "6496d2a1-8137-4d5b-a902-0c58a60c6a26", + "name": "Executing task :entry:default@MakePackInfo", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670943246291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b030d29c-d4ab-4767-a429-a37c982a40aa", + "name": "Incremental task entry:default@MakePackInfo pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670943641916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f51a5d4c-c3c9-47be-b965-7be0bed02905", + "name": "entry : default@MakePackInfo cost memory 0.09134674072265625", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670943659166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "80e5e6e0-f199-45fa-8a90-0edb47f436fa", + "name": "UP-TO-DATE :entry:default@MakePackInfo", + "description": "Generate module pack.info in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670943243500, + "endTime": 341670943671041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3b7d4227-f723-48db-9c13-9bd056a2f4ad" + } + }, + { + "head": { + "id": "a2477621-22ef-4c1a-9b3d-83b22c333cf9", + "name": "entry:default@ProcessProfile", + "description": "Process app config manifest files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670944287666, + "endTime": 341670945140708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Config", + "taskRunReasons": [], + "detailId": "68a2520d-7083-4c3d-8fcb-f59a4820f4ba", + "logId": "0ec93321-4805-44f7-bfee-cb8265db9005" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "68a2520d-7083-4c3d-8fcb-f59a4820f4ba", + "name": "create entry:default@ProcessProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670943787458 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "a2477621-22ef-4c1a-9b3d-83b22c333cf9" + } + }, + { + "head": { + "id": "cf423a1c-ce88-4708-8745-887f55f60052", + "name": "Executing task :entry:default@ProcessProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670944291250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dc161c99-2e2e-484f-8d16-167a6c040c38", + "name": "Task 'entry:default@ProcessProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670944785666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "305933a0-63b4-4635-b006-c5c4f8397ac9", + "name": "Incremental task entry:default@ProcessProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670945111583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "59f24586-4ffa-47dd-b211-be86c2a95685", + "name": "entry : default@ProcessProfile cost memory 0.116119384765625", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670945129208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0ec93321-4805-44f7-bfee-cb8265db9005", + "name": "UP-TO-DATE :entry:default@ProcessProfile", + "description": "Process app config manifest files in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670944287666, + "endTime": 341670945140708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "a2477621-22ef-4c1a-9b3d-83b22c333cf9" + } + }, + { + "head": { + "id": "f6cf4a49-85d8-4318-a05b-d7779442be8c", + "name": "xuqmSdk:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670945520541, + "endTime": 341670946094500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Resources", + "taskRunReasons": [], + "detailId": "963a54d8-d850-43a4-832b-d24cb10dc5ea", + "logId": "047fc116-801d-4461-953b-6c6858ba4362" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "963a54d8-d850-43a4-832b-d24cb10dc5ea", + "name": "create xuqmSdk:default@ProcessLibs task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670945240000 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "f6cf4a49-85d8-4318-a05b-d7779442be8c" + } + }, + { + "head": { + "id": "f12d3c20-ae7c-4a86-9196-da4a860ac012", + "name": "Executing task :xuqmSdk:default@ProcessLibs", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670945523708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f897cff0-c770-40e6-8319-6c58a87de5f9", + "name": "Incremental task xuqmSdk:default@ProcessLibs pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670946067333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d184c8f2-f48c-4234-bbf2-3bde3e185057", + "name": "xuqmSdk : default@ProcessLibs cost memory 0.0826416015625", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670946083750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "047fc116-801d-4461-953b-6c6858ba4362", + "name": "UP-TO-DATE :xuqmSdk:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670945520541, + "endTime": 341670946094500 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f6cf4a49-85d8-4318-a05b-d7779442be8c" + } + }, + { + "head": { + "id": "e1d13b51-bf60-4198-93f6-10d346fcada4", + "name": "entry:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670946262833, + "endTime": 341670946332000 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "75f01164-c1e5-4b1f-afee-377dde646a27", + "logId": "fa30d2b9-4711-48ea-ba00-b74ce5dcdac4" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "75f01164-c1e5-4b1f-afee-377dde646a27", + "name": "create entry:default@BuildNativeWithCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670946186916 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "e1d13b51-bf60-4198-93f6-10d346fcada4" + } + }, + { + "head": { + "id": "f7a62759-e637-419f-bfea-ff592f5e8b82", + "name": "Executing task :entry:default@BuildNativeWithCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670946264666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ebce7128-5009-42ff-a612-334a17d96ac9", + "name": "entry : default@BuildNativeWithCmake cost memory 0.012054443359375", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670946294791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2605cc10-6609-41ad-adb7-0cabf617d1c9", + "name": "runTaskFromQueue task cost before running: 933 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670946322166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fa30d2b9-4711-48ea-ba00-b74ce5dcdac4", + "name": "Finished :entry:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670946262833, + "endTime": 341670946332000, + "totalTime": 40041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e1d13b51-bf60-4198-93f6-10d346fcada4" + } + }, + { + "head": { + "id": "413d360f-3de4-4dd0-815f-705fb2c11302", + "name": "entry:default@ProcessResource", + "description": "Process resources in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670947104708, + "endTime": 341670947925208 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [], + "detailId": "41fd764c-280a-4709-96d4-2bf0168d55c4", + "logId": "283a54e2-efe2-41b0-85af-24e841642b0f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "41fd764c-280a-4709-96d4-2bf0168d55c4", + "name": "create entry:default@ProcessResource task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670946448625 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "413d360f-3de4-4dd0-815f-705fb2c11302" + } + }, + { + "head": { + "id": "113e4a92-04c1-45ec-8e9e-6102485f5cb5", + "name": "restool module names: entry,xuqmSdk; moduleName=entry, taskName=default@ProcessResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670946681958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a5bb3560-d2b9-413b-a425-8f71ad717604", + "name": "Executing task :entry:default@ProcessResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670947508875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "de770fff-cc06-4242-8f90-6ef696285847", + "name": "Task 'entry:default@ProcessResource' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670947549208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "157bf787-9b88-4eb7-b112-eb2f0bd7f8cb", + "name": "Incremental task entry:default@ProcessResource pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670947765208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "24881652-871c-4075-abea-4c74d1e7b13f", + "name": "entry : default@ProcessResource cost memory 0.110565185546875", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670947842375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "283a54e2-efe2-41b0-85af-24e841642b0f", + "name": "UP-TO-DATE :entry:default@ProcessResource", + "description": "Process resources in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670947104708, + "endTime": 341670947925208 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "413d360f-3de4-4dd0-815f-705fb2c11302" + } + }, + { + "head": { + "id": "6c9b7d9f-a5f6-4a22-a20c-44f185a7f1a5", + "name": "xuqmSdk:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670948332583, + "endTime": 341670948554041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "b843a960-6878-4e8f-b85e-df1f6563a8e8", + "logId": "d4bb4671-5a3a-41f9-9161-edc76a3de0f3" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b843a960-6878-4e8f-b85e-df1f6563a8e8", + "name": "create xuqmSdk:default@DoNativeStrip task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670948080000 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "6c9b7d9f-a5f6-4a22-a20c-44f185a7f1a5" + } + }, + { + "head": { + "id": "0b218b8d-9402-4bf9-b81b-77fad4ad98d1", + "name": "Executing task :xuqmSdk:default@DoNativeStrip", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670948335291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c3666ae3-999e-4536-996d-9fde4eb903fe", + "name": "Task 'xuqmSdk:default@DoNativeStrip' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670948375333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e3ccdf16-47e8-4121-a190-26ed10cc1448", + "name": "Incremental task xuqmSdk:default@DoNativeStrip pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670948529291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b75315d3-e742-4cbd-8fad-a277ade70066", + "name": "xuqmSdk : default@DoNativeStrip cost memory 0.05980682373046875", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670948544041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d4bb4671-5a3a-41f9-9161-edc76a3de0f3", + "name": "UP-TO-DATE :xuqmSdk:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670948332583, + "endTime": 341670948554041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "6c9b7d9f-a5f6-4a22-a20c-44f185a7f1a5" + } + }, + { + "head": { + "id": "0a7a9444-82c7-4b4e-be8b-c74c4e0a766e", + "name": "entry:default@CompileResource", + "description": "Compile project resources in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670949000750, + "endTime": 341670950761458 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [], + "detailId": "9caff4fe-b557-4713-8702-823746689730", + "logId": "3b9490ad-9b1b-4b01-b4a5-5dc103494d87" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9caff4fe-b557-4713-8702-823746689730", + "name": "create entry:default@CompileResource task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670948637958 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "0a7a9444-82c7-4b4e-be8b-c74c4e0a766e" + } + }, + { + "head": { + "id": "43509438-3fde-46e9-978e-609754c1b48e", + "name": "restool module names: entry,xuqmSdk; moduleName=entry, taskName=default@CompileResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670948743291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1213876a-bf7b-4b35-ab30-e618cbe6a0be", + "name": "Executing task :entry:default@CompileResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670949020375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "40d797cf-28c9-4de9-a607-579499419c30", + "name": "Incremental task entry:default@CompileResource pre-execution cost: 2 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670950716958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c2bd094d-d824-4440-8ebc-e7dbbefb1f8e", + "name": "entry : default@CompileResource cost memory 0.5716552734375", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670950743291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3b9490ad-9b1b-4b01-b4a5-5dc103494d87", + "name": "UP-TO-DATE :entry:default@CompileResource", + "description": "Compile project resources in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670949000750, + "endTime": 341670950761458 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "0a7a9444-82c7-4b4e-be8b-c74c4e0a766e" + } + }, + { + "head": { + "id": "a1d029c5-2f9a-4b72-9580-dfb6bd1b9231", + "name": "entry:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670950980625, + "endTime": 341670951066750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "b817fb33-8262-47f4-97ab-af7b6febbe71", + "logId": "6f3ef189-fcd8-4cc0-acad-b8607eed0c5a" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b817fb33-8262-47f4-97ab-af7b6febbe71", + "name": "create entry:default@BuildNativeWithNinja task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670950915791 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "a1d029c5-2f9a-4b72-9580-dfb6bd1b9231" + } + }, + { + "head": { + "id": "7e3a6c43-5ca4-49a2-842f-0aa41d125456", + "name": "Executing task :entry:default@BuildNativeWithNinja", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670950983416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "87740cb0-e069-4fed-ad72-f709b288652f", + "name": "entry : default@BuildNativeWithNinja cost memory 0.0177764892578125", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670951045666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1e772bd1-c166-4b87-9052-039a587b31c8", + "name": "runTaskFromQueue task cost before running: 938 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670951058791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6f3ef189-fcd8-4cc0-acad-b8607eed0c5a", + "name": "Finished :entry:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670950980625, + "endTime": 341670951066750, + "totalTime": 73875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "a1d029c5-2f9a-4b72-9580-dfb6bd1b9231" + } + }, + { + "head": { + "id": "07bfe196-7b2d-4dcb-9684-9531eba26a53", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670951608791, + "endTime": 341673732394791 + }, + "additional": { + "children": [ + "80f615a8-86a7-49aa-af26-ff8260c5921f", + "32a5a633-25be-4b2b-9e3b-7fab8b862160" + ], + "state": "failed", + "targetName": "default", + "moduleName": "entry", + "category": "ArkTS", + "taskRunReasons": [], + "detailId": "712635dd-d494-426c-9b6c-4fd2d7f9ff2f", + "logId": "c8ef4ab8-0311-4024-849e-46b3704e2060" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "712635dd-d494-426c-9b6c-4fd2d7f9ff2f", + "name": "create entry:default@CompileArkTS task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670951253583 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "07bfe196-7b2d-4dcb-9684-9531eba26a53" + } + }, + { + "head": { + "id": "bd8ca0c8-7ac9-40dd-a234-19ae87527fe8", + "name": "Executing task :entry:default@CompileArkTS", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670951611916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ed3f67e2-6863-49ea-83fe-5aa4ae2ed525", + "name": "obfuscationOptions: undefined", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670951865291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c1bc6eb5-e337-41c4-8c09-91e1b14f558d", + "name": "Task 'entry:default@CompileArkTS' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670952633250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9676c97f-1091-4f26-ac8f-cbe126d56c83", + "name": "build config:", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670956519750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2249cf0a-c868-4e51-a6ff-87a5191d25ef", + "name": "Compile arkts with external api path: /Users/xuqinmin/sdk/command-line-tools/sdk/default/hms/ets", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670957122458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "37c101b0-1d53-4ce2-beb3-720906d570d7", + "name": "Since there is no instance or instance is terminated, create a new worker pool.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670957381250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6db74a10-0b8a-460a-ac41-90c919371274", + "name": "Worker pool is initialized with config: {\n minPoolNum: 2,\n maxPoolNum: undefined,\n maxCoreSize: undefined,\n cacheCapacity: undefined,\n cacheTtl: undefined\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670957424000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b3952a3d-d7f1-4dae-89d2-092a662ef5d7", + "name": "Create resident worker with id: 0.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670958126208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f09ac443-25fc-49a7-9acc-540e2de66d7d", + "name": "Create resident worker with id: 1.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670959020750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8944cb32-9322-4850-b52a-f7f266f23af2", + "name": "default@CompileArkTS work[0] is submitted.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670959894166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "80f615a8-86a7-49aa-af26-ff8260c5921f", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Worker4", + "startTime": 341670960521791, + "endTime": 341673732240125 + }, + "additional": { + "children": [], + "state": "failed", + "targetName": "default", + "moduleName": "entry", + "category": "", + "taskRunReasons": [], + "parent": "07bfe196-7b2d-4dcb-9684-9531eba26a53", + "logId": "083868c0-cd5d-4c12-90a5-d46b71bfe897" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "287998dc-ce85-4a5a-8563-4df37c780c8d", + "name": "default@CompileArkTS work[0] is pushed to ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960061833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "682fca39-df84-4f0a-af5f-2490603f3d42", + "name": "A work dispatched to worker[13] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960134416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f51c1aa7-30fd-4882-9e53-1de963d706f8", + "name": "A work dispatched to worker[12] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960143750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7efafe2a-ee75-449c-85dc-6d3f8003890f", + "name": "A work dispatched to worker[11] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960150875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c474fe58-62c2-44c6-960c-7433e36b78b4", + "name": "A work dispatched to worker[10] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960157375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1451f4b0-4cc6-44db-b105-511341ba07d8", + "name": "A work dispatched to worker[9] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960163166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "67c61c79-c464-44d2-8447-7ffd6675aed7", + "name": "A work dispatched to worker[8] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960169000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "32ed2dbb-89c9-4855-b303-6f1ca7155411", + "name": "A work dispatched to worker[7] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960176041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8d744edf-5fd9-40ff-82eb-78797d7be205", + "name": "A work dispatched to worker[6] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960182708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "20bbb6d4-cd42-4f28-a3a0-ec5945d8b92b", + "name": "A work dispatched to worker[5] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960190750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6cff2d3b-ea25-4b67-a4c4-8fd7737a1a50", + "name": "Create resident worker with id: 4.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960238083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7a03404a-fa51-4b1a-8334-36eb9fc294e8", + "name": "default@CompileArkTS work[0] has been dispatched to worker[4].", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960533250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "00241f1a-31cd-4f38-9d09-55bd17aa8136", + "name": "default@CompileArkTS work[0] is dispatched.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960565583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1997d0f4-ec88-424e-85fe-4d523c9a2e76", + "name": "CopyResources startTime: 341670960596666", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960598041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fb5957fb-5797-4acb-ad06-3bad9804bd1a", + "name": "default@CompileArkTS work[1] is submitted.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960612833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "32a5a633-25be-4b2b-9e3b-7fab8b862160", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Worker12", + "startTime": 341671202192375, + "endTime": 341671206436500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "", + "taskRunReasons": [], + "parent": "07bfe196-7b2d-4dcb-9684-9531eba26a53", + "logId": "dfc5cc14-b0a5-4908-a2b5-7c153a35d965" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8a2fae04-02f9-45d9-9063-708f59964f6c", + "name": "default@CompileArkTS work[1] is pushed to ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960721958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d3f18948-df29-47ec-bd19-452dfe48cfa4", + "name": "A work dispatched to worker[13] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960730791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cbbd093f-6d74-46f4-b075-43e1785e97a6", + "name": "Create resident worker with id: 12.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960740791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5ab35cf9-9532-4acd-9be6-94a76fc23507", + "name": "default@CompileArkTS work[1] has been dispatched to worker[12].", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670960993625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "618fc6fd-569f-42a1-b838-b484119451f6", + "name": "default@CompileArkTS work[1] is dispatched.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670961003708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e7e7b94a-0175-4cf1-813b-469d76b4cd1a", + "name": "entry : default@CompileArkTS cost memory 2.0888748168945312", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670961077791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f89ee686-e020-4309-b798-c0895648547c", + "name": "entry:default@BuildJS", + "description": "Compile ArkTS or JS components using Node.js for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670961650458, + "endTime": 341670962184000 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "ArkTS", + "taskRunReasons": [], + "detailId": "4b26a39a-ce61-49bd-96b3-d6ec60d174f2", + "logId": "66025f21-6e5e-49b1-b0fd-597a77f21fc1" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "4b26a39a-ce61-49bd-96b3-d6ec60d174f2", + "name": "create entry:default@BuildJS task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670961212041 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "f89ee686-e020-4309-b798-c0895648547c" + } + }, + { + "head": { + "id": "18c0e01e-0546-44ee-adfd-c2b63b088c3d", + "name": "Executing task :entry:default@BuildJS", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670961654333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "16017a71-3fb5-488c-be82-4461b45208b6", + "name": "Task 'entry:default@BuildJS' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670961719375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "43a34d91-9fa8-476d-95b6-57ff47943b63", + "name": "entry : default@BuildJS cost memory 0.13243865966796875", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670962153833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b6091a24-4772-4a41-9fca-d4e2783fd5fa", + "name": "runTaskFromQueue task cost before running: 949 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670962171708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "66025f21-6e5e-49b1-b0fd-597a77f21fc1", + "name": "Finished :entry:default@BuildJS", + "description": "Compile ArkTS or JS components using Node.js for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670961650458, + "endTime": 341670962184000, + "totalTime": 515791 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f89ee686-e020-4309-b798-c0895648547c" + } + }, + { + "head": { + "id": "a29ed5ea-796c-49a1-beb6-8b6b2fe3545f", + "name": "entry:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670962356000, + "endTime": 341670963737541 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [], + "detailId": "fc0ada02-6406-4270-a856-d72a1df272fe", + "logId": "684d8dce-9e91-4d2b-92fe-1d57748228f9" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "fc0ada02-6406-4270-a856-d72a1df272fe", + "name": "create entry:default@ProcessLibs task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670962263541 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "a29ed5ea-796c-49a1-beb6-8b6b2fe3545f" + } + }, + { + "head": { + "id": "8352c04f-ddd1-480d-8800-ed5714d8f255", + "name": "Executing task :entry:default@ProcessLibs", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670962357958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "058ba639-5fd2-4c97-b712-5d99c4452428", + "name": "Incremental task entry:default@ProcessLibs pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670963702375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3671933d-f4a8-43d5-b90d-404ee6b2181e", + "name": "entry : default@ProcessLibs cost memory 0.2199554443359375", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670963727000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "684d8dce-9e91-4d2b-92fe-1d57748228f9", + "name": "UP-TO-DATE :entry:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670962356000, + "endTime": 341670963737541 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "a29ed5ea-796c-49a1-beb6-8b6b2fe3545f" + } + }, + { + "head": { + "id": "4d2b9902-b1bb-4b6d-8670-36f6f4632e2d", + "name": "entry:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670963926000, + "endTime": 341670964114458 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "41e42c98-7543-4706-ae2d-da5411cd2f77", + "logId": "967ade9d-1701-4742-8144-bd169251d8d9" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "41e42c98-7543-4706-ae2d-da5411cd2f77", + "name": "create entry:default@DoNativeStrip task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670963829750 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "4d2b9902-b1bb-4b6d-8670-36f6f4632e2d" + } + }, + { + "head": { + "id": "13e69fc5-3522-43a5-98fd-6f37becc0ca4", + "name": "Executing task :entry:default@DoNativeStrip", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670963928166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8f757ac9-b6da-4bc1-bd86-5dbd0340eb3f", + "name": "Task 'entry:default@DoNativeStrip' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670963957166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5d930152-aee6-40aa-a4ed-68589397adfa", + "name": "Incremental task entry:default@DoNativeStrip pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670964093583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "eba2175e-1412-4ed6-a778-644af7d7c66c", + "name": "entry : default@DoNativeStrip cost memory 0.0579681396484375", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670964106125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "967ade9d-1701-4742-8144-bd169251d8d9", + "name": "UP-TO-DATE :entry:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670963926000, + "endTime": 341670964114458 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "4d2b9902-b1bb-4b6d-8670-36f6f4632e2d" + } + }, + { + "head": { + "id": "b0e5e20c-5233-432e-9bda-54a74eb58877", + "name": "entry:default@CacheNativeLibs", + "description": "cache native strip .so fileInfo", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670964502000, + "endTime": 341670964724041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "2259be5d-189e-4e18-a9ef-7ecf59ed724f", + "logId": "844d96de-4959-4387-8824-ef6a87d34b41" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2259be5d-189e-4e18-a9ef-7ecf59ed724f", + "name": "create entry:default@CacheNativeLibs task", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670964187333 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "b0e5e20c-5233-432e-9bda-54a74eb58877" + } + }, + { + "head": { + "id": "fca3e201-e5c0-4617-b2d7-e4e4948c8ea6", + "name": "Executing task :entry:default@CacheNativeLibs", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670964507708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "36585cd7-277b-43b4-aaac-03ec04a3fe24", + "name": "Task 'entry:default@CacheNativeLibs' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670964556375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d880fa6f-19e3-4e71-b679-74d33387f576", + "name": "Incremental task entry:default@CacheNativeLibs pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670964701916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d0e48248-a9b4-4a6d-ba4e-9bb5cdebd91c", + "name": "entry : default@CacheNativeLibs cost memory 0.06749725341796875", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670964714666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "844d96de-4959-4387-8824-ef6a87d34b41", + "name": "UP-TO-DATE :entry:default@CacheNativeLibs", + "description": "cache native strip .so fileInfo", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670964502000, + "endTime": 341670964724041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "b0e5e20c-5233-432e-9bda-54a74eb58877" + } + }, + { + "head": { + "id": "479d5f9f-6bab-47d1-a8c0-000d33e009e4", + "name": "worker[12] has one work done.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341671206644125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "aa94f378-3457-4806-92ee-19dee2eaada9", + "name": "CopyResources is end, endTime: 341671206728458", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341671206730791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b20ae9c2-4aca-4af7-bddd-386c82a78962", + "name": "default@CompileArkTS work[1] done.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341671206837541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dfc5cc14-b0a5-4908-a2b5-7c153a35d965", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Worker12", + "startTime": 341671202192375, + "endTime": 341671206436500 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "32a5a633-25be-4b2b-9e3b-7fab8b862160", + "parent": "c8ef4ab8-0311-4024-849e-46b3704e2060" + } + }, + { + "head": { + "id": "1399dee9-8ad7-427e-861f-f991ea5a8739", + "name": "A work dispatched to worker[12] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341671206915458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "66b84229-e584-4608-91f1-a9b8bfd7b152", + "name": "worker[4] has one work error.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673732116416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "368b8213-84f4-464c-b0be-d1d78c0f40fb", + "name": "default@CompileArkTS work[0] failed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673732309375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "083868c0-cd5d-4c12-90a5-d46b71bfe897", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Worker4", + "startTime": 341670960521791, + "endTime": 341673732240125 + }, + "additional": { + "logType": "error", + "children": [], + "durationId": "80f615a8-86a7-49aa-af26-ff8260c5921f", + "parent": "c8ef4ab8-0311-4024-849e-46b3704e2060" + } + }, + { + "head": { + "id": "c8ef4ab8-0311-4024-849e-46b3704e2060", + "name": "Failed :entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670951608791, + "endTime": 341673732394791 + }, + "additional": { + "logType": "error", + "children": [ + "083868c0-cd5d-4c12-90a5-d46b71bfe897", + "dfc5cc14-b0a5-4908-a2b5-7c153a35d965" + ], + "durationId": "07bfe196-7b2d-4dcb-9684-9531eba26a53" + } + }, + { + "head": { + "id": "70b33a86-b555-4118-b13c-8f32142c4ea6", + "name": "\n\u001b[33m1 WARN: \u001b[33m\u001b[33mArkTS:WARN: For details about ArkTS syntax errors, see FAQs\u001b[39m\u001b[39m\n\u001b[33m2 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:28:30\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m3 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:29:25\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m4 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:37:15\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m5 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:39:15\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m6 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/SDKContext.ets:41:13\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m7 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/core/HttpClient.ets:32:25\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m8 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:162:5\n Function may throw exceptions. Special handling is required.\n\u001b[39m\u001b[39m\n\u001b[33m9 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:53:22\n 'showToast' has been deprecated.\n\u001b[39m\u001b[39m\n\u001b[33m10 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:63:22\n 'showToast' has been deprecated.\n\u001b[39m\u001b[39m\n\u001b[33m11 WARN: \u001b[33m\u001b[33mArkTS:WARN File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets/pages/Index.ets:124:28\n 'showToast' has been deprecated.\n\u001b[39m\u001b[39m", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673732444583 + }, + "additional": { + "logType": "warn", + "children": [] + } + }, + { + "head": { + "id": "a0d55f76-a699-4eaa-b6d0-563b6e080488", + "name": "hvigor build process will be closed with an error.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673732618500 + }, + "additional": { + "logType": "debug", + "children": [], + "durationId": "07bfe196-7b2d-4dcb-9684-9531eba26a53" + } + }, + { + "head": { + "id": "125b99f5-5858-4c45-bc27-272702b4fc7e", + "name": "Error: ArkTS Compiler Error\n\u001b[31m1 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:33:21\n\u001b[39m\n\u001b[39m\n\u001b[31m2 ERROR: \u001b[31m10605038 ArkTS Compiler Error\nError Message: Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-obj-literals) At File: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets/im/ImClient.ets:38:21\n\u001b[39m\n\u001b[39m\n\u001b[31mCOMPILE RESULT:FAIL {ERROR:3 WARN:11}\u001b[39m\n at runArkPack (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/arkts-pack.js:1:5860)\nArkTSCompilerError: ArkTS Compiler Error\n at throwArkTsCompilerError (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/data/compose-error.js:1:423)\n at throwErrorIfHasErrorInfo (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/plugins/common-plugin.js:1:4478)\n at Object.handler (/Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-compose/dist/src/plugins/common-plugin.js:1:2547)\n at /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/node_modules/@ohos/hvigor-arkts-base/node_modules/rollup/dist/shared/rollup.js:27765:40", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673732984750 + }, + "additional": { + "logType": "error", + "children": [], + "durationId": "07bfe196-7b2d-4dcb-9684-9531eba26a53" + } + }, + { + "head": { + "id": "ec2ff9c6-18d9-444b-ad9c-15409af01246", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673733390125, + "endTime": 341673733597166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "cdbeb459-ef32-4356-973d-75c3bed5f27a", + "logId": "98f645fb-e2c3-4a18-9ae2-3e5606693959" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "98f645fb-e2c3-4a18-9ae2-3e5606693959", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673733390125, + "endTime": 341673733597166 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ec2ff9c6-18d9-444b-ad9c-15409af01246" + } + }, + { + "head": { + "id": "b66ff87c-5e3a-4fbd-9a70-11a18af2db80", + "name": "assembleHap", + "description": "", + "type": "mark" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341670013318833, + "endTime": 341673733932791 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 21, + "second": 40 + }, + "completeCommand": "{\"prop\":[],\"stacktrace\":true,\"_\":[\"assembleHap\"]};assembleHap --stacktrace", + "hvigorVersion": "6.22.4", + "markType": "history", + "nodeVersion": "v18.20.1", + "category": "build", + "state": "failed" + } + }, + { + "head": { + "id": "b63b6003-2459-4668-a5a3-f3b47f66d3cd", + "name": "BUILD FAILED in 3 s 721 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673733948541 + }, + "additional": { + "logType": "error", + "children": [] + } + }, + { + "head": { + "id": "c47c0e2e-376c-46ea-adf9-9ea8245e6206", + "name": "There is no need to refresh cache, since the incremental task entry:default@PreBuild is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734041208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c765e5cc-3a2f-419e-ba5b-9965904a406f", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@PreBuild is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734051333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6820af1b-7984-4f52-8417-e62dde37435a", + "name": "Update task entry:default@CreateModuleInfo output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/ModuleInfo.ts cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734099916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "eda0076c-86db-4d6f-8419-046981273a39", + "name": "Incremental task entry:default@CreateModuleInfo post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734207291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "90ba39f6-4c6a-4c6b-801d-2e9024762834", + "name": "There is no need to refresh cache, since the incremental task entry:default@GenerateMetadata is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734219041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a8fe48c7-3b27-449b-8409-187bfc3d70e2", + "name": "There is no need to refresh cache, since the incremental task entry:default@GeneratePkgContextInfo is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734229666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "397a8913-8043-48d0-8903-8b93b3b8511e", + "name": "Update task entry:default@ProcessIntegratedHsp output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build/cache/default/integrated_hsp/integratedHspCache.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734270083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4f6ae803-6b48-47d4-9881-1188e48d8014", + "name": "Incremental task entry:default@ProcessIntegratedHsp post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734301958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "eba1702d-24c3-438c-b4e8-b1e70625df2f", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@CreateHarBuildProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734311375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "707d1380-5a8c-499d-9ddc-6ec78864af2e", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@MergeProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734322750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "85bc8771-00a9-4562-a216-c4057754d6f5", + "name": "Update task entry:default@SyscapTransform input file:/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/syscap_tool cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734346666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "162c8dc7-689f-47a3-9074-7e5dd854174e", + "name": "Update task entry:default@SyscapTransform input file:/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/ets/api/device-define cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734419916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0b0418b2-4655-427f-b76c-95c02de592c2", + "name": "Update task entry:default@SyscapTransform output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/syscap/default/rpcid.sc cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734613875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9d3ea98e-2fef-428c-9be7-578868f1be98", + "name": "Incremental task entry:default@SyscapTransform post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734655500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d1179a93-188e-4df3-a3ad-ebdc3aae8f87", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessRouterMap is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734665916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f0d547f5-ad62-478b-b20a-23ccbbba314c", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessShareConfig is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734675250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cecceb81-d505-4125-86d4-30c18beee0a6", + "name": "Update task entry:default@ProcessStartupConfig input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734750291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fae58ae5-b3eb-42ff-acad-dfa1a72b0641", + "name": "Update task entry:default@ProcessStartupConfig output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/startup/default/startup_config.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734774750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "64c15494-8f32-4fe6-a72b-e2af0b0298f6", + "name": "Incremental task entry:default@ProcessStartupConfig post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734803666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "924b9a6f-47c7-45b2-8dea-bab44dff57bd", + "name": "There is no need to refresh cache, since the incremental task entry:default@CreateBuildProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734827041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "861567be-520b-40c2-83a8-7fcdd5f67e24", + "name": "There is no need to refresh cache, since the incremental task entry:default@MergeProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734848958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "10fae74d-5baf-48e4-8929-7d91a91bca2f", + "name": "There is no need to refresh cache, since the incremental task entry:default@GenerateLoaderJson is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734862666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "74072a41-8c38-4ae8-b80d-fdb85ec6ef8d", + "name": "There is no need to refresh cache, since the incremental task entry:default@MakePackInfo is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734871875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4db658ed-0e74-4c27-82f9-e04a4199239f", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734879541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "78315699-c4d6-484d-ac0c-6b9ccc5ecc68", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@ProcessLibs is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734892291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4f1f6fd3-9857-480f-ac05-0222ed065492", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessResource is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734904541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f4270737-248c-4174-a887-02226cec83ac", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@DoNativeStrip is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734913833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "69ecc3d5-7bc0-4528-a272-b975fb60cd7d", + "name": "There is no need to refresh cache, since the incremental task entry:default@CompileResource is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673734925000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "55c82b49-916d-440b-afb1-0f7c37f5b957", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673735166958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a197ed85-a8ed-4bd9-9e35-e16f12cb51c5", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/Index.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673735262708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "de79ec8d-c7c7-4301-b6fb-edba704a97cb", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673735283708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ad01e606-3595-42d8-97e2-bad0af78099c", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673735555541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "171a1b39-cc06-4906-870b-24116896b399", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ResourceTable.txt cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673735647000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b8535c28-3e0e-4cbb-9dc3-ec62c2f6060b", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ark_module.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673735664791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fe7adea7-d569-42aa-aae9-b166f6503dc7", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673735685291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c066b3f5-1935-4214-832e-f8228cc1b63c", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673735741750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "930c6ead-787e-465f-b304-415a6f8d6818", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673735850125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "00bb50f0-10d3-4083-9deb-44920f45ae91", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/BuildProfile.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673735866625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e5cd463d-ca4d-445b-a4fc-74585c6028df", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/BuildProfile.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673735883416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5a86a47d-99a2-4b62-8468-91bd6542747a", + "name": "Update task entry:default@CompileArkTS output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673735912833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6c8c72fe-9653-44e5-a163-7f82ab66cc0d", + "name": "Incremental task entry:default@CompileArkTS post-execution cost:2 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673735975500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dfb26a11-a6e4-4724-9d5c-12b6b7b8ecbe", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673736075000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bf712266-607b-428c-abd8-65d591646ee7", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/Index.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673736208875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "17474274-d59a-47b8-a1d7-c105f91d0471", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673736227083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2f5acade-83ab-42dc-89d8-7546681a654a", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ResourceTable.txt cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673736328166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2f103968-2db3-4128-8765-35f2f828759c", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ark_module.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673736344500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1f7cad7d-b5a7-4a4a-86ed-00b8e15ffc01", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673736359791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7b15c91a-df45-4611-8f65-5d0ad1e30988", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673736399500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "140c5e51-582e-44e9-8115-2b06bb75f492", + "name": "Update task entry:default@BuildJS output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/js cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673736423208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c88b323a-94ab-41ab-a5fb-f5525d5b32fa", + "name": "Incremental task entry:default@BuildJS post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673736455041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4ddde347-5a5c-4467-949f-c94d3c699a6e", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessLibs is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673736462208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "341b5523-2935-4b76-8f36-f3ba4f0d056c", + "name": "There is no need to refresh cache, since the incremental task entry:default@DoNativeStrip is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673736468166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1fa6ba72-fac4-4e73-a9d0-f9afe38ff78f", + "name": "There is no need to refresh cache, since the incremental task entry:default@CacheNativeLibs is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 31819, + "tid": "Main Thread", + "startTime": 341673736478041 + }, + "additional": { + "logType": "debug", + "children": [] + } + } + ], + "workLog": [] +} \ No newline at end of file diff --git a/.hvigor/report/report-202604281921524500.json b/.hvigor/report/report-202604281921524500.json new file mode 100644 index 0000000..1df5b2f --- /dev/null +++ b/.hvigor/report/report-202604281921524500.json @@ -0,0 +1,13214 @@ +{ + "version": "2.0", + "ppid": 32333, + "events": [ + { + "head": { + "id": "93099016-98fa-4161-bf1f-0b7e066a1b3a", + "name": "env: nodejsVersion=v18.20.1", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685432763333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a2e1928e-d0c3-473c-afed-eb5798254e3a", + "name": "env: hvigor-config.json5 content = {\n modelVersion: '5.0.0',\n dependencies: {},\n execution: {\n daemon: false,\n incremental: true,\n parallel: true,\n typeCheck: false\n },\n logging: { level: 'info' },\n debugging: { stacktrace: false },\n nodeOptions: { maxOldSpaceSize: 4096 }\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685433424041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e352c711-be06-4522-abc5-163788d16401", + "name": "env: daemon=false", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685434226208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cbd73280-bf1b-4a0e-9710-ca4dd5a531b7", + "name": "no-daemon, use the parent process.execArgv --max-old-space-size=4096,--max-semi-space-size=16,--expose-gc,--enable-source-maps", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685434255541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "316d4f8d-d3c0-47b6-b16d-237cda0a83d3", + "name": "init", + "description": "Initialize and build task graph.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685557111583, + "endTime": 341686170615208 + }, + "additional": { + "children": [ + "f364a9c6-b53c-4401-85ee-3999d2567697", + "0daf155a-7886-4e0d-a44f-1cdf33439997", + "6214abf0-4025-47e0-b62d-dd6d39bf7d26", + "1e16154b-b255-47d5-a5f2-58391b51ac2e", + "f01ba714-bd9a-44ba-b37b-433fed326299", + "a923cba9-35a1-4210-848c-6aab0aa62c93", + "2a69d55f-749a-4ced-9315-b8caea3add7c" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Init", + "taskRunReasons": [], + "logId": "6ff7e974-7e2d-44a7-841c-2686b47e2490" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f364a9c6-b53c-4401-85ee-3999d2567697", + "name": "create hvigor project model", + "description": "Initialize hvigor project model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685557114083, + "endTime": 341685560710250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "316d4f8d-d3c0-47b6-b16d-237cda0a83d3", + "logId": "2abd0106-bc0c-4b86-b1ed-7623d242c560" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0daf155a-7886-4e0d-a44f-1cdf33439997", + "name": "configure hvigor plugin", + "description": "Configure hvigor plugin.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685560718666, + "endTime": 341686169684250 + }, + "additional": { + "children": [ + "fa0e6c51-8822-482e-97e6-2666083368b6", + "2decc41c-64cb-44e5-95ad-4637c383cc88", + "25151545-0f2b-4468-a1b5-f1ce74be0da6", + "10cf9029-8ae4-41a6-a316-d04c747f9b87", + "f90458de-41d3-4471-a1c8-0161238a7f81", + "619c9a7c-4d6b-4aa2-8219-950414bb43ff", + "b895396d-f14f-480f-acba-372853f8a858", + "60c4272c-c5fa-4cef-bc78-c415c140adc7", + "04c66216-a6dc-4efe-9485-7a1430678e9f" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "316d4f8d-d3c0-47b6-b16d-237cda0a83d3", + "logId": "e24d0ea7-04ca-4ce3-b31a-7e3753e0285f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "6214abf0-4025-47e0-b62d-dd6d39bf7d26", + "name": "build task graph", + "description": "Build task graph.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686169699000, + "endTime": 341686170606416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "316d4f8d-d3c0-47b6-b16d-237cda0a83d3", + "logId": "ada0918e-a6e3-420f-962d-a28b97307917" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "1e16154b-b255-47d5-a5f2-58391b51ac2e", + "name": "init task execution option", + "description": "Init task execution option.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686170608625, + "endTime": 341686170612250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "316d4f8d-d3c0-47b6-b16d-237cda0a83d3", + "logId": "46292eb9-8d53-427c-97d9-a7fb4533c879" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f01ba714-bd9a-44ba-b37b-433fed326299", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685558248750, + "endTime": 341685558341166 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "316d4f8d-d3c0-47b6-b16d-237cda0a83d3", + "logId": "153f8ea7-f460-4e84-b907-c1d3ff171198" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "153f8ea7-f460-4e84-b907-c1d3ff171198", + "name": "\"configEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685558248750, + "endTime": 341685558341166 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f01ba714-bd9a-44ba-b37b-433fed326299", + "parent": "6ff7e974-7e2d-44a7-841c-2686b47e2490" + } + }, + { + "head": { + "id": "a923cba9-35a1-4210-848c-6aab0aa62c93", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685558870833, + "endTime": 341685558881916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "316d4f8d-d3c0-47b6-b16d-237cda0a83d3", + "logId": "f99d062f-ec7c-490b-9b3d-4964cf511cf7" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f99d062f-ec7c-490b-9b3d-4964cf511cf7", + "name": "\"nodesInitialized\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685558870833, + "endTime": 341685558881916 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "a923cba9-35a1-4210-848c-6aab0aa62c93", + "parent": "6ff7e974-7e2d-44a7-841c-2686b47e2490" + } + }, + { + "head": { + "id": "41eb2040-24e3-481a-bcb8-6a218587eae5", + "name": "Hvigor init with startParameters:{\n hvigorfileTypeCheck: false,\n parallelExecution: true,\n incrementalExecution: true,\n printStackTrace: true,\n daemon: false,\n analyze: 0,\n logLevel: Level { level: 20000, levelStr: 'INFO', colour: 'green' },\n optimizationStrategy: 'memory',\n hotCompile: undefined,\n hotReloadBuild: undefined,\n customizedParam: undefined\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685559005875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "71706bcc-d153-4a4f-96ad-cae852d7c50d", + "name": "Cache service initialization finished in 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685560683875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2abd0106-bc0c-4b86-b1ed-7623d242c560", + "name": "create hvigor project model", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685557114083, + "endTime": 341685560710250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f364a9c6-b53c-4401-85ee-3999d2567697", + "parent": "6ff7e974-7e2d-44a7-841c-2686b47e2490" + } + }, + { + "head": { + "id": "fa0e6c51-8822-482e-97e6-2666083368b6", + "name": "init configuration", + "description": "Initialize configuration.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685560845291, + "endTime": 341685560850958 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "0daf155a-7886-4e0d-a44f-1cdf33439997", + "logId": "07f980fd-2716-418c-9bc7-a0e23bcfb73f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2decc41c-64cb-44e5-95ad-4637c383cc88", + "name": "configure project task", + "description": "Configure project task.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685560862333, + "endTime": 341685561050666 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "0daf155a-7886-4e0d-a44f-1cdf33439997", + "logId": "403a8e24-4e9d-4255-9b14-7a265ad50669" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "25151545-0f2b-4468-a1b5-f1ce74be0da6", + "name": "eval project", + "description": "Evaluate project.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685561084500, + "endTime": 341686129200458 + }, + "additional": { + "children": [ + "cb5a2d9f-8c55-4578-b645-c4eb505dc0ee", + "2dafc39a-65ff-4283-892e-d25a15e839de", + "ade94556-4889-4e1b-96f1-878b4965dd13" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "0daf155a-7886-4e0d-a44f-1cdf33439997", + "logId": "6f3b24c7-3177-488b-944d-594f0c74eb77" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "10cf9029-8ae4-41a6-a316-d04c747f9b87", + "name": "eval modules", + "description": "Evaluate modules.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686129325333, + "endTime": 341686161600750 + }, + "additional": { + "children": [ + "e8d69c56-27e8-4dfc-a741-c88f8480a9a3", + "2b95de8f-bdd2-48f7-b34f-2930555e1a6e" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "0daf155a-7886-4e0d-a44f-1cdf33439997", + "logId": "40ed43bd-b344-426f-84da-fa69c602a2c8" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f90458de-41d3-4471-a1c8-0161238a7f81", + "name": "add config dependencies", + "description": "Add configuration dependencies.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686161616500, + "endTime": 341686161616916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "0daf155a-7886-4e0d-a44f-1cdf33439997", + "logId": "219d638b-d66b-4023-9c65-cc4c50149848" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "619c9a7c-4d6b-4aa2-8219-950414bb43ff", + "name": "ohpm install", + "description": "Ohpm install event.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686161735166, + "endTime": 341686163837916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "0daf155a-7886-4e0d-a44f-1cdf33439997", + "logId": "d86c88aa-6a04-4224-9135-7f153e664556" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b895396d-f14f-480f-acba-372853f8a858", + "name": "eval hook", + "description": "EvaluateEvent hook.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686163842166, + "endTime": 341686169647000 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "0daf155a-7886-4e0d-a44f-1cdf33439997", + "logId": "2d255390-0baa-4c41-ae0e-e21a082fcf6b" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "60c4272c-c5fa-4cef-bc78-c415c140adc7", + "name": "fin configuration", + "description": "Finish configuration.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686169654958, + "endTime": 341686169680291 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "0daf155a-7886-4e0d-a44f-1cdf33439997", + "logId": "f9d3d265-0a94-4e1e-83fe-4dfa7070f9e2" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "07f980fd-2716-418c-9bc7-a0e23bcfb73f", + "name": "init configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685560845291, + "endTime": 341685560850958 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "fa0e6c51-8822-482e-97e6-2666083368b6", + "parent": "e24d0ea7-04ca-4ce3-b31a-7e3753e0285f" + } + }, + { + "head": { + "id": "403a8e24-4e9d-4255-9b14-7a265ad50669", + "name": "configure project task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685560862333, + "endTime": 341685561050666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "2decc41c-64cb-44e5-95ad-4637c383cc88", + "parent": "e24d0ea7-04ca-4ce3-b31a-7e3753e0285f" + } + }, + { + "head": { + "id": "cb5a2d9f-8c55-4578-b645-c4eb505dc0ee", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685561140291, + "endTime": 341685561148708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "25151545-0f2b-4468-a1b5-f1ce74be0da6", + "logId": "43e7bea6-53a4-4c01-9d0f-ddac1c01e8b0" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "43e7bea6-53a4-4c01-9d0f-ddac1c01e8b0", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685561140291, + "endTime": 341685561148708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "cb5a2d9f-8c55-4578-b645-c4eb505dc0ee", + "parent": "6f3b24c7-3177-488b-944d-594f0c74eb77" + } + }, + { + "head": { + "id": "2dafc39a-65ff-4283-892e-d25a15e839de", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685561235875, + "endTime": 341686129137208 + }, + "additional": { + "children": [ + "18c3a717-84e5-48c8-a89d-d46302e2bca4", + "8c020069-3cef-4585-9159-83fc8eb87fe5" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "25151545-0f2b-4468-a1b5-f1ce74be0da6", + "logId": "fca0a097-355a-4672-8cb0-283c93a17352" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "18c3a717-84e5-48c8-a89d-d46302e2bca4", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685561236250, + "endTime": 341686025199875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "2dafc39a-65ff-4283-892e-d25a15e839de", + "logId": "df3bb25b-f61e-435b-91c6-bebf6825c51c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8c020069-3cef-4585-9159-83fc8eb87fe5", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686025213083, + "endTime": 341686129130083 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "2dafc39a-65ff-4283-892e-d25a15e839de", + "logId": "e91e6a5a-77cd-4e50-b6f7-7d462a452336" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f6fad5fe-d8b2-4264-8bb3-96bddf55f4ab", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685561237625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "25e9fa3f-27f9-4252-b759-22cd570a0225", + "name": "hvigorfile, require result: { default: { system: [Function: appTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686025047875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "df3bb25b-f61e-435b-91c6-bebf6825c51c", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685561236250, + "endTime": 341686025199875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "18c3a717-84e5-48c8-a89d-d46302e2bca4", + "parent": "fca0a097-355a-4672-8cb0-283c93a17352" + } + }, + { + "head": { + "id": "a217304b-4527-4288-a22b-ea07e8ced8b4", + "name": "hvigorfile, binding system plugins [Function: appTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686025263125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ee6e17e6-c9b2-4522-89d9-28c5d5c33d2b", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686026713041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cec10081-afdb-40c7-b1d0-e8f5efdc6306", + "name": "App plugin prepare start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686026758291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "65cb06fb-5388-4739-b043-e9a177581c57", + "name": "App plugin prepare end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686026792375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c639f503-e10e-4650-a842-dc7c46710cfe", + "name": "App plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686026806666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8efee132-2857-4b0e-847e-d15be68dffd7", + "name": "App plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686105556416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e170257b-306f-4ac1-8b3a-0d31332ed351", + "name": "App plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686105777750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "78b02f4c-7ac0-4e7f-81fe-2497545dbdf9", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686105824083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "392cdd8a-d4c0-4937-becf-d896ca8c02d6", + "name": "Start initialize project's product build option map with build mode debug.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686106710250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c6b09399-1bd5-42f8-80da-f7f90c1eb469", + "name": "Picking option from product 'default' with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686106868041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d8673ae1-cc5a-4e9d-ab3e-6763418dd311", + "name": "Product 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686107065416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b6ff0e65-a90c-4414-ab1c-1d1e352fb5ae", + "name": "End initialize project's product build option map with build mode 'debug'.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686107086625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "582294c6-3bab-4ba8-b7cd-5f5c1b3215d9", + "name": "Obtain build option for product 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686108027791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6049a605-b2fc-4676-9948-b1360b5c88ff", + "name": "No signingConfig found, initRemoteHspCache failed.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686108567291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d8ae7dc9-715b-4736-aaef-45d87f3c5b89", + "name": "harmonyOS sdk scan", + "description": "HarmonyOS sdk scan", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686109242291, + "endTime": 341686110028041 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Other", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e446ce26-af56-4c2b-af1f-6df7eaf0d2d7", + "name": "Local scan or download HarmonyOS sdk components toolchains,ets,js,native,previewer", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686109249291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "de35e03b-42ad-4299-9d44-042a46a4be20", + "name": "hmscore sdk scan", + "description": "Hmscore sdk scan", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686110081583, + "endTime": 341686110239500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "Other", + "taskRunReasons": [] + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "00b8cdec-da14-4a0e-b7f5-0eaa949df9a9", + "name": "Local scan or download hmscore sdk components toolchains,ets,native", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686110086500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "72d6e286-ce5a-49ac-9bf1-a0f3c448a0bd", + "name": "Start recording SDK configuration permission data.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686110888250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5cd51466-a695-44d1-b17e-f33c1d717678", + "name": "Sdk init in 18 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686125940041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5932d0e1-c59e-48fc-9a9b-1f09b18493aa", + "name": "sdkVersion", + "description": "6.0.2.130", + "type": "mark" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686126051625 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 21, + "second": 53 + }, + "markType": "other" + } + }, + { + "head": { + "id": "da3afd5d-4e1a-4b4e-aa11-a975bb49118f", + "name": "caseSensitiveCheckOn", + "description": "caseSensitiveCheck check is on", + "type": "mark" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686126087375 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 21, + "second": 53 + }, + "markType": "other" + } + }, + { + "head": { + "id": "96e691bf-5d84-494a-bf50-ce065bc8ea66", + "name": "Project task initialization takes 3 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686129026250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a1062835-f514-4230-98fa-ef379cfff119", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686129103250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "886b81ab-f601-4a1b-8886-6470aeecec0c", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686129115541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e1329f54-e692-4fd9-832e-0301e983b563", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686129123375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e91e6a5a-77cd-4e50-b6f7-7d462a452336", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686025213083, + "endTime": 341686129130083 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "8c020069-3cef-4585-9159-83fc8eb87fe5", + "parent": "fca0a097-355a-4672-8cb0-283c93a17352" + } + }, + { + "head": { + "id": "fca0a097-355a-4672-8cb0-283c93a17352", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685561235875, + "endTime": 341686129137208 + }, + "additional": { + "logType": "info", + "children": [ + "df3bb25b-f61e-435b-91c6-bebf6825c51c", + "e91e6a5a-77cd-4e50-b6f7-7d462a452336" + ], + "durationId": "2dafc39a-65ff-4283-892e-d25a15e839de", + "parent": "6f3b24c7-3177-488b-944d-594f0c74eb77" + } + }, + { + "head": { + "id": "ade94556-4889-4e1b-96f1-878b4965dd13", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686129178833, + "endTime": 341686129193250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "25151545-0f2b-4468-a1b5-f1ce74be0da6", + "logId": "3d0e7f1d-7fcf-418a-a446-db74ee74ff94" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3d0e7f1d-7fcf-418a-a446-db74ee74ff94", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686129178833, + "endTime": 341686129193250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ade94556-4889-4e1b-96f1-878b4965dd13", + "parent": "6f3b24c7-3177-488b-944d-594f0c74eb77" + } + }, + { + "head": { + "id": "6f3b24c7-3177-488b-944d-594f0c74eb77", + "name": "eval project", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685561084500, + "endTime": 341686129200458 + }, + "additional": { + "logType": "info", + "children": [ + "43e7bea6-53a4-4c01-9d0f-ddac1c01e8b0", + "fca0a097-355a-4672-8cb0-283c93a17352", + "3d0e7f1d-7fcf-418a-a446-db74ee74ff94" + ], + "durationId": "25151545-0f2b-4468-a1b5-f1ce74be0da6", + "parent": "e24d0ea7-04ca-4ce3-b31a-7e3753e0285f" + } + }, + { + "head": { + "id": "e8d69c56-27e8-4dfc-a741-c88f8480a9a3", + "name": "eval submodule", + "description": "Evaluate submodule.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686129329750, + "endTime": 341686156028166 + }, + "additional": { + "children": [ + "6a773adb-d87c-4e50-a0dd-76a840095680", + "6b9560e0-514d-41a6-9d2d-8441a65069f1", + "019b8db4-82fa-4961-b66d-784a8ba36745" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "10cf9029-8ae4-41a6-a316-d04c747f9b87", + "logId": "ac72b070-0dc0-4e93-8fc0-d379190d0525" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "6a773adb-d87c-4e50-a0dd-76a840095680", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686129373416, + "endTime": 341686129377958 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e8d69c56-27e8-4dfc-a741-c88f8480a9a3", + "logId": "d9ae18a3-37c4-472a-8c77-bfe31eb8bf9c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "d9ae18a3-37c4-472a-8c77-bfe31eb8bf9c", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686129373416, + "endTime": 341686129377958 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "6a773adb-d87c-4e50-a0dd-76a840095680", + "parent": "ac72b070-0dc0-4e93-8fc0-d379190d0525" + } + }, + { + "head": { + "id": "6b9560e0-514d-41a6-9d2d-8441a65069f1", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686129397083, + "endTime": 341686155724916 + }, + "additional": { + "children": [ + "1b913782-5095-4809-99d5-b459b54b7557", + "0b6cbdfc-ef8e-467c-8b0b-b13cd5ff1cf6" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e8d69c56-27e8-4dfc-a741-c88f8480a9a3", + "logId": "590ccd98-d092-4fd1-b578-bab6ace8b2de" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "1b913782-5095-4809-99d5-b459b54b7557", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686129397416, + "endTime": 341686133959791 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "6b9560e0-514d-41a6-9d2d-8441a65069f1", + "logId": "3a2c5b4d-bc94-4183-8105-da8761081b9f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0b6cbdfc-ef8e-467c-8b0b-b13cd5ff1cf6", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686133966083, + "endTime": 341686155720250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "6b9560e0-514d-41a6-9d2d-8441a65069f1", + "logId": "2f27ef8d-e864-4ee8-961b-536b35b44068" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "629a42a4-ec66-4578-88c1-7f498028f527", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686129398541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "20519237-f67c-4bf7-8488-50d989a5abd2", + "name": "hvigorfile, require result: { default: { system: [Function: harTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686133920750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3a2c5b4d-bc94-4183-8105-da8761081b9f", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686129397416, + "endTime": 341686133959791 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "1b913782-5095-4809-99d5-b459b54b7557", + "parent": "590ccd98-d092-4fd1-b578-bab6ace8b2de" + } + }, + { + "head": { + "id": "cc049e86-2b89-4967-a144-812a601fc2df", + "name": "hvigorfile, binding system plugins [Function: harTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686133970166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a53d6da5-9b9e-4fda-8d9c-d5b5c8acfe09", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686134016625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "de1ba1d2-1b09-4894-83b5-2fea536a1d89", + "name": "Har plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686134035041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0939e18d-a0ab-4ab6-8cec-117a4880cf8c", + "name": "failed to load cangjie to dynamically generate schemas: Error: Cannot find module '@ohos/cangjie-build-support/index'\nRequire stack:\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/hooks/cangjie-register.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/strategy/stage-init-strategy.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/abstract-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/factory/plugin-factory.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/index.js\n- /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/boot/index.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/cli/main/cli.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/bin/hvigor.js", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686134398208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1869255f-8a3f-4117-b3b3-051be66bc89f", + "name": "Start initialize module-target build option map, moduleName=xuqmSdk, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686152481458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8962b555-11d2-4a08-828c-f82d17f93636", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686152595541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "617ce52a-096f-463a-8818-3af06ea28c6e", + "name": "Module 'xuqmSdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686152854500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fd4ebf81-ff21-46d7-bd4d-8648550ef932", + "name": "End initialize module-target build option map, moduleName=xuqmSdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686152869291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cfbf6072-6daf-478c-ae01-3a483b40df29", + "name": "Start initialize module-target build option map, moduleName=xuqmSdk, buildMode=release", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686152893416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "57f16f8b-f036-43d3-a99b-1433b5dffb49", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686152917833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6382c7d0-defb-4993-93e7-af063cd7aa6c", + "name": "Module 'xuqmSdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686153087708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a1b5713f-0ff0-42f0-b6cf-bec351a596f9", + "name": "End initialize module-target build option map, moduleName=xuqmSdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686153097583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1f6501d2-2d51-47a3-ae67-564a4f9329e1", + "name": "Start initialize module-target build option map, moduleName=xuqmSdk, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686153180666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "32820722-9442-4db3-ba46-6443fe25e16c", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686153195666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5514ee53-a5d6-4dc7-8ef1-fc8cc2cdbd7f", + "name": "Module 'xuqmSdk' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686153316958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4f8813aa-9395-4aa7-ba31-1d3991922d07", + "name": "End initialize module-target build option map, moduleName=xuqmSdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686153326791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fee11930-e429-4129-9f13-c767564748f5", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686153414125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1c259d80-d12e-4a11-8321-768e81fa1922", + "name": "Module xuqmSdk task initialization takes 2 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686155611666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "35093382-f21e-473c-b2b8-3f69e91d62b3", + "name": "Har plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686155644458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fd70e79f-4026-4367-8261-0f427e6efffb", + "name": "Har plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686155661750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0d96d1ea-5ce8-43bf-b872-3afbc6b8d19c", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686155668291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "79f33ec9-2054-4276-9dae-f375372c3669", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686155696333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "13d3a547-2a35-4995-8e02-c63421af1fe8", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686155707916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fa3a5cc1-b6e3-4a7f-8587-9ecd0c2f08b0", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686155714250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2f27ef8d-e864-4ee8-961b-536b35b44068", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686133966083, + "endTime": 341686155720250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "0b6cbdfc-ef8e-467c-8b0b-b13cd5ff1cf6", + "parent": "590ccd98-d092-4fd1-b578-bab6ace8b2de" + } + }, + { + "head": { + "id": "590ccd98-d092-4fd1-b578-bab6ace8b2de", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686129397083, + "endTime": 341686155724916 + }, + "additional": { + "logType": "info", + "children": [ + "3a2c5b4d-bc94-4183-8105-da8761081b9f", + "2f27ef8d-e864-4ee8-961b-536b35b44068" + ], + "durationId": "6b9560e0-514d-41a6-9d2d-8441a65069f1", + "parent": "ac72b070-0dc0-4e93-8fc0-d379190d0525" + } + }, + { + "head": { + "id": "019b8db4-82fa-4961-b66d-784a8ba36745", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686156018958, + "endTime": 341686156023583 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "e8d69c56-27e8-4dfc-a741-c88f8480a9a3", + "logId": "9ca620ae-3c1c-400d-8727-b70646a9f66e" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9ca620ae-3c1c-400d-8727-b70646a9f66e", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686156018958, + "endTime": 341686156023583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "019b8db4-82fa-4961-b66d-784a8ba36745", + "parent": "ac72b070-0dc0-4e93-8fc0-d379190d0525" + } + }, + { + "head": { + "id": "ac72b070-0dc0-4e93-8fc0-d379190d0525", + "name": "eval submodule", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686129329750, + "endTime": 341686156028166 + }, + "additional": { + "logType": "info", + "children": [ + "d9ae18a3-37c4-472a-8c77-bfe31eb8bf9c", + "590ccd98-d092-4fd1-b578-bab6ace8b2de", + "9ca620ae-3c1c-400d-8727-b70646a9f66e" + ], + "durationId": "e8d69c56-27e8-4dfc-a741-c88f8480a9a3", + "parent": "40ed43bd-b344-426f-84da-fa69c602a2c8" + } + }, + { + "head": { + "id": "2b95de8f-bdd2-48f7-b34f-2930555e1a6e", + "name": "eval submodule", + "description": "Evaluate submodule.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686156039916, + "endTime": 341686161596333 + }, + "additional": { + "children": [ + "ab624af4-ff1f-446e-b6da-37383c9f47ad", + "13a931a5-4804-4c41-9796-046a58123e68", + "e54ffc02-4042-4f49-9804-da3b0e106d28" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "10cf9029-8ae4-41a6-a316-d04c747f9b87", + "logId": "87aae6ac-3e71-4852-a52a-2f91b5e36880" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ab624af4-ff1f-446e-b6da-37383c9f47ad", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686156072541, + "endTime": 341686156074750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "2b95de8f-bdd2-48f7-b34f-2930555e1a6e", + "logId": "4682294a-78b1-427c-ae79-05d536fc276d" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "4682294a-78b1-427c-ae79-05d536fc276d", + "name": "\"beforeNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686156072541, + "endTime": 341686156074750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ab624af4-ff1f-446e-b6da-37383c9f47ad", + "parent": "87aae6ac-3e71-4852-a52a-2f91b5e36880" + } + }, + { + "head": { + "id": "13a931a5-4804-4c41-9796-046a58123e68", + "name": "eval hvigorfile", + "description": "Evaluate hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686156092208, + "endTime": 341686161563708 + }, + "additional": { + "children": [ + "ad98f2b6-599c-4b38-8249-f94c51e8613f", + "c22a60d0-e448-4211-9687-729dd202aed9" + ], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "2b95de8f-bdd2-48f7-b34f-2930555e1a6e", + "logId": "338e168e-3ea2-4eff-b829-503feb0e3e64" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ad98f2b6-599c-4b38-8249-f94c51e8613f", + "name": "require hvigorfile", + "description": "Require hvigorfile.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686156092416, + "endTime": 341686158986875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "13a931a5-4804-4c41-9796-046a58123e68", + "logId": "ac3aa69d-1f3d-4d93-aa30-6edcb48cfb12" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c22a60d0-e448-4211-9687-729dd202aed9", + "name": "bind plugins", + "description": "Bind plugins.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686158994416, + "endTime": 341686161559750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "13a931a5-4804-4c41-9796-046a58123e68", + "logId": "cf4d3fbe-c0cd-40fd-aa21-03103d9e7821" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "815e1529-316c-4de4-b9ae-558cb90a76b3", + "name": "hvigorfile, resolving /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686156093541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f625decb-a580-4624-a9e1-daf8f3a19fb4", + "name": "hvigorfile, require result: { default: { system: [Function: hapTasks], plugins: [] } }", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686158944375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ac3aa69d-1f3d-4d93-aa30-6edcb48cfb12", + "name": "require hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686156092416, + "endTime": 341686158986875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "ad98f2b6-599c-4b38-8249-f94c51e8613f", + "parent": "338e168e-3ea2-4eff-b829-503feb0e3e64" + } + }, + { + "head": { + "id": "a60a71f5-cedc-4aaf-bd8c-275ccc17429c", + "name": "hvigorfile, binding system plugins [Function: hapTasks]", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686158999125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ba03589b-58b2-419a-98de-7ef4374606ae", + "name": "Starting plugin build process", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686159047333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e18a6ab3-0d40-49ff-b307-15220e6f8c0e", + "name": "Hap plugin creating...", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686159066750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "52feb706-2fbb-4025-b017-344558358011", + "name": "failed to load cangjie to dynamically generate schemas: Error: Cannot find module '@ohos/cangjie-build-support/index'\nRequire stack:\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/hooks/cangjie-register.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/strategy/stage-init-strategy.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/abstract-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/builder/app-plugin-builder.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/src/plugin/factory/plugin-factory.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor-ohos-plugin/index.js\n- /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/hvigorfile.ts\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/internal/lifecycle/configuration.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/base/boot/index.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/src/cli/main/cli.js\n- /Users/xuqinmin/sdk/command-line-tools/hvigor/hvigor/bin/hvigor.js", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686159160458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fa56d2c0-803a-45e7-a753-78b4b96e6fd2", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686160658041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "86de37cd-e6fa-4f79-a2bf-63f87bb27a45", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686160676875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1e90b31c-3410-4517-8924-5f1b6299cac3", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686160727416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "657a1343-b85e-46bb-a86c-5018529eaef6", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686160734500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f42ac116-e1ce-4de7-93d3-43793dc1a44e", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=release", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686160747250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d67769da-6577-4f21-8bd4-32664d848f20", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686160756208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e35cea71-122f-4f30-81e6-f45a0ac674a7", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686160801458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "73e68fbc-c0cc-4134-b18b-1f80878729f3", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686160808250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "820d7099-409a-42ff-8b14-f66689ac93bc", + "name": "Start initialize module-target build option map, moduleName=entry, buildMode=debug", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686160822750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7de48463-f432-415c-b438-7fd8193d95eb", + "name": "Target 'default' config initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686160831500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f43d570a-c05a-409e-983a-963efc3069dc", + "name": "Module 'entry' target 'default' build option initialized", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686160863583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "42ac0f47-d118-4e66-a85f-1b6cd1ed9d10", + "name": "End initialize module-target build option map, moduleName=entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686160869333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2ec940d0-ab92-4df6-b0ea-2bf019432f85", + "name": "Obtain build option for module 'entry' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686160881416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "20d647ee-e2b2-4df9-93d6-302920838281", + "name": "Module entry task initialization takes 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686161470416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f76e6f7b-867b-43ff-8bbc-789a68020fa6", + "name": "Hap plugin register hook start...", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686161499166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9cf9c7a9-66df-46b5-8df6-97251375971a", + "name": "Hap plugin register hook end...", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686161508500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9e3e3f5f-a292-491d-8088-f8a2abecabca", + "name": "Plugin build process completed", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686161514166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "27a3767c-311b-4f9c-9190-8d4462b0e8fb", + "name": "hvigorfile, binding custom plugins []", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686161539833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5148bddc-dca4-4d77-9daa-f083a1d8451a", + "name": "hvigorfile, no custom plugins were found in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686161548416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "af43905d-cb2c-482c-8e2a-6633b7e9bab2", + "name": "hvigorfile, resolve finished /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/hvigorfile.ts", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686161554375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cf4d3fbe-c0cd-40fd-aa21-03103d9e7821", + "name": "bind plugins", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686158994416, + "endTime": 341686161559750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "c22a60d0-e448-4211-9687-729dd202aed9", + "parent": "338e168e-3ea2-4eff-b829-503feb0e3e64" + } + }, + { + "head": { + "id": "338e168e-3ea2-4eff-b829-503feb0e3e64", + "name": "eval hvigorfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686156092208, + "endTime": 341686161563708 + }, + "additional": { + "logType": "info", + "children": [ + "ac3aa69d-1f3d-4d93-aa30-6edcb48cfb12", + "cf4d3fbe-c0cd-40fd-aa21-03103d9e7821" + ], + "durationId": "13a931a5-4804-4c41-9796-046a58123e68", + "parent": "87aae6ac-3e71-4852-a52a-2f91b5e36880" + } + }, + { + "head": { + "id": "e54ffc02-4042-4f49-9804-da3b0e106d28", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686161588958, + "endTime": 341686161592625 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "2b95de8f-bdd2-48f7-b34f-2930555e1a6e", + "logId": "53c4f832-5095-4183-83ac-5f51b4d8238c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "53c4f832-5095-4183-83ac-5f51b4d8238c", + "name": "\"afterNodeEvaluate\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686161588958, + "endTime": 341686161592625 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e54ffc02-4042-4f49-9804-da3b0e106d28", + "parent": "87aae6ac-3e71-4852-a52a-2f91b5e36880" + } + }, + { + "head": { + "id": "87aae6ac-3e71-4852-a52a-2f91b5e36880", + "name": "eval submodule", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686156039916, + "endTime": 341686161596333 + }, + "additional": { + "logType": "info", + "children": [ + "4682294a-78b1-427c-ae79-05d536fc276d", + "338e168e-3ea2-4eff-b829-503feb0e3e64", + "53c4f832-5095-4183-83ac-5f51b4d8238c" + ], + "durationId": "2b95de8f-bdd2-48f7-b34f-2930555e1a6e", + "parent": "40ed43bd-b344-426f-84da-fa69c602a2c8" + } + }, + { + "head": { + "id": "40ed43bd-b344-426f-84da-fa69c602a2c8", + "name": "eval modules", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686129325333, + "endTime": 341686161600750 + }, + "additional": { + "logType": "info", + "children": [ + "ac72b070-0dc0-4e93-8fc0-d379190d0525", + "87aae6ac-3e71-4852-a52a-2f91b5e36880" + ], + "durationId": "10cf9029-8ae4-41a6-a316-d04c747f9b87", + "parent": "e24d0ea7-04ca-4ce3-b31a-7e3753e0285f" + } + }, + { + "head": { + "id": "219d638b-d66b-4023-9c65-cc4c50149848", + "name": "add config dependencies", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686161616500, + "endTime": 341686161616916 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f90458de-41d3-4471-a1c8-0161238a7f81", + "parent": "e24d0ea7-04ca-4ce3-b31a-7e3753e0285f" + } + }, + { + "head": { + "id": "04c66216-a6dc-4efe-9485-7a1430678e9f", + "name": "\"nodesEvaluated\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686161622750, + "endTime": 341686161732625 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "0daf155a-7886-4e0d-a44f-1cdf33439997", + "logId": "f82a657d-f18d-4035-a5c5-29c284b6acaf" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0f8f1318-b0a8-4c27-be84-ad2e32695802", + "name": "project has submodules:xuqmSdk,entry", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686161646916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bdbc16a4-3f04-4511-a4e3-2d5a2386b244", + "name": "module:xuqmSdk no need to execute packageHap", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686161696708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f82a657d-f18d-4035-a5c5-29c284b6acaf", + "name": "\"nodesEvaluated\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686161622750, + "endTime": 341686161732625 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "04c66216-a6dc-4efe-9485-7a1430678e9f", + "parent": "e24d0ea7-04ca-4ce3-b31a-7e3753e0285f" + } + }, + { + "head": { + "id": "19c15401-9e05-49c9-b7da-ee72e2a23a97", + "name": "start to load updatedOhPackageInfo to the disk", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686162219250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bc861cf4-688d-41a7-b718-289e1385d383", + "name": "load to the disk finished", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686163672083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d86c88aa-6a04-4224-9135-7f153e664556", + "name": "ohpm install", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686161735166, + "endTime": 341686163837916 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "619c9a7c-4d6b-4aa2-8219-950414bb43ff", + "parent": "e24d0ea7-04ca-4ce3-b31a-7e3753e0285f" + } + }, + { + "head": { + "id": "70dd7288-1c67-45bf-b2f0-bc9c6e8c37f7", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686163881666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "23254e58-81a6-43d8-aa7e-016f0fd4ad44", + "name": "Module XuqmGroup-HarmonySDK Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686164561500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5dac8802-a6b5-47c6-b23c-36898cbbf5f9", + "name": "Module XuqmGroup-HarmonySDK's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686164572333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "47b529dc-7a27-4ba7-a6ec-aa63c48171ab", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686166521125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c0bc0438-3497-4097-89a5-a6a820683502", + "name": "Module xuqmSdk Collected Dependency: ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686166882458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "95cac285-96ec-4ceb-b04b-9f44c2dc7d13", + "name": "Module xuqmSdk's total dependency: 0", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686166896166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "54c57e88-ceae-43d1-92cd-a0d89bd5e739", + "name": "Start to initialize dependency information.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686168221000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2f068f1a-be50-4f5b-8071-48742fb6bd40", + "name": "Module entry Collected Dependency: /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686169081625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "798d9d2c-7b22-459b-8ec8-427b0f23a175", + "name": "Module entry's total dependency: 1", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686169092041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2d255390-0baa-4c41-ae0e-e21a082fcf6b", + "name": "eval hook", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686163842166, + "endTime": 341686169647000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "b895396d-f14f-480f-acba-372853f8a858", + "parent": "e24d0ea7-04ca-4ce3-b31a-7e3753e0285f" + } + }, + { + "head": { + "id": "81b09eec-8cf9-4909-b600-8276f1a606f5", + "name": "Configuration phase cost:609 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686169670083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f9d3d265-0a94-4e1e-83fe-4dfa7070f9e2", + "name": "fin configuration", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686169654958, + "endTime": 341686169680291 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "60c4272c-c5fa-4cef-bc78-c415c140adc7", + "parent": "e24d0ea7-04ca-4ce3-b31a-7e3753e0285f" + } + }, + { + "head": { + "id": "e24d0ea7-04ca-4ce3-b31a-7e3753e0285f", + "name": "configure hvigor plugin", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685560718666, + "endTime": 341686169684250 + }, + "additional": { + "logType": "info", + "children": [ + "07f980fd-2716-418c-9bc7-a0e23bcfb73f", + "403a8e24-4e9d-4255-9b14-7a265ad50669", + "6f3b24c7-3177-488b-944d-594f0c74eb77", + "40ed43bd-b344-426f-84da-fa69c602a2c8", + "219d638b-d66b-4023-9c65-cc4c50149848", + "d86c88aa-6a04-4224-9135-7f153e664556", + "2d255390-0baa-4c41-ae0e-e21a082fcf6b", + "f9d3d265-0a94-4e1e-83fe-4dfa7070f9e2", + "f82a657d-f18d-4035-a5c5-29c284b6acaf" + ], + "durationId": "0daf155a-7886-4e0d-a44f-1cdf33439997", + "parent": "6ff7e974-7e2d-44a7-841c-2686b47e2490" + } + }, + { + "head": { + "id": "2a69d55f-749a-4ced-9315-b8caea3add7c", + "name": "\"taskGraphResolved\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686170583875, + "endTime": 341686170600333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "316d4f8d-d3c0-47b6-b16d-237cda0a83d3", + "logId": "18753074-d053-451b-abaf-8a100a006bee" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "18753074-d053-451b-abaf-8a100a006bee", + "name": "\"taskGraphResolved\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686170583875, + "endTime": 341686170600333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "2a69d55f-749a-4ced-9315-b8caea3add7c", + "parent": "6ff7e974-7e2d-44a7-841c-2686b47e2490" + } + }, + { + "head": { + "id": "ada0918e-a6e3-420f-962d-a28b97307917", + "name": "build task graph", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686169699000, + "endTime": 341686170606416 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "6214abf0-4025-47e0-b62d-dd6d39bf7d26", + "parent": "6ff7e974-7e2d-44a7-841c-2686b47e2490" + } + }, + { + "head": { + "id": "46292eb9-8d53-427c-97d9-a7fb4533c879", + "name": "init task execution option", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686170608625, + "endTime": 341686170612250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "1e16154b-b255-47d5-a5f2-58391b51ac2e", + "parent": "6ff7e974-7e2d-44a7-841c-2686b47e2490" + } + }, + { + "head": { + "id": "6ff7e974-7e2d-44a7-841c-2686b47e2490", + "name": "init", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685557111583, + "endTime": 341686170615208 + }, + "additional": { + "logType": "info", + "children": [ + "2abd0106-bc0c-4b86-b1ed-7623d242c560", + "e24d0ea7-04ca-4ce3-b31a-7e3753e0285f", + "ada0918e-a6e3-420f-962d-a28b97307917", + "46292eb9-8d53-427c-97d9-a7fb4533c879", + "153f8ea7-f460-4e84-b907-c1d3ff171198", + "f99d062f-ec7c-490b-9b3d-4964cf511cf7", + "18753074-d053-451b-abaf-8a100a006bee" + ], + "durationId": "316d4f8d-d3c0-47b6-b16d-237cda0a83d3" + } + }, + { + "head": { + "id": "ad9ef13b-621c-4079-a01a-2160cbe7704d", + "name": "Configuration task cost before running: 615 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686171081583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "76385cd4-dded-4b90-89bc-1156392709bd", + "name": "entry:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686173374208, + "endTime": 341686177203333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Verification", + "taskRunReasons": [], + "detailId": "b7fec952-834e-42ed-b2e8-d731d9e1ed3b", + "logId": "f94d2e84-d5e2-494d-b6ef-0264cbcff35f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "b7fec952-834e-42ed-b2e8-d731d9e1ed3b", + "name": "create entry:default@PreBuild task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686171415333 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "76385cd4-dded-4b90-89bc-1156392709bd" + } + }, + { + "head": { + "id": "71fb8086-8d2d-448c-9237-b45b6fee941f", + "name": "Executing task :entry:default@PreBuild", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686173386583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "45fb19d8-94fc-4ac7-9370-11df31c98d91", + "name": "The project has not explicitly set the 'targetSdkVersion' version at build-profile.json5. It is recommended to configure it. Reference: https://developer.huawei.com/consumer/cn/doc/harmonyos-guides/ide-hvigor-build-profile-app#section45865492619", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686173586666 + }, + "additional": { + "logType": "warn", + "children": [] + } + }, + { + "head": { + "id": "50baee59-e343-4c01-b691-562df1b7b455", + "name": "Task 'entry:default@PreBuild' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686174955416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d527214d-e510-4a44-810b-03eac6bd7220", + "name": "Incremental task entry:default@PreBuild pre-execution cost: 2 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686177118875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9d968831-3efc-4570-8c84-f250076ab292", + "name": "entry : default@PreBuild cost memory 0.3214111328125", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686177158041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f94d2e84-d5e2-494d-b6ef-0264cbcff35f", + "name": "UP-TO-DATE :entry:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686173374208, + "endTime": 341686177203333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "76385cd4-dded-4b90-89bc-1156392709bd" + } + }, + { + "head": { + "id": "1006938c-e742-4b19-847e-c30e307f2cc9", + "name": "xuqmSdk:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686178102083, + "endTime": 341686179257708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Verification", + "taskRunReasons": [], + "detailId": "1cd14239-afd8-402e-a6ea-7a33dd0597fa", + "logId": "7f6a1687-3395-4a84-9969-07ea70266e7a" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "1cd14239-afd8-402e-a6ea-7a33dd0597fa", + "name": "create xuqmSdk:default@PreBuild task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686177656916 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "1006938c-e742-4b19-847e-c30e307f2cc9" + } + }, + { + "head": { + "id": "e8b7dc96-d1d0-48f1-82b6-1d96a0fd07d4", + "name": "Executing task :xuqmSdk:default@PreBuild", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686178105291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8706e15c-9ef0-4775-9bfe-ce299d32b5dd", + "name": "Task 'xuqmSdk:default@PreBuild' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686178213083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6aeabe8c-8977-4a1b-a76e-7a4457ec076d", + "name": "Incremental task xuqmSdk:default@PreBuild pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686179210333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b4d803a8-29cf-4fb5-a8e9-9c0d5f7f9b44", + "name": "xuqmSdk : default@PreBuild cost memory 0.4412841796875", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686179243750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7f6a1687-3395-4a84-9969-07ea70266e7a", + "name": "UP-TO-DATE :xuqmSdk:default@PreBuild", + "description": "Pre-build in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686178102083, + "endTime": 341686179257708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "1006938c-e742-4b19-847e-c30e307f2cc9" + } + }, + { + "head": { + "id": "b1d5bdbb-a3d2-4590-bef6-1e484354dcaf", + "name": "entry:default@CreateModuleInfo", + "description": "Create the ModuleInfo.ts file for the hap/hsp package.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686179750333, + "endTime": 341686180069208 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "75cbf19b-357e-4723-a1fd-de98671ebdf6", + "logId": "3cb5f0da-3bca-4cc2-8b50-02b919cd4f31" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "75cbf19b-357e-4723-a1fd-de98671ebdf6", + "name": "create entry:default@CreateModuleInfo task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686179608000 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "b1d5bdbb-a3d2-4590-bef6-1e484354dcaf" + } + }, + { + "head": { + "id": "1d4ca690-416d-4c5b-8344-c8e88ec009dc", + "name": "Executing task :entry:default@CreateModuleInfo", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686179753166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1fe73327-b364-4307-b0b6-12944275d15b", + "name": "Task 'entry:default@CreateModuleInfo' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686179882250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6b58b4ee-615d-4f99-acdb-77c78fe0d110", + "name": "entry : default@CreateModuleInfo cost memory 0.03601837158203125", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686180016791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "adc6498d-d348-4b91-b522-16033c16f05f", + "name": "runTaskFromQueue task cost before running: 624 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686180035416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3cb5f0da-3bca-4cc2-8b50-02b919cd4f31", + "name": "Finished :entry:default@CreateModuleInfo", + "description": "Create the ModuleInfo.ts file for the hap/hsp package.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686179750333, + "endTime": 341686180069208, + "totalTime": 278083 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "b1d5bdbb-a3d2-4590-bef6-1e484354dcaf" + } + }, + { + "head": { + "id": "b0406e60-dbe4-4e6e-a1a8-48a9dbf15d7d", + "name": "entry:default@GenerateMetadata", + "description": "Generate metadata in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686180739583, + "endTime": 341686181108000 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "44e113ce-9011-4e71-92c8-5300b53f8493", + "logId": "5a035cc3-b2e0-481e-ae2c-bf83d6749796" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "44e113ce-9011-4e71-92c8-5300b53f8493", + "name": "create entry:default@GenerateMetadata task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686180254791 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "b0406e60-dbe4-4e6e-a1a8-48a9dbf15d7d" + } + }, + { + "head": { + "id": "7a2d6e00-12da-4d29-a494-7f028632e4b2", + "name": "Executing task :entry:default@GenerateMetadata", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686180746666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "181042d8-ac00-434d-b869-10e38b9e3535", + "name": "Task 'entry:default@GenerateMetadata' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686180924250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cc716a17-3265-4296-aaf6-ed4608d44627", + "name": "Incremental task entry:default@GenerateMetadata pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686181079166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9dceeacf-672c-45e4-839b-9aca3bbdf37c", + "name": "entry : default@GenerateMetadata cost memory 0.07047271728515625", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686181096625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5a035cc3-b2e0-481e-ae2c-bf83d6749796", + "name": "UP-TO-DATE :entry:default@GenerateMetadata", + "description": "Generate metadata in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686180739583, + "endTime": 341686181108000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "b0406e60-dbe4-4e6e-a1a8-48a9dbf15d7d" + } + }, + { + "head": { + "id": "db18e19f-4220-427c-89fa-7a98f240742a", + "name": "entry:default@PreCheckSyscap", + "description": "Pre-check SysCap.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686181539041, + "endTime": 341686181656375 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Verification", + "taskRunReasons": [], + "detailId": "e5680d82-942e-4d7a-aec3-5983aec6018f", + "logId": "67497acb-9488-471a-8fb5-429dcbdbb054" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e5680d82-942e-4d7a-aec3-5983aec6018f", + "name": "create entry:default@PreCheckSyscap task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686181212666 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "db18e19f-4220-427c-89fa-7a98f240742a" + } + }, + { + "head": { + "id": "0cbbd69a-aebc-4717-9d76-b10222df0725", + "name": "Executing task :entry:default@PreCheckSyscap", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686181543916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "83ed1106-8d9b-48f3-a97f-9385343e6971", + "name": "entry : default@PreCheckSyscap cost memory 0.01348876953125", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686181632083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1a49ca03-8354-4eb6-83e2-d79fbaa37780", + "name": "runTaskFromQueue task cost before running: 625 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686181648208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "67497acb-9488-471a-8fb5-429dcbdbb054", + "name": "Finished :entry:default@PreCheckSyscap", + "description": "Pre-check SysCap.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686181539041, + "endTime": 341686181656375, + "totalTime": 103375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "db18e19f-4220-427c-89fa-7a98f240742a" + } + }, + { + "head": { + "id": "bd4f42c5-a83a-44bc-8168-e7bb44b7dceb", + "name": "entry:default@GeneratePkgContextInfo", + "description": "Generate pkgContextInfo.json to ets-loader.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686182187166, + "endTime": 341686185999500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "2a7b58e7-b529-4ca2-bc99-5c8fff06ad03", + "logId": "680ee030-3423-4b8a-a8f7-03285d606007" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2a7b58e7-b529-4ca2-bc99-5c8fff06ad03", + "name": "create entry:default@GeneratePkgContextInfo task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686181819708 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "bd4f42c5-a83a-44bc-8168-e7bb44b7dceb" + } + }, + { + "head": { + "id": "e9fd42af-9cac-4dd4-8e83-07e09252d301", + "name": "Executing task :entry:default@GeneratePkgContextInfo", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686182191291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "521bed3b-566e-4a84-8180-ae157693dd22", + "name": "Task 'entry:default@GeneratePkgContextInfo' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686185717250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4218768c-7b3c-4aa2-9dda-1f13db46ce87", + "name": "Incremental task entry:default@GeneratePkgContextInfo pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686185956541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fdce27ac-9366-4f4f-8029-228c88f2b077", + "name": "entry : default@GeneratePkgContextInfo cost memory 0.307220458984375", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686185982625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "680ee030-3423-4b8a-a8f7-03285d606007", + "name": "UP-TO-DATE :entry:default@GeneratePkgContextInfo", + "description": "Generate pkgContextInfo.json to ets-loader.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686182187166, + "endTime": 341686185999500 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "bd4f42c5-a83a-44bc-8168-e7bb44b7dceb" + } + }, + { + "head": { + "id": "d580f050-a1b2-463e-8636-eb1ac19d9dfa", + "name": "entry:default@ProcessIntegratedHsp", + "description": "Use package tool process integrated hsp.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686186959791, + "endTime": 341686187168750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Sign", + "taskRunReasons": [ + "The output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build/cache/default/integrated_hsp/integratedHspCache.json' does not exist." + ], + "detailId": "80cfbfbc-bbfc-4f80-ad31-bf99968262b6", + "logId": "429a9276-910d-4cc1-bc87-39c8c74d667a" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "80cfbfbc-bbfc-4f80-ad31-bf99968262b6", + "name": "create entry:default@ProcessIntegratedHsp task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686186191833 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "d580f050-a1b2-463e-8636-eb1ac19d9dfa" + } + }, + { + "head": { + "id": "9550e4eb-9a6f-4a7b-bba7-73b8c17dc3b8", + "name": "Executing task :entry:default@ProcessIntegratedHsp", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686186963250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8ca3fcd6-450a-427d-b614-8a1d65f3beb4", + "name": "entry:default@ProcessIntegratedHsp is not up-to-date, since the output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build/cache/default/integrated_hsp/integratedHspCache.json' does not exist.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686187086291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1536c127-f8aa-4d71-bb4d-bce1a0a1225c", + "name": "Incremental task entry:default@ProcessIntegratedHsp pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686187105541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8fdc31a5-1fb5-4f87-95ef-b1a7a8987255", + "name": "entry : default@ProcessIntegratedHsp cost memory 0.04729461669921875", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686187148375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d61ea931-8ecb-4ca7-8323-1ae47e7baef5", + "name": "runTaskFromQueue task cost before running: 631 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686187161833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "429a9276-910d-4cc1-bc87-39c8c74d667a", + "name": "Finished :entry:default@ProcessIntegratedHsp", + "description": "Use package tool process integrated hsp.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686186959791, + "endTime": 341686187168750, + "totalTime": 197834 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "d580f050-a1b2-463e-8636-eb1ac19d9dfa" + } + }, + { + "head": { + "id": "18d5309e-2adf-4a4e-b5c6-c4239e49fba4", + "name": "xuqmSdk:default@CreateHarBuildProfile", + "description": "Create the BuildProfile.ets file for the HAR package.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686187658250, + "endTime": 341686187945541 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Generate", + "taskRunReasons": [], + "detailId": "10e5952e-e204-4a6a-8248-59f2cb9c3dce", + "logId": "dcc87345-9305-45bd-9a23-deb03cd34c39" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "10e5952e-e204-4a6a-8248-59f2cb9c3dce", + "name": "create xuqmSdk:default@CreateHarBuildProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686187355958 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "18d5309e-2adf-4a4e-b5c6-c4239e49fba4" + } + }, + { + "head": { + "id": "d21a0b70-0ee2-4608-8183-f54c406e6685", + "name": "Executing task :xuqmSdk:default@CreateHarBuildProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686187661000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "57d011bb-1e3f-4841-974a-2c55d7f3a1f0", + "name": "Task 'xuqmSdk:default@CreateHarBuildProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686187736541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b18d1826-3307-4328-ac68-18d2adb71afd", + "name": "Incremental task xuqmSdk:default@CreateHarBuildProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686187919750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "866121c2-bb80-4979-8a78-50ffd6d55631", + "name": "xuqmSdk : default@CreateHarBuildProfile cost memory 0.0720977783203125", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686187935208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dcc87345-9305-45bd-9a23-deb03cd34c39", + "name": "UP-TO-DATE :xuqmSdk:default@CreateHarBuildProfile", + "description": "Create the BuildProfile.ets file for the HAR package.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686187658250, + "endTime": 341686187945541 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "18d5309e-2adf-4a4e-b5c6-c4239e49fba4" + } + }, + { + "head": { + "id": "13d3ccae-6c16-4766-a733-1fb1257e92d8", + "name": "xuqmSdk:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686188374958, + "endTime": 341686188442250 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "643ddcd9-709b-4e44-8828-5b5cce57ee32", + "logId": "d69db75b-069d-436f-ac68-ed0c4bfee844" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "643ddcd9-709b-4e44-8828-5b5cce57ee32", + "name": "create xuqmSdk:default@ConfigureCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686188096916 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "13d3ccae-6c16-4766-a733-1fb1257e92d8" + } + }, + { + "head": { + "id": "dc5c6be6-5d22-40d0-aded-8b8e838c9190", + "name": "Executing task :xuqmSdk:default@ConfigureCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686188378125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e2b54d75-ca74-4998-9d7f-bed6b69a5f12", + "name": "xuqmSdk : default@ConfigureCmake cost memory 0.0124664306640625", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686188419291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "002d31a6-c97e-41b7-bf9a-a35bd8b64169", + "name": "runTaskFromQueue task cost before running: 632 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686188435083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d69db75b-069d-436f-ac68-ed0c4bfee844", + "name": "Finished :xuqmSdk:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686188374958, + "endTime": 341686188442250, + "totalTime": 53167 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "13d3ccae-6c16-4766-a733-1fb1257e92d8" + } + }, + { + "head": { + "id": "e88c712f-86a6-4a80-b720-fd6b67cd1c2b", + "name": "xuqmSdk:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686188761083, + "endTime": 341686189303916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Config", + "taskRunReasons": [], + "detailId": "2acbfa31-d7d3-4263-872f-cb7a6d9a7432", + "logId": "14e708a7-90ef-4180-a667-c324b6ef51c9" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2acbfa31-d7d3-4263-872f-cb7a6d9a7432", + "name": "create xuqmSdk:default@MergeProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686188601166 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "e88c712f-86a6-4a80-b720-fd6b67cd1c2b" + } + }, + { + "head": { + "id": "36235bbd-a362-42bd-92c6-682729417459", + "name": "Executing task :xuqmSdk:default@MergeProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686188764041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1db3758e-655f-4ee2-bbe1-845d972cffaf", + "name": "Task 'xuqmSdk:default@MergeProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686188865875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2cc1fd16-6d10-4b3c-b689-4895961df98c", + "name": "Incremental task xuqmSdk:default@MergeProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686189277208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6c4bc262-1cec-4985-bcf5-2319901b8fb4", + "name": "xuqmSdk : default@MergeProfile cost memory 0.09932708740234375", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686189291708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "14e708a7-90ef-4180-a667-c324b6ef51c9", + "name": "UP-TO-DATE :xuqmSdk:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686188761083, + "endTime": 341686189303916 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e88c712f-86a6-4a80-b720-fd6b67cd1c2b" + } + }, + { + "head": { + "id": "89669366-f2f4-43d5-8945-af05e5388381", + "name": "entry:default@SyscapTransform", + "description": "Transform SysCap in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686189661208, + "endTime": 341686195686750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [ + "The output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/syscap/default/rpcid.sc' does not exist." + ], + "detailId": "79af7be8-06c5-4993-ad51-84fb5ce9aa84", + "logId": "4ff1d1f1-fe3c-4680-9fec-a454f01b2a04" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "79af7be8-06c5-4993-ad51-84fb5ce9aa84", + "name": "create entry:default@SyscapTransform task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686189408916 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "89669366-f2f4-43d5-8945-af05e5388381" + } + }, + { + "head": { + "id": "7a2f77c8-d471-4a38-8bb8-583a3db6bfa6", + "name": "Executing task :entry:default@SyscapTransform", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686189664458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "71de4270-e843-4b42-91bc-3f2e3c04908c", + "name": "File: '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/syscap.json' from 'sysCapJsonPath' is not exists, just ignore.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686189688041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2cb7c2b6-5691-47c2-9683-50215444275d", + "name": "Task 'entry:default@SyscapTransform' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686189779208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "30281ddd-17c5-4b71-8f64-d015edad2b97", + "name": "entry:default@SyscapTransform is not up-to-date, since the output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/syscap/default/rpcid.sc' does not exist.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686195461375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fa4f34c6-f7a5-4aaa-9117-4fe8a3d266a7", + "name": "Incremental task entry:default@SyscapTransform pre-execution cost: 6 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686195521458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b8dbebfb-5938-415b-be7f-f76294d05684", + "name": "entry : default@SyscapTransform cost memory 0.1027984619140625", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686195654916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4186b236-8b64-406e-bcfa-cbad7a97a77d", + "name": "runTaskFromQueue task cost before running: 639 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686195677666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4ff1d1f1-fe3c-4680-9fec-a454f01b2a04", + "name": "Finished :entry:default@SyscapTransform", + "description": "Transform SysCap in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686189661208, + "endTime": 341686195686750, + "totalTime": 6006542 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "89669366-f2f4-43d5-8945-af05e5388381" + } + }, + { + "head": { + "id": "433857a8-9dd5-4242-8795-840f64b50669", + "name": "entry:default@ProcessRouterMap", + "description": "Process router map configuration.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686196362083, + "endTime": 341686197184875 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "ce9f3854-6127-4544-84e2-1d193c626584", + "logId": "c5b343c6-12a9-4737-90ca-5a750706dce4" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ce9f3854-6127-4544-84e2-1d193c626584", + "name": "create entry:default@ProcessRouterMap task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686195884458 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "433857a8-9dd5-4242-8795-840f64b50669" + } + }, + { + "head": { + "id": "d92aa3da-e681-4efb-9de0-177bac6ca6b2", + "name": "Executing task :entry:default@ProcessRouterMap", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686196368333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2951900f-0c5d-4f1f-988c-80882fe544d8", + "name": "Incremental task entry:default@ProcessRouterMap pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686197088458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0dab5773-bfe2-4b14-8c29-28cf3f11e6db", + "name": "entry : default@ProcessRouterMap cost memory 0.13964080810546875", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686197111750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c5b343c6-12a9-4737-90ca-5a750706dce4", + "name": "UP-TO-DATE :entry:default@ProcessRouterMap", + "description": "Process router map configuration.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686196362083, + "endTime": 341686197184875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "433857a8-9dd5-4242-8795-840f64b50669" + } + }, + { + "head": { + "id": "07eb2f7e-3af9-4659-8e19-7a028c136a25", + "name": "entry:default@ProcessShareConfig", + "description": "Process share config configuration.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686197687125, + "endTime": 341686198070833 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "f0874367-17ed-4672-a67f-7447bf4a05b8", + "logId": "dca1b309-2d57-4e1c-9a24-4508f51c138c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f0874367-17ed-4672-a67f-7447bf4a05b8", + "name": "create entry:default@ProcessShareConfig task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686197355208 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "07eb2f7e-3af9-4659-8e19-7a028c136a25" + } + }, + { + "head": { + "id": "650f36c8-753a-4273-ad7e-7d52b30b2893", + "name": "Executing task :entry:default@ProcessShareConfig", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686197691500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "aad6fe22-4198-43e7-9a18-8b29f7d1f80a", + "name": "Incremental task entry:default@ProcessShareConfig pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686198036625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "67e858a4-80a8-40f3-96d9-3c52834c66ec", + "name": "entry : default@ProcessShareConfig cost memory 0.12107086181640625", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686198055083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dca1b309-2d57-4e1c-9a24-4508f51c138c", + "name": "UP-TO-DATE :entry:default@ProcessShareConfig", + "description": "Process share config configuration.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686197687125, + "endTime": 341686198070833 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "07eb2f7e-3af9-4659-8e19-7a028c136a25" + } + }, + { + "head": { + "id": "12dd9e1d-e07c-46d1-9785-b3c5f926a587", + "name": "entry:default@ProcessStartupConfig", + "description": "Process startup configuration.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686198515708, + "endTime": 341686199034125 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [ + "The output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/startup/default/startup_config.json' does not exist." + ], + "detailId": "6e397509-afcd-4acd-a607-32241935b71f", + "logId": "60241d68-7c7d-48ab-8637-9077683ea5e5" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "6e397509-afcd-4acd-a607-32241935b71f", + "name": "create entry:default@ProcessStartupConfig task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686198223791 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "12dd9e1d-e07c-46d1-9785-b3c5f926a587" + } + }, + { + "head": { + "id": "2cea2352-ec5b-4c97-a5ae-ed4071d27c81", + "name": "Executing task :entry:default@ProcessStartupConfig", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686198519625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7dce0c8e-b13d-4fd6-b507-f7c3335dcb65", + "name": "Task 'entry:default@ProcessStartupConfig' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686198582125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ee0b0e31-8f7c-446b-99bb-4dbfa17a4301", + "name": "entry:default@ProcessStartupConfig is not up-to-date, since the output file '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/startup/default/startup_config.json' does not exist.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686198772708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a5448522-0c35-434d-b748-58ee6454f664", + "name": "Incremental task entry:default@ProcessStartupConfig pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686198787333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c458b33e-7221-42d1-afb8-e97696d86c3a", + "name": "entry : default@ProcessStartupConfig cost memory 0.1175994873046875", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686199009208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8d0cb394-b4e7-41ed-afcb-e7fcc125cdee", + "name": "runTaskFromQueue task cost before running: 643 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686199025250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "60241d68-7c7d-48ab-8637-9077683ea5e5", + "name": "Finished :entry:default@ProcessStartupConfig", + "description": "Process startup configuration.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686198515708, + "endTime": 341686199034125, + "totalTime": 503375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "12dd9e1d-e07c-46d1-9785-b3c5f926a587" + } + }, + { + "head": { + "id": "5bdcf694-553b-4223-b7a4-1231820036c7", + "name": "entry:default@CreateBuildProfile", + "description": "Create the BuildProfile.ets file for the HAP/HSP package.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686199524291, + "endTime": 341686199848458 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "baa02191-4990-4c32-894e-d32120f671da", + "logId": "4e2a5ba0-525a-490c-ac9f-378a104f8a55" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "baa02191-4990-4c32-894e-d32120f671da", + "name": "create entry:default@CreateBuildProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686199236833 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "5bdcf694-553b-4223-b7a4-1231820036c7" + } + }, + { + "head": { + "id": "89eb9afb-cf04-4c0c-ae52-60e6b3f7d9df", + "name": "Executing task :entry:default@CreateBuildProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686199527791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f1d30035-895a-4c18-b741-52d549cfa572", + "name": "Task 'entry:default@CreateBuildProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686199605041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cbb33bcc-f52c-4abb-b95c-f79803ec1f7c", + "name": "Incremental task entry:default@CreateBuildProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686199815041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d24abd3a-b6bb-4944-897a-dc781c66af60", + "name": "entry : default@CreateBuildProfile cost memory 0.07588958740234375", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686199833958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4e2a5ba0-525a-490c-ac9f-378a104f8a55", + "name": "UP-TO-DATE :entry:default@CreateBuildProfile", + "description": "Create the BuildProfile.ets file for the HAP/HSP package.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686199524291, + "endTime": 341686199848458 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "5bdcf694-553b-4223-b7a4-1231820036c7" + } + }, + { + "head": { + "id": "1142cd3b-b285-4f87-8123-094db6e63fb6", + "name": "xuqmSdk:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686200184750, + "endTime": 341686200251458 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "8d02d0a8-3bef-40eb-9177-427cc82e2311", + "logId": "a2e4f6dc-90c5-4e46-941b-b6ccdca882a1" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8d02d0a8-3bef-40eb-9177-427cc82e2311", + "name": "create xuqmSdk:default@BuildNativeWithCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686199942500 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "1142cd3b-b285-4f87-8123-094db6e63fb6" + } + }, + { + "head": { + "id": "5ff39802-d9ec-4166-bfca-680ae8dbd7a3", + "name": "Executing task :xuqmSdk:default@BuildNativeWithCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686200188083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6898e46e-322b-4eea-a175-ccddd28d0f2d", + "name": "xuqmSdk : default@BuildNativeWithCmake cost memory 0.01360321044921875", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686200229416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dd6cd1ca-754a-4f7f-a752-dab75f8825bb", + "name": "runTaskFromQueue task cost before running: 644 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686200244041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a2e4f6dc-90c5-4e46-941b-b6ccdca882a1", + "name": "Finished :xuqmSdk:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686200184750, + "endTime": 341686200251458, + "totalTime": 54500 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "1142cd3b-b285-4f87-8123-094db6e63fb6" + } + }, + { + "head": { + "id": "84bb71c6-bd60-410f-a159-90b7eee5fb46", + "name": "entry:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686200432083, + "endTime": 341686200985958 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Config", + "taskRunReasons": [], + "detailId": "90b8bc6b-b712-4217-b1a3-fc04dd82ae25", + "logId": "3bd1668a-fa35-439c-b89a-a78dfdcac5ff" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "90b8bc6b-b712-4217-b1a3-fc04dd82ae25", + "name": "create entry:default@MergeProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686200316041 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "84bb71c6-bd60-410f-a159-90b7eee5fb46" + } + }, + { + "head": { + "id": "da72f966-ac22-4477-acde-05ef7e6ec017", + "name": "Executing task :entry:default@MergeProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686200436583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5190bf92-9e97-4896-bcd1-141b1eb6fc6f", + "name": "Task 'entry:default@MergeProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686200654958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a48e7347-ba24-45b1-820a-2c32d8d388c0", + "name": "Incremental task entry:default@MergeProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686200957458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "adadda57-ead5-480d-a6f5-2e029893ec7b", + "name": "entry : default@MergeProfile cost memory 0.1148223876953125", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686200973958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3bd1668a-fa35-439c-b89a-a78dfdcac5ff", + "name": "UP-TO-DATE :entry:default@MergeProfile", + "description": "Merge app config manifest files in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686200432083, + "endTime": 341686200985958 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "84bb71c6-bd60-410f-a159-90b7eee5fb46" + } + }, + { + "head": { + "id": "6940018f-b639-47dc-b009-8be88631d56a", + "name": "entry:default@GenerateLoaderJson", + "description": "Generate loader.json in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686201703750, + "endTime": 341686203875791 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "dd59e49f-b8e4-43e2-a0f8-d5cd2a3ad4ac", + "logId": "21db3fb9-5afe-4afa-8bc4-7963c696a3ba" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "dd59e49f-b8e4-43e2-a0f8-d5cd2a3ad4ac", + "name": "create entry:default@GenerateLoaderJson task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686201143875 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "6940018f-b639-47dc-b009-8be88631d56a" + } + }, + { + "head": { + "id": "2b033c43-6ed5-46e2-a449-635b08b542f7", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686201418750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "50e31227-e479-4300-a8f4-b206ce1b4347", + "name": "Executing task :entry:default@GenerateLoaderJson", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686201706166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f1ae9223-a1c4-43e7-a062-cb8e977619fc", + "name": "Task 'entry:default@GenerateLoaderJson' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686202233583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d466e4ca-ef9c-47e4-b974-c08fb75336ee", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686202755958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fb675f20-2c27-4203-98c8-0a1d66b364f5", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686203148458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "11bb0bc3-1c43-4a1c-9670-a145ab197eca", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686203398958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d557f78e-af6a-45d7-a64b-ef319e72f59c", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686203503083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e2e49352-e8a5-4f5b-97cf-722e345e4d7f", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686203589250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "724dda33-e7de-49d1-9560-d896367bd479", + "name": "Incremental task entry:default@GenerateLoaderJson pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686203834000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "563f626f-db39-44c8-bec5-1c5730905421", + "name": "entry : default@GenerateLoaderJson cost memory 0.365234375", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686203860291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "21db3fb9-5afe-4afa-8bc4-7963c696a3ba", + "name": "UP-TO-DATE :entry:default@GenerateLoaderJson", + "description": "Generate loader.json in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686201703750, + "endTime": 341686203875791 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "6940018f-b639-47dc-b009-8be88631d56a" + } + }, + { + "head": { + "id": "051b2363-4c57-4c25-818c-bb78779533ce", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686204126958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6fe5070b-31c9-473d-bcbd-db2661ddcf56", + "name": "Obtain build option for module 'xuqmSdk' target 'default'in this build.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686204225666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "49a0936b-2a6a-4e1c-83ec-2df858f8e1d5", + "name": "xuqmSdk:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686204790166, + "endTime": 341686204964291 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "6c0dbb79-d17d-43f7-806b-ded2ebfd9d0c", + "logId": "58f73cf4-f225-4f52-8be4-775ef76263dc" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "6c0dbb79-d17d-43f7-806b-ded2ebfd9d0c", + "name": "create xuqmSdk:default@BuildNativeWithNinja task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686204424125 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "49a0936b-2a6a-4e1c-83ec-2df858f8e1d5" + } + }, + { + "head": { + "id": "902e79df-c613-481a-b80d-2c8c4a6bfae6", + "name": "Executing task :xuqmSdk:default@BuildNativeWithNinja", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686204794083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ca36c756-3c41-4a86-b8ac-e1a61188ef57", + "name": "xuqmSdk : default@BuildNativeWithNinja cost memory 0.01908111572265625", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686204932208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c9456e7d-7e85-4fc5-bc05-172a220529c7", + "name": "runTaskFromQueue task cost before running: 649 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686204953791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "58f73cf4-f225-4f52-8be4-775ef76263dc", + "name": "Finished :xuqmSdk:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686204790166, + "endTime": 341686204964291, + "totalTime": 154459 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "49a0936b-2a6a-4e1c-83ec-2df858f8e1d5" + } + }, + { + "head": { + "id": "60b7f347-bd81-4783-b9cf-950700a93af5", + "name": "entry:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686205226083, + "endTime": 341686205283541 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "a6366738-5374-4a74-b2d7-3b33c9925048", + "logId": "35d6301d-c0e8-402c-a27b-418c17ec43cc" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a6366738-5374-4a74-b2d7-3b33c9925048", + "name": "create entry:default@ConfigureCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686205074500 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "60b7f347-bd81-4783-b9cf-950700a93af5" + } + }, + { + "head": { + "id": "5fd57cf4-6568-45d1-a58a-028721c592b6", + "name": "Executing task :entry:default@ConfigureCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686205228750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c57015ed-0840-4c47-8b37-1cc0d350f702", + "name": "entry : default@ConfigureCmake cost memory 0.0121307373046875", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686205260708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c5279e0c-f167-435c-b56f-473eeb731ee3", + "name": "runTaskFromQueue task cost before running: 649 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686205275708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "35d6301d-c0e8-402c-a27b-418c17ec43cc", + "name": "Finished :entry:default@ConfigureCmake", + "description": "cache native strip .so fileInfo", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686205226083, + "endTime": 341686205283541, + "totalTime": 43666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "60b7f347-bd81-4783-b9cf-950700a93af5" + } + }, + { + "head": { + "id": "564fad50-4f45-4b1c-8a51-52e1d742dca1", + "name": "entry:default@MakePackInfo", + "description": "Generate module pack.info in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686205792208, + "endTime": 341686206212750 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "9f09ca47-694c-4b28-9bfa-3f3a8f56532f", + "logId": "578343f0-db40-47be-bb35-8dc3ecf031e2" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9f09ca47-694c-4b28-9bfa-3f3a8f56532f", + "name": "create entry:default@MakePackInfo task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686205525541 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "564fad50-4f45-4b1c-8a51-52e1d742dca1" + } + }, + { + "head": { + "id": "64237f05-8052-4946-b06e-cca74fae09ce", + "name": "Executing task :entry:default@MakePackInfo", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686205794791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "07640d2a-e041-4170-94c5-5aa2b2a26556", + "name": "Incremental task entry:default@MakePackInfo pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686206182083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4426b678-ffa7-4f76-844d-81136e5eee8a", + "name": "entry : default@MakePackInfo cost memory 0.08880615234375", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686206197625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "578343f0-db40-47be-bb35-8dc3ecf031e2", + "name": "UP-TO-DATE :entry:default@MakePackInfo", + "description": "Generate module pack.info in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686205792208, + "endTime": 341686206212750 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "564fad50-4f45-4b1c-8a51-52e1d742dca1" + } + }, + { + "head": { + "id": "e9216db1-262e-4fb3-84e4-5492b801f71b", + "name": "entry:default@ProcessProfile", + "description": "Process app config manifest files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686206799833, + "endTime": 341686207417541 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Config", + "taskRunReasons": [], + "detailId": "ae688196-ba52-459a-be63-4f195f576d05", + "logId": "ee3af41c-1a0a-4094-977c-4ef5870b863e" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ae688196-ba52-459a-be63-4f195f576d05", + "name": "create entry:default@ProcessProfile task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686206322250 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "e9216db1-262e-4fb3-84e4-5492b801f71b" + } + }, + { + "head": { + "id": "721ebedd-c0a7-4d76-9f51-67fa46d1cf08", + "name": "Executing task :entry:default@ProcessProfile", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686206802791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b67bcf0a-00a8-4855-9199-3624a8b45e15", + "name": "Task 'entry:default@ProcessProfile' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686207117625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1f7d9c54-031e-4b3d-807e-03ebef899f87", + "name": "Incremental task entry:default@ProcessProfile pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686207391083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d587f8cf-5830-4007-ad02-418057987a84", + "name": "entry : default@ProcessProfile cost memory 0.11389923095703125", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686207407083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ee3af41c-1a0a-4094-977c-4ef5870b863e", + "name": "UP-TO-DATE :entry:default@ProcessProfile", + "description": "Process app config manifest files in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686206799833, + "endTime": 341686207417541 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e9216db1-262e-4fb3-84e4-5492b801f71b" + } + }, + { + "head": { + "id": "61165102-ded6-4104-a4aa-cf39b5e59547", + "name": "xuqmSdk:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686207738750, + "endTime": 341686208285375 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Resources", + "taskRunReasons": [], + "detailId": "ba2ae5a7-0c16-4e44-aef9-d7007789cc95", + "logId": "a403e0e9-3b7e-43e9-aa27-551c03809475" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ba2ae5a7-0c16-4e44-aef9-d7007789cc95", + "name": "create xuqmSdk:default@ProcessLibs task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686207506541 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "61165102-ded6-4104-a4aa-cf39b5e59547" + } + }, + { + "head": { + "id": "f8c8e535-30b4-4a87-a209-9e7ff8da120d", + "name": "Executing task :xuqmSdk:default@ProcessLibs", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686207741458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9fcb3450-974d-40c1-9470-31fb193fc4bf", + "name": "Incremental task xuqmSdk:default@ProcessLibs pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686208258875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0cd61d9a-0167-4711-8ac8-a21f82605590", + "name": "xuqmSdk : default@ProcessLibs cost memory 0.08115386962890625", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686208275041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a403e0e9-3b7e-43e9-aa27-551c03809475", + "name": "UP-TO-DATE :xuqmSdk:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686207738750, + "endTime": 341686208285375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "61165102-ded6-4104-a4aa-cf39b5e59547" + } + }, + { + "head": { + "id": "3c0e3340-b6f1-4efa-8cb1-74bf3c17ecd7", + "name": "entry:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686208446375, + "endTime": 341686208513500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "637dde8b-20f2-4b6b-9949-2a6bf3e3d04a", + "logId": "bd9fd2e2-1104-4ea8-be7b-f2c8a10042fb" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "637dde8b-20f2-4b6b-9949-2a6bf3e3d04a", + "name": "create entry:default@BuildNativeWithCmake task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686208374500 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "3c0e3340-b6f1-4efa-8cb1-74bf3c17ecd7" + } + }, + { + "head": { + "id": "282a9b40-3cc2-4cef-a967-d73eae4c2e00", + "name": "Executing task :entry:default@BuildNativeWithCmake", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686208448458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "814123c7-3c4d-4359-a69f-dbf158148df8", + "name": "entry : default@BuildNativeWithCmake cost memory 0.012054443359375", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686208477666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3f0c8052-6d79-45ed-a27e-90fc01800619", + "name": "runTaskFromQueue task cost before running: 652 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686208504375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bd9fd2e2-1104-4ea8-be7b-f2c8a10042fb", + "name": "Finished :entry:default@BuildNativeWithCmake", + "description": "Compile CPP source with CMake in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686208446375, + "endTime": 341686208513500, + "totalTime": 39875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3c0e3340-b6f1-4efa-8cb1-74bf3c17ecd7" + } + }, + { + "head": { + "id": "59826c12-46fa-4730-9038-3b8c41f8eca9", + "name": "entry:default@ProcessResource", + "description": "Process resources in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686209278291, + "endTime": 341686210113666 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [], + "detailId": "8434a2ee-63d8-4228-931e-dc534687322d", + "logId": "ac98b7d7-7c4c-4891-8d41-9ea9e339e1ca" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8434a2ee-63d8-4228-931e-dc534687322d", + "name": "create entry:default@ProcessResource task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686208626208 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "59826c12-46fa-4730-9038-3b8c41f8eca9" + } + }, + { + "head": { + "id": "d12ecac6-49c9-4e91-b777-63795b8f873b", + "name": "restool module names: entry,xuqmSdk; moduleName=entry, taskName=default@ProcessResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686208851208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8c98c3c4-ca4e-416d-8898-572597b44d95", + "name": "Executing task :entry:default@ProcessResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686209678625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6aebb2b8-3f53-4433-8f8b-fb8a8a7c9fd6", + "name": "Task 'entry:default@ProcessResource' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686209732833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e809c14a-93c5-432e-9f3a-b999e0218281", + "name": "Incremental task entry:default@ProcessResource pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686209944958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bc570e65-089c-4621-aeda-cc8477bb27ef", + "name": "entry : default@ProcessResource cost memory 0.1087188720703125", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686210013416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ac98b7d7-7c4c-4891-8d41-9ea9e339e1ca", + "name": "UP-TO-DATE :entry:default@ProcessResource", + "description": "Process resources in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686209278291, + "endTime": 341686210113666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "59826c12-46fa-4730-9038-3b8c41f8eca9" + } + }, + { + "head": { + "id": "6f1f8dd5-f8bd-4c7d-a0a4-f73ef296a408", + "name": "xuqmSdk:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686210585166, + "endTime": 341686210812208 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "xuqmSdk", + "category": "Native", + "taskRunReasons": [], + "detailId": "3044fe90-325b-4512-8db9-f069c2ef4280", + "logId": "b2aed4cf-dc8e-407a-8e37-97c63e103e6c" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3044fe90-325b-4512-8db9-f069c2ef4280", + "name": "create xuqmSdk:default@DoNativeStrip task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686210280291 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "6f1f8dd5-f8bd-4c7d-a0a4-f73ef296a408" + } + }, + { + "head": { + "id": "3c2a0c46-cc13-4772-a389-5726716b38c3", + "name": "Executing task :xuqmSdk:default@DoNativeStrip", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686210589166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1c6724fd-9247-4e37-a72d-f32df5488587", + "name": "Task 'xuqmSdk:default@DoNativeStrip' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686210630541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "081f5ff3-0278-4996-9541-20aeb58d9db2", + "name": "Incremental task xuqmSdk:default@DoNativeStrip pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686210787666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "84bf3513-2e35-4027-b514-f2d4e1d9c8d3", + "name": "xuqmSdk : default@DoNativeStrip cost memory 0.0588836669921875", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686210802541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b2aed4cf-dc8e-407a-8e37-97c63e103e6c", + "name": "UP-TO-DATE :xuqmSdk:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686210585166, + "endTime": 341686210812208 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "6f1f8dd5-f8bd-4c7d-a0a4-f73ef296a408" + } + }, + { + "head": { + "id": "650cd250-b525-422a-92c6-393c2c72796e", + "name": "entry:default@CompileResource", + "description": "Compile project resources in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686211265583, + "endTime": 341686213173833 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [], + "detailId": "046226ae-57ef-4cd5-b783-a55d2182081f", + "logId": "232ee1a4-6358-466d-bf98-c9b5b52a8ad1" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "046226ae-57ef-4cd5-b783-a55d2182081f", + "name": "create entry:default@CompileResource task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686210903916 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "650cd250-b525-422a-92c6-393c2c72796e" + } + }, + { + "head": { + "id": "46f82e3b-5dfe-499e-99c7-9cb72e06a413", + "name": "restool module names: entry,xuqmSdk; moduleName=entry, taskName=default@CompileResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686211008666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dee3e692-44c3-4f33-afdb-f5d29af4b5e2", + "name": "Executing task :entry:default@CompileResource", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686211288833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b6bb021f-d1af-4ef1-962e-0de9631752ff", + "name": "Incremental task entry:default@CompileResource pre-execution cost: 2 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686213087041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "be67cf03-7557-41c6-92bc-130443e53424", + "name": "entry : default@CompileResource cost memory 0.32190704345703125", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686213144958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "232ee1a4-6358-466d-bf98-c9b5b52a8ad1", + "name": "UP-TO-DATE :entry:default@CompileResource", + "description": "Compile project resources in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686211265583, + "endTime": 341686213173833 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "650cd250-b525-422a-92c6-393c2c72796e" + } + }, + { + "head": { + "id": "0a48691d-8805-4254-8aeb-4d75ce8ec12a", + "name": "entry:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686213573291, + "endTime": 341686213690583 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "10d147ec-b3bd-46d8-bf6b-113b94e5f565", + "logId": "7f4679c9-9b6a-4a28-9a8e-096a63abca63" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "10d147ec-b3bd-46d8-bf6b-113b94e5f565", + "name": "create entry:default@BuildNativeWithNinja task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686213460375 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "0a48691d-8805-4254-8aeb-4d75ce8ec12a" + } + }, + { + "head": { + "id": "22a977b9-6597-43af-90b9-d055d6cac85e", + "name": "Executing task :entry:default@BuildNativeWithNinja", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686213576041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "963e7404-0d92-4f84-8946-aa15535f0a3f", + "name": "entry : default@BuildNativeWithNinja cost memory 0.0177764892578125", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686213661916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1c40a791-b678-4a2d-8f46-ba91e840c17f", + "name": "runTaskFromQueue task cost before running: 657 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686213680458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7f4679c9-9b6a-4a28-9a8e-096a63abca63", + "name": "Finished :entry:default@BuildNativeWithNinja", + "description": "Compile CPP source with Ninja in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686213573291, + "endTime": 341686213690583, + "totalTime": 101125 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "0a48691d-8805-4254-8aeb-4d75ce8ec12a" + } + }, + { + "head": { + "id": "448cfaca-3c6e-4540-b159-f4142de0d817", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686214439833, + "endTime": 341688806649125 + }, + "additional": { + "children": [ + "32cf197c-3e5c-4b58-be26-3a9433f96228", + "1100c889-caa4-46c0-8960-d4b16ceaf6fd" + ], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "ArkTS", + "taskRunReasons": [], + "detailId": "5d796ffb-3e67-403a-b767-49ec6f42beac", + "logId": "aae41254-fc39-461f-b570-f852c7e72017" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "5d796ffb-3e67-403a-b767-49ec6f42beac", + "name": "create entry:default@CompileArkTS task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686213948166 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "448cfaca-3c6e-4540-b159-f4142de0d817" + } + }, + { + "head": { + "id": "a3210e13-a2bd-46b9-8b84-e9324b6cef69", + "name": "Executing task :entry:default@CompileArkTS", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686214443541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c39dc465-d494-4d6d-aa1a-6bf49bc78c2a", + "name": "obfuscationOptions: undefined", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686214744333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "39a21862-f01b-4d7a-bda3-8f9b3d89f3dd", + "name": "Task 'entry:default@CompileArkTS' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686215648291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3b4cc9cc-db5d-43bc-a8f8-23c37acb3fd8", + "name": "build config:", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686218700208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c1330ed0-a59c-4711-b1ed-47f5d58098d0", + "name": "Compile arkts with external api path: /Users/xuqinmin/sdk/command-line-tools/sdk/default/hms/ets", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686219283125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4f80a065-dff3-401c-86f2-dc5c74d50c23", + "name": "Since there is no instance or instance is terminated, create a new worker pool.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686219512750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b48380e6-1479-4291-9d55-f59941a414b0", + "name": "Worker pool is initialized with config: {\n minPoolNum: 2,\n maxPoolNum: undefined,\n maxCoreSize: undefined,\n cacheCapacity: undefined,\n cacheTtl: undefined\n}", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686219561500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "340d1c2e-c645-4e63-9aca-16b2729b8c8e", + "name": "Create resident worker with id: 0.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686220068333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "88e6dd9c-71c5-4929-8074-bd8120811346", + "name": "Create resident worker with id: 1.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686220887708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "20b6a596-2268-4601-8c45-49d578bdf9c7", + "name": "default@CompileArkTS work[0] is submitted.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686221736833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "32cf197c-3e5c-4b58-be26-3a9433f96228", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Worker4", + "startTime": 341686779857916, + "endTime": 341688805096041 + }, + "additional": { + "children": [ + "41f02e6a-d259-41bd-9cc1-09af1ff0c4af", + "6081f7e8-4366-4171-b605-ba8b6860c2a3", + "595ad5ab-4d03-4105-bf41-84e0506e1835", + "c3d43c6a-0bcf-49eb-9a68-2e17441f4fac", + "dfbfdcdc-56c9-47b9-a88f-70b1c1249fbd", + "f5a75dd5-2f64-4706-aa4a-09786e9fd60e", + "3f42c5c5-1d3e-46e6-9462-5cca92a03ab2" + ], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "", + "taskRunReasons": [], + "parent": "448cfaca-3c6e-4540-b159-f4142de0d817", + "logId": "6e164bab-e91c-4ce0-a6fa-dfbe52807ba5" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "0854ff10-4b7c-457b-beda-ffa6ee866ac8", + "name": "default@CompileArkTS work[0] is pushed to ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686222028583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bef522c6-d1d1-4763-ac37-53d296d549fa", + "name": "A work dispatched to worker[13] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686222134166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "27f64fe2-8abd-4d14-ac92-22d1b7c9dc67", + "name": "A work dispatched to worker[12] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686222148833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "aa2560f9-054c-44d1-ae5e-1867c2cd99b4", + "name": "A work dispatched to worker[11] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686222156791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "28bb741a-f09e-413a-9c49-0c88c8a769d9", + "name": "A work dispatched to worker[10] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686222164000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ece1e4ef-e9d3-43c0-997e-d4e75f31c972", + "name": "A work dispatched to worker[9] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686222172000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7e937faa-7511-48bb-972e-f243f981c2c8", + "name": "A work dispatched to worker[8] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686222178791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7b5f97d3-0c0d-4c66-9364-6b6c3e6fbb7d", + "name": "A work dispatched to worker[7] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686222185958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0e5fbfd2-df8c-40e5-b28c-5e71393eed47", + "name": "A work dispatched to worker[6] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686222191541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "afffcd9f-cf6b-42c7-8fa7-b1a332989581", + "name": "A work dispatched to worker[5] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686222198000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c705e0e1-4ecb-4661-8d4f-c1d00dc61fa6", + "name": "Create resident worker with id: 4.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686222245833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4db1e1d9-635c-4964-87aa-e5ee93f24016", + "name": "default@CompileArkTS work[0] has been dispatched to worker[4].", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686222638291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6bfb0de7-02ce-4039-a3a7-4003986cd0d8", + "name": "default@CompileArkTS work[0] is dispatched.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686222680875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ea760060-c39b-432d-8e8e-6805cdb9fbca", + "name": "CopyResources startTime: 341686222721833", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686222723458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a5a99abd-3f62-439a-893a-82990afc313f", + "name": "default@CompileArkTS work[1] is submitted.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686222742708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1100c889-caa4-46c0-8960-d4b16ceaf6fd", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Worker12", + "startTime": 341686459074541, + "endTime": 341686463375708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "", + "taskRunReasons": [], + "parent": "448cfaca-3c6e-4540-b159-f4142de0d817", + "logId": "40f61d6c-c406-41dd-beba-86570b18e16f" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9d8936d5-810c-40d7-8b67-26e40eb73e7c", + "name": "default@CompileArkTS work[1] is pushed to ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686222908958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "01c3b070-b8af-4562-86c3-e418e6a37308", + "name": "A work dispatched to worker[13] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686222918958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "793788f1-f015-4103-b541-45cc6b9dd216", + "name": "Create resident worker with id: 12.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686222929541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c3d2b6d7-3bf5-4264-8646-b9933de0bdcd", + "name": "default@CompileArkTS work[1] has been dispatched to worker[12].", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686223219416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b28ce2e2-b951-4bbf-a1f0-9224e0190c68", + "name": "default@CompileArkTS work[1] is dispatched.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686223231333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5ed98bd0-e023-410b-ba03-ebd6f4e21931", + "name": "entry : default@CompileArkTS cost memory 2.3368453979492188", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686223293458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "331a0eff-f7ee-4b8a-88e1-e5e3006edf94", + "name": "entry:default@BuildJS", + "description": "Compile ArkTS or JS components using Node.js for large-system devices in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686224026041, + "endTime": 341686224720708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "ArkTS", + "taskRunReasons": [], + "detailId": "f7bc07fc-4867-44ea-94d4-0b663050bbc9", + "logId": "02773462-5af5-4bff-a519-5e7a2f68291e" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f7bc07fc-4867-44ea-94d4-0b663050bbc9", + "name": "create entry:default@BuildJS task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686223447791 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "331a0eff-f7ee-4b8a-88e1-e5e3006edf94" + } + }, + { + "head": { + "id": "9fbb9057-c089-4680-b30b-0b15823d18ff", + "name": "Executing task :entry:default@BuildJS", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686224030958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c67150c6-8b79-4ad1-a198-677838b627f4", + "name": "Task 'entry:default@BuildJS' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686224127375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "70796da7-c444-4e47-9381-4507419a41cd", + "name": "entry : default@BuildJS cost memory 0.13238525390625", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686224683250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ae6be975-671b-4f6d-b5cc-5153995ca7d0", + "name": "runTaskFromQueue task cost before running: 668 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686224705625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "02773462-5af5-4bff-a519-5e7a2f68291e", + "name": "Finished :entry:default@BuildJS", + "description": "Compile ArkTS or JS components using Node.js for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686224026041, + "endTime": 341686224720708, + "totalTime": 672791 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "331a0eff-f7ee-4b8a-88e1-e5e3006edf94" + } + }, + { + "head": { + "id": "8e731766-a6b4-47e8-83d7-34978dc592cb", + "name": "entry:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686224961166, + "endTime": 341686226488583 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [], + "detailId": "9e0aafba-0509-40ae-a692-4383367907c8", + "logId": "5bca173c-88f5-446b-923b-bf53a444f603" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9e0aafba-0509-40ae-a692-4383367907c8", + "name": "create entry:default@ProcessLibs task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686224861833 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "8e731766-a6b4-47e8-83d7-34978dc592cb" + } + }, + { + "head": { + "id": "28ea7aa4-733a-43d9-b9f0-9d938983fc93", + "name": "Executing task :entry:default@ProcessLibs", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686224963166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d3473f30-334b-4377-b7df-b9fb5ca4ae87", + "name": "Incremental task entry:default@ProcessLibs pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686226447916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9a384663-be67-439d-9b05-ec5e6fc886ae", + "name": "entry : default@ProcessLibs cost memory 0.2184295654296875", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686226477666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5bca173c-88f5-446b-923b-bf53a444f603", + "name": "UP-TO-DATE :entry:default@ProcessLibs", + "description": "Process .so files in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686224961166, + "endTime": 341686226488583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "8e731766-a6b4-47e8-83d7-34978dc592cb" + } + }, + { + "head": { + "id": "4227bcd7-a297-4596-8557-8f8eae51f127", + "name": "entry:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686226692208, + "endTime": 341686226894708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "a617322d-32c5-4845-9864-146bf86dda55", + "logId": "7e323ed3-dc3c-413f-978d-16dd7c0ce2b6" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "a617322d-32c5-4845-9864-146bf86dda55", + "name": "create entry:default@DoNativeStrip task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686226583916 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "4227bcd7-a297-4596-8557-8f8eae51f127" + } + }, + { + "head": { + "id": "4320ec37-dfa0-4b8b-91b4-d8b96b1c7722", + "name": "Executing task :entry:default@DoNativeStrip", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686226694791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5a1a0d62-15b7-4fb6-a83a-012c55182e57", + "name": "Task 'entry:default@DoNativeStrip' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686226723291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bdaa58de-87f4-492e-a3c8-651d034edf3f", + "name": "Incremental task entry:default@DoNativeStrip pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686226872083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ebcd2a78-7a55-4001-8f23-ddcb4b9fe660", + "name": "entry : default@DoNativeStrip cost memory 0.05702972412109375", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686226885208 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7e323ed3-dc3c-413f-978d-16dd7c0ce2b6", + "name": "UP-TO-DATE :entry:default@DoNativeStrip", + "description": "Strip .so files to decrease size.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686226692208, + "endTime": 341686226894708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "4227bcd7-a297-4596-8557-8f8eae51f127" + } + }, + { + "head": { + "id": "951cd36f-ca6f-453d-887c-0a2901e4316d", + "name": "entry:default@CacheNativeLibs", + "description": "cache native strip .so fileInfo", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686227305625, + "endTime": 341686227528458 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Native", + "taskRunReasons": [], + "detailId": "14f80c86-6284-489e-a26f-969fddaff01e", + "logId": "332606af-8a95-4c44-bb05-d03043565bb8" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "14f80c86-6284-489e-a26f-969fddaff01e", + "name": "create entry:default@CacheNativeLibs task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686226967375 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "951cd36f-ca6f-453d-887c-0a2901e4316d" + } + }, + { + "head": { + "id": "1a1122e4-8582-4e19-ab28-3044009fb65c", + "name": "Executing task :entry:default@CacheNativeLibs", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686227310708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2833c496-0d4d-4cdd-8ee5-cd0ea4d79664", + "name": "Task 'entry:default@CacheNativeLibs' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686227358541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b667fee0-0751-4e24-b022-b578ba936403", + "name": "Incremental task entry:default@CacheNativeLibs pre-execution cost: 1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686227506916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "eb3bbd6c-0c53-456f-bd36-5ad76cdc9bc3", + "name": "entry : default@CacheNativeLibs cost memory 0.06646728515625", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686227519416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "332606af-8a95-4c44-bb05-d03043565bb8", + "name": "UP-TO-DATE :entry:default@CacheNativeLibs", + "description": "cache native strip .so fileInfo", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686227305625, + "endTime": 341686227528458 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "951cd36f-ca6f-453d-887c-0a2901e4316d" + } + }, + { + "head": { + "id": "721f9d13-af62-4bdd-af8b-3e71486fb6e1", + "name": "worker[12] has one work done.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686463602791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "83cfeb80-a650-482b-8607-fee7d3afdd22", + "name": "CopyResources is end, endTime: 341686463727041", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686463733791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dfeefb06-5c8f-4787-82d6-2480bc900322", + "name": "default@CompileArkTS work[1] done.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686463865500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "40f61d6c-c406-41dd-beba-86570b18e16f", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Worker12", + "startTime": 341686459074541, + "endTime": 341686463375708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "1100c889-caa4-46c0-8960-d4b16ceaf6fd", + "parent": "aae41254-fc39-461f-b570-f852c7e72017" + } + }, + { + "head": { + "id": "293291d7-ef63-4fce-9ecf-67c3a4fcbc56", + "name": "A work dispatched to worker[12] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686463959583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "64216d49-d303-40ec-8518-b198ae1db3e6", + "name": "worker[4] has one work done.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688805689750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "41f02e6a-d259-41bd-9cc1-09af1ff0c4af", + "name": "generate configuration information", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Worker4", + "startTime": 341686780463375, + "endTime": 341687064303625 + }, + "additional": { + "children": [], + "state": "success", + "totalTime": 0, + "frequency": 0, + "fromHook": false, + "parent": "32cf197c-3e5c-4b58-be26-3a9433f96228", + "logId": "e20f95ce-4314-4869-9ffe-9e1c9633d2fa" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e20f95ce-4314-4869-9ffe-9e1c9633d2fa", + "name": "generate configuration information", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686780463375, + "endTime": 341687064303625 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "41f02e6a-d259-41bd-9cc1-09af1ff0c4af", + "parent": "6e164bab-e91c-4ce0-a6fa-dfbe52807ba5" + } + }, + { + "head": { + "id": "6081f7e8-4366-4171-b605-ba8b6860c2a3", + "name": "read build package cache", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Worker4", + "startTime": 341687064410166, + "endTime": 341687064594375 + }, + "additional": { + "children": [], + "state": "success", + "totalTime": 0, + "frequency": 0, + "fromHook": false, + "parent": "32cf197c-3e5c-4b58-be26-3a9433f96228", + "logId": "2fedef9e-5ee4-496c-ae08-44513a58ea78" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2fedef9e-5ee4-496c-ae08-44513a58ea78", + "name": "read build package cache", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341687064410166, + "endTime": 341687064594375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "6081f7e8-4366-4171-b605-ba8b6860c2a3", + "parent": "6e164bab-e91c-4ce0-a6fa-dfbe52807ba5" + } + }, + { + "head": { + "id": "595ad5ab-4d03-4105-bf41-84e0506e1835", + "name": "remove uncacheable modules", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Worker4", + "startTime": 341687064632875, + "endTime": 341687064634791 + }, + "additional": { + "children": [], + "state": "success", + "totalTime": 0, + "frequency": 0, + "fromHook": false, + "parent": "32cf197c-3e5c-4b58-be26-3a9433f96228", + "logId": "82c7ed93-d66d-4885-8591-8f76996e750b" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "82c7ed93-d66d-4885-8591-8f76996e750b", + "name": "remove uncacheable modules", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341687064632875, + "endTime": 341687064634791 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "595ad5ab-4d03-4105-bf41-84e0506e1835", + "parent": "6e164bab-e91c-4ce0-a6fa-dfbe52807ba5" + } + }, + { + "head": { + "id": "c3d43c6a-0bcf-49eb-9a68-2e17441f4fac", + "name": "compile ArkTS with rollup", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Worker4", + "startTime": 341687064754875, + "endTime": 341688753314041 + }, + "additional": { + "children": [], + "state": "success", + "totalTime": 0, + "frequency": 0, + "fromHook": false, + "parent": "32cf197c-3e5c-4b58-be26-3a9433f96228", + "logId": "2f827ea0-3697-468e-967b-37211cb0b0c0" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "2f827ea0-3697-468e-967b-37211cb0b0c0", + "name": "compile ArkTS with rollup", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341687064754875, + "endTime": 341688753314041 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "c3d43c6a-0bcf-49eb-9a68-2e17441f4fac", + "parent": "6e164bab-e91c-4ce0-a6fa-dfbe52807ba5" + } + }, + { + "head": { + "id": "dfbfdcdc-56c9-47b9-a88f-70b1c1249fbd", + "name": "write build package cache", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Worker4", + "startTime": 341688753402458, + "endTime": 341688765591916 + }, + "additional": { + "children": [ + "e28c7a97-cfd8-4bf2-a391-8d72018cfe39", + "c91a78aa-9f6a-447d-b1c8-51321cc9e1ec", + "4b5f65f5-c00d-4e7c-99b9-bd1e2dc81491" + ], + "state": "success", + "totalTime": 0, + "frequency": 0, + "fromHook": false, + "parent": "32cf197c-3e5c-4b58-be26-3a9433f96228", + "logId": "531327d8-11db-43cb-bcde-0b3cd6ee93b8" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "531327d8-11db-43cb-bcde-0b3cd6ee93b8", + "name": "write build package cache", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688753402458, + "endTime": 341688765591916 + }, + "additional": { + "logType": "info", + "children": [ + "ad32bed7-6627-4cc6-8067-f0e057b75e32", + "e4a198f4-6fff-495a-829c-41b8b8327101", + "dcd9525d-a51a-43bc-bf67-2fae4c0c7f96" + ], + "durationId": "dfbfdcdc-56c9-47b9-a88f-70b1c1249fbd", + "parent": "6e164bab-e91c-4ce0-a6fa-dfbe52807ba5" + } + }, + { + "head": { + "id": "e28c7a97-cfd8-4bf2-a391-8d72018cfe39", + "name": "get final cache", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Worker4", + "startTime": 341688753471041, + "endTime": 341688753480500 + }, + "additional": { + "children": [], + "state": "success", + "totalTime": 0, + "frequency": 0, + "fromHook": false, + "parent": "dfbfdcdc-56c9-47b9-a88f-70b1c1249fbd", + "logId": "ad32bed7-6627-4cc6-8067-f0e057b75e32" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ad32bed7-6627-4cc6-8067-f0e057b75e32", + "name": "get final cache", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688753471041, + "endTime": 341688753480500 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "e28c7a97-cfd8-4bf2-a391-8d72018cfe39", + "parent": "531327d8-11db-43cb-bcde-0b3cd6ee93b8" + } + }, + { + "head": { + "id": "c91a78aa-9f6a-447d-b1c8-51321cc9e1ec", + "name": "pack cache", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Worker4", + "startTime": 341688753485916, + "endTime": 341688764254666 + }, + "additional": { + "children": [], + "state": "success", + "totalTime": 0, + "frequency": 0, + "fromHook": false, + "parent": "dfbfdcdc-56c9-47b9-a88f-70b1c1249fbd", + "logId": "e4a198f4-6fff-495a-829c-41b8b8327101" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "e4a198f4-6fff-495a-829c-41b8b8327101", + "name": "pack cache", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688753485916, + "endTime": 341688764254666 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "c91a78aa-9f6a-447d-b1c8-51321cc9e1ec", + "parent": "531327d8-11db-43cb-bcde-0b3cd6ee93b8" + } + }, + { + "head": { + "id": "4b5f65f5-c00d-4e7c-99b9-bd1e2dc81491", + "name": "write cache", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Worker4", + "startTime": 341688764257333, + "endTime": 341688765572625 + }, + "additional": { + "children": [], + "state": "success", + "totalTime": 0, + "frequency": 0, + "fromHook": false, + "parent": "dfbfdcdc-56c9-47b9-a88f-70b1c1249fbd", + "logId": "dcd9525d-a51a-43bc-bf67-2fae4c0c7f96" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "dcd9525d-a51a-43bc-bf67-2fae4c0c7f96", + "name": "write cache", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688764257333, + "endTime": 341688765572625 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "4b5f65f5-c00d-4e7c-99b9-bd1e2dc81491", + "parent": "531327d8-11db-43cb-bcde-0b3cd6ee93b8" + } + }, + { + "head": { + "id": "f5a75dd5-2f64-4706-aa4a-09786e9fd60e", + "name": "wait for plug-in registration asynchronous task to complete", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Worker4", + "startTime": 341688765600250, + "endTime": 341688802859000 + }, + "additional": { + "children": [], + "state": "success", + "totalTime": 0, + "frequency": 0, + "fromHook": false, + "parent": "32cf197c-3e5c-4b58-be26-3a9433f96228", + "logId": "9f28a8c0-b389-4347-8b8f-c26d823f0ed5" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "9f28a8c0-b389-4347-8b8f-c26d823f0ed5", + "name": "wait for plug-in registration asynchronous task to complete", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688765600250, + "endTime": 341688802859000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "f5a75dd5-2f64-4706-aa4a-09786e9fd60e", + "parent": "6e164bab-e91c-4ce0-a6fa-dfbe52807ba5" + } + }, + { + "head": { + "id": "3f42c5c5-1d3e-46e6-9462-5cca92a03ab2", + "name": "load compilation dependencies", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Worker4", + "startTime": 341686446366958, + "endTime": 341686779474208 + }, + "additional": { + "children": [], + "state": "success", + "totalTime": 0, + "frequency": 0, + "fromHook": false, + "parent": "32cf197c-3e5c-4b58-be26-3a9433f96228", + "logId": "17ea95a4-7a7d-4be3-b4fd-2a6ad75bd448" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "17ea95a4-7a7d-4be3-b4fd-2a6ad75bd448", + "name": "load compilation dependencies", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686446366958, + "endTime": 341686779474208 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "3f42c5c5-1d3e-46e6-9462-5cca92a03ab2", + "parent": "6e164bab-e91c-4ce0-a6fa-dfbe52807ba5" + } + }, + { + "head": { + "id": "0d871a36-9d10-4f44-9c2c-331eff7d394d", + "name": "default@CompileArkTS work[0] done.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688806458500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6e164bab-e91c-4ce0-a6fa-dfbe52807ba5", + "name": "entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Worker4", + "startTime": 341686779857916, + "endTime": 341688805096041 + }, + "additional": { + "logType": "info", + "children": [ + "e20f95ce-4314-4869-9ffe-9e1c9633d2fa", + "2fedef9e-5ee4-496c-ae08-44513a58ea78", + "82c7ed93-d66d-4885-8591-8f76996e750b", + "2f827ea0-3697-468e-967b-37211cb0b0c0", + "531327d8-11db-43cb-bcde-0b3cd6ee93b8", + "9f28a8c0-b389-4347-8b8f-c26d823f0ed5", + "17ea95a4-7a7d-4be3-b4fd-2a6ad75bd448" + ], + "durationId": "32cf197c-3e5c-4b58-be26-3a9433f96228", + "parent": "aae41254-fc39-461f-b570-f852c7e72017" + } + }, + { + "head": { + "id": "4728d81a-5575-4b85-b1d5-c9f3a8c7e5ca", + "name": "A work dispatched to worker[4] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688806618916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "aae41254-fc39-461f-b570-f852c7e72017", + "name": "Finished :entry:default@CompileArkTS", + "description": "Compile ArkTS or JS components for large-system devices in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341686214439833, + "endTime": 341688806649125, + "totalTime": 2038404167 + }, + "additional": { + "logType": "info", + "children": [ + "6e164bab-e91c-4ce0-a6fa-dfbe52807ba5", + "40f61d6c-c406-41dd-beba-86570b18e16f" + ], + "durationId": "448cfaca-3c6e-4540-b159-f4142de0d817" + } + }, + { + "head": { + "id": "2d724a8a-56ef-421d-95f2-dba9181d2eaa", + "name": "entry:default@GeneratePkgModuleJson", + "description": "Generate the module.json in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688807448166, + "endTime": 341688808424333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Package", + "taskRunReasons": [], + "detailId": "92feb486-9d56-4dc3-9cf0-cb0341d26de4", + "logId": "e68b48ad-8fef-4d4f-8b7b-40029c3458e0" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "92feb486-9d56-4dc3-9cf0-cb0341d26de4", + "name": "create entry:default@GeneratePkgModuleJson task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688807267833 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "2d724a8a-56ef-421d-95f2-dba9181d2eaa" + } + }, + { + "head": { + "id": "557c9b11-9678-47d9-872e-d1a778de14c4", + "name": "Executing task :entry:default@GeneratePkgModuleJson", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688807451500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "95a9a3e2-8efc-4b5f-81bc-96e77fc728f6", + "name": "File: '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/preload/default/preload.json' from 'preloadSoJsonPath' is not exists, just ignore.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688807480625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e1186b0b-60f4-4fc2-9981-d989a024bfe1", + "name": "Error occurs while handling @Input 'shouldDeduplicateHar': The \"data\" argument must be of type string or an instance of Buffer, TypedArray, or DataView. Received undefined", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688807641333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4dcdb869-5485-467e-a70e-35a3ebc865d9", + "name": "Task 'entry:default@GeneratePkgModuleJson' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688807662250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "cd9e9042-59fd-4ed8-badb-a9d41bbc1924", + "name": "entry : default@GeneratePkgModuleJson cost memory 0.12854766845703125", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688808379750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "66d9f5a2-1425-45c5-a620-610aede4e2c5", + "name": "runTaskFromQueue task cost before running: 3 s 252 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688808415125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e68b48ad-8fef-4d4f-8b7b-40029c3458e0", + "name": "Finished :entry:default@GeneratePkgModuleJson", + "description": "Generate the module.json in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688807448166, + "endTime": 341688808424333, + "totalTime": 955250 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "2d724a8a-56ef-421d-95f2-dba9181d2eaa" + } + }, + { + "head": { + "id": "47716368-e8ca-42e4-ab97-4bf71da1e3f8", + "name": "entry:default@ProcessCompiledResources", + "description": "Process compiled resources in stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688808634333, + "endTime": 341688808778416 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Resources", + "taskRunReasons": [], + "detailId": "c2bb4a10-a4b4-4cf1-81f8-a7a1db133053", + "logId": "0b5f100f-087b-4436-b455-4659d574cef6" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c2bb4a10-a4b4-4cf1-81f8-a7a1db133053", + "name": "create entry:default@ProcessCompiledResources task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688808529166 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "47716368-e8ca-42e4-ab97-4bf71da1e3f8" + } + }, + { + "head": { + "id": "19c9d18a-7880-48d3-b838-38b6b39440aa", + "name": "Executing task :entry:default@ProcessCompiledResources", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688808636666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a861d67e-d35d-40f2-a858-0dd3ae44a600", + "name": "File: '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/preload/default/preload.json' from 'preloadSoJsonPath' is not exists, just ignore.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688808656708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3213e87c-8da0-4b3b-a82c-e4c25219b406", + "name": "Task 'entry:default@ProcessCompiledResources' cost while wrapping incremental declarations: 1 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688808672833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f9d55ed8-caf7-4fe3-b6d0-423e13eea677", + "name": "entry : default@ProcessCompiledResources cost memory 0.04639434814453125", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688808755125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "974e8ada-a11a-4a7e-9fcc-58026ca9eb84", + "name": "runTaskFromQueue task cost before running: 3 s 252 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688808770916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0b5f100f-087b-4436-b455-4659d574cef6", + "name": "Finished :entry:default@ProcessCompiledResources", + "description": "Process compiled resources in stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688808634333, + "endTime": 341688808778416, + "totalTime": 131000 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "47716368-e8ca-42e4-ab97-4bf71da1e3f8" + } + }, + { + "head": { + "id": "fdb3361d-50c1-42dd-8c4f-e66eec8c3eb3", + "name": "entry:default@PackageHap", + "description": "Build the HAP package in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688809609625, + "endTime": 341689062393500 + }, + "additional": { + "children": [ + "4acd6287-d98b-4696-bb56-2cc10b0f290e", + "51c584c8-aa40-48ea-858c-e4c213f19bb9", + "31b3b631-afe7-416e-8752-2b904ea7ae9b", + "8356b167-aed1-453e-ac06-0dc0b7e1a967" + ], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Package", + "taskRunReasons": [], + "detailId": "8e6af0a0-2938-4af5-b851-ac8bef90290c", + "logId": "83491882-6637-4d56-935f-c855c1a7b374" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8e6af0a0-2938-4af5-b851-ac8bef90290c", + "name": "create entry:default@PackageHap task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688809232375 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "fdb3361d-50c1-42dd-8c4f-e66eec8c3eb3" + } + }, + { + "head": { + "id": "96addf95-6f48-405d-a7a1-eda6bb098761", + "name": "Executing task :entry:default@PackageHap", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688809612250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4acd6287-d98b-4696-bb56-2cc10b0f290e", + "name": "generate HAP packaging command", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688810171541, + "endTime": 341688810514208 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "fdb3361d-50c1-42dd-8c4f-e66eec8c3eb3", + "logId": "6d97bc10-a9c0-4fda-9184-bd20099b5bd7" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "f76f2f4d-95ae-454a-9fac-810622158590", + "name": "Use tool [/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/lib/app_packing_tool.jar]\n [\n 'java',\n '-Dfile.encoding=utf-8',\n '-jar',\n '/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/lib/app_packing_tool.jar',\n '--mode',\n 'hap',\n '--force',\n 'true',\n '--lib-path',\n '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/stripped_native_libs/default',\n '--json-path',\n '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/package/default/module.json',\n '--resources-path',\n '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources',\n '--index-path',\n '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources.index',\n '--pack-info-path',\n '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/pack.info',\n '--out-path',\n '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/entry-default-unsigned.hap',\n '--ets-path',\n '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets',\n '--pkg-context-path',\n '/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json'\n]", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688810437666 + }, + "additional": { + "logType": "debug", + "children": [], + "durationId": "fdb3361d-50c1-42dd-8c4f-e66eec8c3eb3" + } + }, + { + "head": { + "id": "6d97bc10-a9c0-4fda-9184-bd20099b5bd7", + "name": "generate HAP packaging command", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688810171541, + "endTime": 341688810514208 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "4acd6287-d98b-4696-bb56-2cc10b0f290e", + "parent": "83491882-6637-4d56-935f-c855c1a7b374" + } + }, + { + "head": { + "id": "51c584c8-aa40-48ea-858c-e4c213f19bb9", + "name": "submit HAP packaging task to java daemon server", + "description": "Pack HAP in java daemon", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688810536916, + "endTime": 341688814296916 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "fdb3361d-50c1-42dd-8c4f-e66eec8c3eb3", + "logId": "333099ff-ffdc-482a-8701-26528e5a957e" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "ee2bd104-22c4-474e-8ee4-51d46cbe11ff", + "name": "java daemon socket close code:1006 reason:", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688814158791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "333099ff-ffdc-482a-8701-26528e5a957e", + "name": "submit HAP packaging task to java daemon server", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688810536916, + "endTime": 341688814293083 + }, + "additional": { + "logType": "warn", + "children": [], + "durationId": "51c584c8-aa40-48ea-858c-e4c213f19bb9", + "parent": "83491882-6637-4d56-935f-c855c1a7b374" + } + }, + { + "head": { + "id": "e768a0f2-c5cd-4247-b79b-efab604fcbe4", + "name": "java daemon remote pack failed: connect EPERM 127.0.0.1:45050 - Local (0.0.0.0:0). fallback to local java -jar pack", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688814303958 + }, + "additional": { + "logType": "debug", + "children": [], + "durationId": "fdb3361d-50c1-42dd-8c4f-e66eec8c3eb3" + } + }, + { + "head": { + "id": "31b3b631-afe7-416e-8752-2b904ea7ae9b", + "name": "submit HAP packaging task to work pool", + "description": "Pack HAP in work pool", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688814338041, + "endTime": 341688814782583 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "fdb3361d-50c1-42dd-8c4f-e66eec8c3eb3", + "logId": "a2ea348b-5f30-497a-bdd9-2d4ebc08cf00" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "c541b509-8903-4912-bea3-9d72badd69ed", + "name": "default@PackageHap work[2] is submitted.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688814665791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8356b167-aed1-453e-ac06-0dc0b7e1a967", + "name": "entry:default@PackageHap", + "description": "Build the HAP package in the stage model.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Worker12", + "startTime": 341688852826083, + "endTime": 341689062121333 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "", + "taskRunReasons": [], + "parent": "fdb3361d-50c1-42dd-8c4f-e66eec8c3eb3", + "logId": "e7b85437-0fba-489b-88a5-212c8c5c7889" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "3970474d-2978-4383-ba8b-5782ab3fb6ba", + "name": "default@PackageHap work[2] is pushed to ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688814707291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ea8e272b-4df3-4c33-b9bf-df506f34ee8c", + "name": "A work dispatched to worker[13] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688814719291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5885c8b8-361b-44cb-8e53-cbfde4df56a6", + "name": "default@PackageHap work[2] has been dispatched to worker[12].", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688814757625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0ae2b070-786c-4169-8273-cc3e1f7400d2", + "name": "default@PackageHap work[2] is dispatched.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688814770291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a2ea348b-5f30-497a-bdd9-2d4ebc08cf00", + "name": "submit HAP packaging task to work pool", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688814338041, + "endTime": 341688814782583 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "31b3b631-afe7-416e-8752-2b904ea7ae9b", + "parent": "83491882-6637-4d56-935f-c855c1a7b374" + } + }, + { + "head": { + "id": "d8f3e1e5-85ad-4822-806a-d19af16d6fee", + "name": "entry : default@PackageHap cost memory 0.48238372802734375", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688815411000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3f3a02b3-ef1d-4294-b3b2-7ac9a4ec0734", + "name": "worker[12] has one work done.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689062207166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6b01cff5-eb2e-40fa-8138-dfc15db9bb07", + "name": "default@PackageHap work[2] done.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689062328958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e7b85437-0fba-489b-88a5-212c8c5c7889", + "name": "entry:default@PackageHap", + "description": "Build the HAP package in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Worker12", + "startTime": 341688852826083, + "endTime": 341689062121333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "8356b167-aed1-453e-ac06-0dc0b7e1a967", + "parent": "83491882-6637-4d56-935f-c855c1a7b374" + } + }, + { + "head": { + "id": "63391955-6b5d-4ae3-9d02-19c0c443ac87", + "name": "A work dispatched to worker[12] failed because unable to get work from ready queue.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689062373625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "83491882-6637-4d56-935f-c855c1a7b374", + "name": "Finished :entry:default@PackageHap", + "description": "Build the HAP package in the stage model.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341688809609625, + "endTime": 341689062393500, + "totalTime": 215114166 + }, + "additional": { + "logType": "info", + "children": [ + "6d97bc10-a9c0-4fda-9184-bd20099b5bd7", + "333099ff-ffdc-482a-8701-26528e5a957e", + "a2ea348b-5f30-497a-bdd9-2d4ebc08cf00", + "e7b85437-0fba-489b-88a5-212c8c5c7889" + ], + "durationId": "fdb3361d-50c1-42dd-8c4f-e66eec8c3eb3" + } + }, + { + "head": { + "id": "05ef2fbe-3856-42cb-a3c1-b040d67f043d", + "name": "entry:default@PackingCheck", + "description": "Check package product", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689063275583, + "endTime": 341689065777208 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Verification", + "taskRunReasons": [], + "detailId": "8b33458a-6b7a-44a6-b1b9-5a4b5796af4f", + "logId": "2a535f8a-8459-415c-8c14-436daa108c55" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "8b33458a-6b7a-44a6-b1b9-5a4b5796af4f", + "name": "create entry:default@PackingCheck task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689062781708 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "05ef2fbe-3856-42cb-a3c1-b040d67f043d" + } + }, + { + "head": { + "id": "e3e03cb5-6460-4bb2-9218-7a5355674b12", + "name": "Executing task :entry:default@PackingCheck", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689063280125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c846835e-32e5-4ce3-904d-44f8314efac6", + "name": "entry : default@PackingCheck cost memory 0.5236968994140625", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689065712791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "08d373ad-05a9-4923-909c-0ac3106d3036", + "name": "runTaskFromQueue task cost before running: 3 s 509 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689065762875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2a535f8a-8459-415c-8c14-436daa108c55", + "name": "Finished :entry:default@PackingCheck", + "description": "Check package product", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689063275583, + "endTime": 341689065777208, + "totalTime": 2473584 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "05ef2fbe-3856-42cb-a3c1-b040d67f043d" + } + }, + { + "head": { + "id": "7e3425f8-08d7-4dea-a628-bef722fe41ab", + "name": "entry:default@SignHap", + "description": "Sign the HAP package.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689066421625, + "endTime": 341689066780500 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Sign", + "taskRunReasons": [], + "detailId": "aade0392-7a03-4aef-b0f9-6a74f52446d4", + "logId": "b697b9c9-ed1f-4a5b-80a9-2b96f9520424" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "aade0392-7a03-4aef-b0f9-6a74f52446d4", + "name": "create entry:default@SignHap task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689065966541 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "7e3425f8-08d7-4dea-a628-bef722fe41ab" + } + }, + { + "head": { + "id": "c4aee61e-1eaf-4d6a-b697-8b7ac3341a27", + "name": "Executing task :entry:default@SignHap", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689066425291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6a294030-f1e8-46b6-9f6e-371f14120df9", + "name": "Will skip sign 'hos_hap'. No signingConfigs profile is configured in current project.\n If needed, configure the signingConfigs in /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build-profile.json5.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689066457291 + }, + "additional": { + "logType": "warn", + "children": [], + "durationId": "7e3425f8-08d7-4dea-a628-bef722fe41ab" + } + }, + { + "head": { + "id": "49574938-b346-4adb-9ba0-4ad621383aed", + "name": "entry : default@SignHap cost memory 0.0440521240234375", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689066752666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "27465de5-a34d-4cd2-9422-c93d1fd1d2e4", + "name": "runTaskFromQueue task cost before running: 3 s 510 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689066771625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b697b9c9-ed1f-4a5b-80a9-2b96f9520424", + "name": "Finished :entry:default@SignHap", + "description": "Sign the HAP package.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689066421625, + "endTime": 341689066780500, + "totalTime": 343375 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "7e3425f8-08d7-4dea-a628-bef722fe41ab" + } + }, + { + "head": { + "id": "0b63cce3-f819-4c02-9929-6f9969c71fba", + "name": "entry:default@CollectDebugSymbol", + "description": "Collect debug symbols to output dir.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689067139750, + "endTime": 341689067402083 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "default", + "moduleName": "entry", + "category": "Generate", + "taskRunReasons": [], + "detailId": "42410a2e-8a67-4ece-b664-99261fc04102", + "logId": "a8f627dc-26d8-48a6-aa58-2fa896730797" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "42410a2e-8a67-4ece-b664-99261fc04102", + "name": "create entry:default@CollectDebugSymbol task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689066888125 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "0b63cce3-f819-4c02-9929-6f9969c71fba" + } + }, + { + "head": { + "id": "9392d907-7cca-4412-abae-f2b704200cfb", + "name": "Executing task :entry:default@CollectDebugSymbol", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689067143291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "eb083f7f-6bff-4b9e-b822-b02678367026", + "name": "entry : default@CollectDebugSymbol cost memory 0.0878143310546875", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689067378291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ae422043-4aab-4ba6-9256-53c5804d9778", + "name": "runTaskFromQueue task cost before running: 3 s 511 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689067392041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a8f627dc-26d8-48a6-aa58-2fa896730797", + "name": "Finished :entry:default@CollectDebugSymbol", + "description": "Collect debug symbols to output dir.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689067139750, + "endTime": 341689067402083, + "totalTime": 247333 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "0b63cce3-f819-4c02-9929-6f9969c71fba" + } + }, + { + "head": { + "id": "0510ee13-306c-4801-b3e7-469fc8d734aa", + "name": "entry:assembleHap", + "description": "Assemble the task for the packaged HAP file.", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689067483875, + "endTime": 341689067526458 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "entry", + "category": "Hook", + "taskRunReasons": [], + "detailId": "65a329a0-7822-4bbd-9985-f3832a7db971", + "logId": "47fe6651-0ebb-4291-bb6a-e1c528386166" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "65a329a0-7822-4bbd-9985-f3832a7db971", + "name": "create entry:assembleHap task", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689067474625 + }, + "additional": { + "logType": "detail", + "children": [], + "durationId": "0510ee13-306c-4801-b3e7-469fc8d734aa" + } + }, + { + "head": { + "id": "6f9b8a6d-2faf-45ef-930b-29faaba30825", + "name": "Executing task :entry:assembleHap", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689067485750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7802bcf0-347d-49f0-b7d3-66f1ba7608dc", + "name": "entry : assembleHap cost memory 0.0102996826171875", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689067508666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fbe78566-f9f8-4d61-a020-e4dd5a7ac724", + "name": "runTaskFromQueue task cost before running: 3 s 511 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689067519916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "47fe6651-0ebb-4291-bb6a-e1c528386166", + "name": "Finished :entry:assembleHap", + "description": "Assemble the task for the packaged HAP file.", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689067483875, + "endTime": 341689067526458, + "totalTime": 31875 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "0510ee13-306c-4801-b3e7-469fc8d734aa" + } + }, + { + "head": { + "id": "73016005-2664-4075-afa6-c9bd96c8de83", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "duration" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689067906750, + "endTime": 341689067992708 + }, + "additional": { + "children": [], + "state": "success", + "targetName": "", + "moduleName": "", + "category": "", + "taskRunReasons": [], + "parent": "04551692-15cd-42f2-a3bb-ad1bd808c510", + "logId": "d2471706-be02-4603-a87f-243bc3d307e9" + }, + "log": { + "_logger": { + "category": "DurationEvent", + "context": {}, + "callStackSkipIndex": 0 + }, + "_filelogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + }, + "anonymizeFileLogger": { + "fileLogger": { + "category": "debug-file", + "context": {}, + "callStackSkipIndex": 0 + } + } + } + }, + { + "head": { + "id": "d2471706-be02-4603-a87f-243bc3d307e9", + "name": "\"buildFinished\" hook function", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689067906750, + "endTime": 341689067992708 + }, + "additional": { + "logType": "info", + "children": [], + "durationId": "73016005-2664-4075-afa6-c9bd96c8de83" + } + }, + { + "head": { + "id": "b2b044e2-b22a-4830-af52-017e431a1900", + "name": "BUILD SUCCESSFUL in 3 s 512 ms ", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068012125 + }, + "additional": { + "logType": "info", + "children": [] + } + }, + { + "head": { + "id": "28ab906e-46f3-43f1-b807-2b26bd4fb8f0", + "name": "assembleHap", + "description": "", + "type": "mark" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341685556775125, + "endTime": 341689068259958 + }, + "additional": { + "time": { + "year": 2026, + "month": 4, + "day": 28, + "hour": 19, + "minute": 21, + "second": 55 + }, + "completeCommand": "{\"prop\":[],\"stacktrace\":true,\"_\":[\"assembleHap\"]};assembleHap --stacktrace", + "hvigorVersion": "6.22.4", + "markType": "history", + "nodeVersion": "v18.20.1", + "category": "build", + "state": "success" + } + }, + { + "head": { + "id": "31c50d6d-3303-4691-bc19-38cad78cabcf", + "name": "There is no need to refresh cache, since the incremental task entry:default@PreBuild is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068310750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2045fca8-9bf1-4b09-9769-33a7653548bf", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@PreBuild is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068319791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0979d112-d711-4f73-b1b3-002a89e60b59", + "name": "Update task entry:default@CreateModuleInfo output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/ModuleInfo.ts cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068358083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2f616c52-71f0-42e7-b026-49624c839992", + "name": "Incremental task entry:default@CreateModuleInfo post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068464375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5d8b74c0-e660-442f-9186-b1cd2ab8fc91", + "name": "There is no need to refresh cache, since the incremental task entry:default@GenerateMetadata is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068471833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ccb2c1ba-9fa1-46e6-aca6-f26aaae30491", + "name": "There is no need to refresh cache, since the incremental task entry:default@GeneratePkgContextInfo is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068479125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "aa7c3fd3-611a-4be8-b449-81e1864365e5", + "name": "Update task entry:default@ProcessIntegratedHsp output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/build/cache/default/integrated_hsp/integratedHspCache.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068497250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "03259e99-c687-4ec9-a9cf-4828710a2a1b", + "name": "Incremental task entry:default@ProcessIntegratedHsp post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068527083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "bbe45f0b-e31d-43a9-afb1-93676b0ed67e", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@CreateHarBuildProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068534791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a31fa866-96b4-48e9-a2b7-70235486cd8b", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@MergeProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068545958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6f5935fa-e359-4cac-a1fd-b81345fd4b30", + "name": "Update task entry:default@SyscapTransform input file:/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/toolchains/syscap_tool cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068567333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d9ae2235-af05-46b2-8dee-8507434157ea", + "name": "Update task entry:default@SyscapTransform input file:/Users/xuqinmin/sdk/command-line-tools/sdk/default/openharmony/ets/api/device-define cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068605416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c62e6912-262f-4f91-b34e-301f9a4fe469", + "name": "Update task entry:default@SyscapTransform output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/syscap/default/rpcid.sc cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068743333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "9df2c7e8-3b43-4071-af05-15e928cfdafd", + "name": "Incremental task entry:default@SyscapTransform post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068776958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7d9213d0-d64c-4ee7-9d82-06116335b2ae", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessRouterMap is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068787291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "27cc7daf-6f5e-4dbf-bcfa-73e434ab62c4", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessShareConfig is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068793666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e39a0a07-3ecf-4069-99d8-353788bc7bdd", + "name": "Update task entry:default@ProcessStartupConfig input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068827625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "abcfcbd8-eccb-4756-888f-a0b69f95742b", + "name": "Update task entry:default@ProcessStartupConfig output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/startup/default/startup_config.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068847750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e9992e9b-5362-4d8c-934e-080063475c15", + "name": "Incremental task entry:default@ProcessStartupConfig post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068876750 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "26f8a8b0-b965-466e-b95e-73bd83b70c4d", + "name": "There is no need to refresh cache, since the incremental task entry:default@CreateBuildProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068882916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3e94eaa8-5141-4e1b-90c1-22308bd7012d", + "name": "There is no need to refresh cache, since the incremental task entry:default@MergeProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068888958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "af8040db-420b-4b4d-9e1e-2184959401ac", + "name": "There is no need to refresh cache, since the incremental task entry:default@GenerateLoaderJson is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068899166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8d6eae58-0050-480a-9df3-ee5fdedd4080", + "name": "There is no need to refresh cache, since the incremental task entry:default@MakePackInfo is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068905000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0e55336a-3fe8-4b98-81e0-ba8fe6dc8931", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessProfile is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068910625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c6399121-5859-4793-bcd0-ca9dd4a7eb4d", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@ProcessLibs is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068920333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5b3e8111-f3fe-4367-8d0d-443a77727a57", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessResource is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068927833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "b21d606c-2d51-4f51-a3f6-d490089c0d04", + "name": "There is no need to refresh cache, since the incremental task xuqmSdk:default@DoNativeStrip is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068934291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "69a90ecf-3197-4c50-9c9b-4b03e0489beb", + "name": "There is no need to refresh cache, since the incremental task entry:default@CompileResource is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689068942875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "85a122c4-44c7-4a31-83a1-242eb51b83c3", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689069154458 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e83784bb-c654-469d-af4e-439881709213", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/Index.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689069226500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6f6d35d3-9ba1-498b-a5e4-ca6986221801", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/src/main/ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689069244583 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "839d8386-c296-4ec0-865d-a24907fed717", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689069502000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "f1ac9b40-5533-4d7a-a021-0237d04610b0", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ResourceTable.txt cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689069587166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d2e9b766-9dcb-4fee-aaa9-42c36edbb205", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ark_module.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689069605083 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "33752d55-bdc7-4b39-9384-8e5c78dd206c", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689069621250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7220772c-1ec0-44f2-9c93-ba5098bef0a4", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/src/main/ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689069667291 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0cf76f5f-6429-4996-b21e-5c0102f084df", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689069767833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "85aac5a6-0a2a-4ded-abb4-82e931dddaf8", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/BuildProfile.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689069784375 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "6f27ff6b-1ffb-4dd6-9360-9b163572fef1", + "name": "Update task entry:default@CompileArkTS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/BuildProfile.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689069800708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "5caf63bc-9b9d-4083-bf57-5d491ced177b", + "name": "Update task entry:default@CompileArkTS output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689069826333 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2e8a7c91-b433-414b-b85c-6ae21c73ee7e", + "name": "Incremental task entry:default@CompileArkTS post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689069893916 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "80d94344-e162-4392-8414-e109bcfa2aa6", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689069982416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c66bf12c-2b7b-4f6f-b984-9e78b75791e7", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/xuqm-sdk/Index.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070036791 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e1454869-be52-4240-a43f-734df38a1709", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/rawfile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070052416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "46ae612b-ecb3-4335-8ca5-564d2932bd97", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ResourceTable.txt cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070130041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d1f88317-9a78-48a5-ac84-adb16c25ca5e", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/ark_module.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070147625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ebc626f8-2e99-4943-a1d3-e87e5fc8ce26", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources/base/profile cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070162166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3a5dbd8a-1512-4107-b6fd-bfd04e4ab4a9", + "name": "Update task entry:default@BuildJS input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070204125 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "82da539b-8af3-45b6-96c1-650bb78faf08", + "name": "Update task entry:default@BuildJS output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/js cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070225666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3013211f-e15a-492d-aa66-64c023029fec", + "name": "Incremental task entry:default@BuildJS post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070256708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "1efea4c3-9a59-48ae-a903-dd394742f62a", + "name": "There is no need to refresh cache, since the incremental task entry:default@ProcessLibs is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070264416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4a7a872c-83b5-40d2-bfd8-8fd84676ff09", + "name": "There is no need to refresh cache, since the incremental task entry:default@DoNativeStrip is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070270250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "aa54f531-d944-4cc4-93a3-edd557df347a", + "name": "There is no need to refresh cache, since the incremental task entry:default@CacheNativeLibs is up-to-date.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070277500 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "0c4f7388-3249-4887-8f09-7095a039667d", + "name": "Update task entry:default@GeneratePkgModuleJson input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/module.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070286666 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "43b437ad-508e-4fa3-9884-515c3ba902f7", + "name": "Update task entry:default@GeneratePkgModuleJson output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/package/default/module.json cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070309958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "044b6f30-5623-4f8b-8119-361f0ab7a189", + "name": "Incremental task entry:default@GeneratePkgModuleJson post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070331833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "7952935b-4ffb-4c20-8c18-6c771b7cb852", + "name": "Incremental task entry:default@ProcessCompiledResources post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070344041 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "da7feba6-2d4d-494a-8213-e63aae809c70", + "name": "Update task entry:default@PackageHap input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/stripped_native_libs/default cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070444625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d2d1f6d2-dab4-416f-a854-3dae0bbc2231", + "name": "Update task entry:default@PackageHap input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/module.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070478000 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "fc0766f1-59d2-43c8-be73-37379d047e72", + "name": "Update task entry:default@PackageHap input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070492833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c0b23af4-d512-435f-90f5-c94c856e04cd", + "name": "Update task entry:default@PackageHap input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/res/default/resources.index cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070695250 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d3594c72-6e22-47af-8986-945703c22178", + "name": "Update task entry:default@PackageHap input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/pack.info cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070718166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "8723e336-99ce-4529-863b-b58eb494d35e", + "name": "Update task entry:default@PackageHap input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070735708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "05091cef-3c14-4a78-9e67-790242def9da", + "name": "Update task entry:default@PackageHap input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader/default/pkgContextInfo.json cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070789833 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "4e7dd644-7e36-45f5-8380-07651bbc5884", + "name": "Update task entry:default@PackageHap input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets/sourceMaps.map cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070806541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "d8caad4d-104a-49a7-a32f-cb8733dfe58d", + "name": "Update task entry:default@PackageHap input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/generated/profile/default/BuildProfile.ets cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070820875 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "c4640809-d8ad-4b37-bc1c-07444a1b6f26", + "name": "Update task entry:default@PackageHap output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/entry-default-unsigned.hap cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070847708 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "dd34c597-8c6d-4365-aebd-749e445b71d5", + "name": "Update task entry:default@PackageHap output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/source_map/default/sourceMaps.map cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070864958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "2ff376d1-d0c0-4c00-9350-831052680afb", + "name": "Update task entry:default@PackageHap output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/mapping/sourceMaps.map cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070882625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "18e5123e-5451-4ead-8093-bfbdba6b3d48", + "name": "Incremental task entry:default@PackageHap post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070913541 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "3807fe8c-46d3-4b22-ac8a-91d532eb4920", + "name": "Update task entry:default@SignHap input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/entry-default-unsigned.hap cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070930958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e6529a62-d478-4ad5-bbdf-428b850fe2f5", + "name": "Update task entry:default@SignHap output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/entry-default-signed.hap cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070948166 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ce67b1b8-c754-49bb-8262-b84b7550615a", + "name": "Incremental task entry:default@SignHap post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689070972958 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "116c6d1d-e0db-4a2b-b327-8f92e82b6d9a", + "name": "Update task entry:default@CollectDebugSymbol input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/loader_out/default/ets/sourceMaps.map cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689071029416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "a0309173-b8d4-4d05-8c15-811742aaa7ab", + "name": "Update task entry:default@CollectDebugSymbol input file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/intermediates/libs/default cache by regenerate.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689071044625 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "ab2773b7-db7b-4d1d-932e-d3335e07ce35", + "name": "Update task entry:default@CollectDebugSymbol output file:/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-HarmonySDK/entry/build/default/outputs/default/symbol cache.", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689071078416 + }, + "additional": { + "logType": "debug", + "children": [] + } + }, + { + "head": { + "id": "e536c333-9813-4691-a22d-12f8271535cc", + "name": "Incremental task entry:default@CollectDebugSymbol post-execution cost:1 ms .", + "description": "", + "type": "log" + }, + "body": { + "pid": 32343, + "tid": "Main Thread", + "startTime": 341689071104291 + }, + "additional": { + "logType": "debug", + "children": [] + } + } + ], + "workLog": [] +} \ No newline at end of file diff --git a/AppScope/app.json5 b/AppScope/app.json5 new file mode 100644 index 0000000..dbca1a9 --- /dev/null +++ b/AppScope/app.json5 @@ -0,0 +1,10 @@ +{ + "app": { + "bundleName": "com.xuqmgroup.harmony.sdk", + "vendor": "xuqm", + "versionCode": 1000000, + "versionName": "1.0.0", + "icon": "$media:app_icon", + "label": "$string:EntryAbility_label" + } +} diff --git a/README.md b/README.md index ce9105e..4faf450 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # XuqmGroup HarmonyOS SDK 文档 > ArkTS · HarmonyOS 5 (API 12) · 发布至 ohpm +> 当前工程已可成功执行 `hvigorw assembleHap` ## 模块结构 diff --git a/build-profile.json5 b/build-profile.json5 index 0274ba3..607cdd4 100644 --- a/build-profile.json5 +++ b/build-profile.json5 @@ -22,7 +22,7 @@ }, "modules": [ { - "name": "xuqm-sdk", + "name": "xuqmSdk", "srcPath": "./xuqm-sdk", "targets": [ { "name": "default", "applyToProducts": ["default"] } diff --git a/entry/oh-package-lock.json5 b/entry/oh-package-lock.json5 new file mode 100644 index 0000000..3b1b1bf --- /dev/null +++ b/entry/oh-package-lock.json5 @@ -0,0 +1,19 @@ +{ + "meta": { + "stableOrder": true, + "enableUnifiedLockfile": false + }, + "lockfileVersion": 3, + "ATTENTION": "THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.", + "specifiers": { + "@xuqm/harmony-sdk@../xuqm-sdk": "@xuqm/harmony-sdk@../xuqm-sdk" + }, + "packages": { + "@xuqm/harmony-sdk@../xuqm-sdk": { + "name": "@xuqm/harmony-sdk", + "version": "0.1.0", + "resolved": "../xuqm-sdk", + "registryType": "local" + } + } +} \ No newline at end of file diff --git a/entry/oh_modules/@xuqm/harmony-sdk b/entry/oh_modules/@xuqm/harmony-sdk new file mode 120000 index 0000000..3eb224d --- /dev/null +++ b/entry/oh_modules/@xuqm/harmony-sdk @@ -0,0 +1 @@ +../../../xuqm-sdk \ No newline at end of file diff --git a/entry/src/main/ets/pages/Index.ets b/entry/src/main/ets/pages/Index.ets index c04441f..ba4d18c 100644 --- a/entry/src/main/ets/pages/Index.ets +++ b/entry/src/main/ets/pages/Index.ets @@ -1,6 +1,42 @@ import { XuqmSDK, ImMessage } from '@xuqm/harmony-sdk' +import type { ImEventDelegate } from '@xuqm/harmony-sdk' import promptAction from '@ohos.promptAction' +class DemoImDelegate implements ImEventDelegate { + private readonly onConnectedAction: () => void + private readonly onDisconnectedAction: (code: number, reason: string) => void + private readonly onMessageAction: (msg: ImMessage) => void + private readonly onErrorAction: (message: string) => void + + constructor( + onConnectedAction: () => void, + onDisconnectedAction: (code: number, reason: string) => void, + onMessageAction: (msg: ImMessage) => void, + onErrorAction: (message: string) => void, + ) { + this.onConnectedAction = onConnectedAction + this.onDisconnectedAction = onDisconnectedAction + this.onMessageAction = onMessageAction + this.onErrorAction = onErrorAction + } + + onConnected(): void { + this.onConnectedAction() + } + + onDisconnected(code: number, reason: string): void { + this.onDisconnectedAction(code, reason) + } + + onMessage(msg: ImMessage): void { + this.onMessageAction(msg) + } + + onError(message: string): void { + this.onErrorAction(message) + } +} + @Entry @Component struct Index { @@ -11,22 +47,23 @@ struct Index { aboutToAppear(): void { const im = XuqmSDK.im - im.delegate = { - onConnected: () => { + const delegate = new DemoImDelegate( + () => { this.connected = true promptAction.showToast({ message: 'IM 已连接' }) }, - onDisconnected: (code, reason) => { + (code: number, reason: string) => { this.connected = false - console.log(`IM disconnected: ${code} ${reason}`) + console.log('IM disconnected: ' + code + ' ' + reason) }, - onMessage: (msg) => { + (msg: ImMessage) => { this.messages = [...this.messages, msg] }, - onError: (err) => { + (err: string) => { promptAction.showToast({ message: 'IM 错误: ' + err }) }, - } + ) + im.delegate = delegate im.connect() } diff --git a/entry/src/main/resources/base/media/app_icon.png b/entry/src/main/resources/base/media/app_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c6cea0aef775b502eb34e250e0a5c45ba4e2732f GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcwN$fBwreFf%hTykGV8 Q3s9KB)78&qol`;+0F%HELjV8( literal 0 HcmV?d00001 diff --git a/hvigor/hvigor-config.json5 b/hvigor/hvigor-config.json5 new file mode 100644 index 0000000..93927c9 --- /dev/null +++ b/hvigor/hvigor-config.json5 @@ -0,0 +1,19 @@ +{ + "modelVersion": "5.0.0", + "dependencies": {}, + "execution": { + "daemon": false, + "incremental": true, + "parallel": true, + "typeCheck": false + }, + "logging": { + "level": "info" + }, + "debugging": { + "stacktrace": false + }, + "nodeOptions": { + "maxOldSpaceSize": 4096 + } +} diff --git a/oh-package.json5 b/oh-package.json5 index c2983e9..d1b61f0 100644 --- a/oh-package.json5 +++ b/oh-package.json5 @@ -1,6 +1,7 @@ { "name": "xuqm-harmony-sdk-workspace", "version": "0.1.0", + "modelVersion": "5.0.0", "description": "XuqmGroup HarmonyOS SDK workspace", "author": "xuqm", "license": "MIT" diff --git a/oh_modules/.ohpm/lock.json5 b/oh_modules/.ohpm/lock.json5 new file mode 100644 index 0000000..30de325 --- /dev/null +++ b/oh_modules/.ohpm/lock.json5 @@ -0,0 +1,48 @@ +{ + "lockVersion": "1.0", + "settings": { + "resolveConflict": true, + "resolveConflictStrict": false, + "installAll": true + }, + "overrides": {}, + "overrideDependencyMap": {}, + "modules": { + ".": { + "name": "", + "dependencies": {}, + "devDependencies": {}, + "dynamicDependencies": {}, + "maskedByOverrideDependencyMap": false + }, + "entry": { + "name": "entry", + "dependencies": { + "@xuqm/harmony-sdk": { + "specifier": "file:xuqm-sdk", + "version": "file:xuqm-sdk" + } + }, + "devDependencies": {}, + "dynamicDependencies": {}, + "maskedByOverrideDependencyMap": false + }, + "xuqm-sdk": { + "name": "xuqm-sdk", + "dependencies": {}, + "devDependencies": {}, + "dynamicDependencies": {}, + "maskedByOverrideDependencyMap": false + } + }, + "packages": { + "@xuqm/harmony-sdk@file:xuqm-sdk": { + "storePath": "xuqm-sdk", + "dependencies": {}, + "dynamicDependencies": {}, + "dev": false, + "dynamic": false, + "maskedByOverrideDependencyMap": false + } + } +} \ No newline at end of file diff --git a/xuqm-sdk/BuildProfile.ets b/xuqm-sdk/BuildProfile.ets new file mode 100644 index 0000000..679ceba --- /dev/null +++ b/xuqm-sdk/BuildProfile.ets @@ -0,0 +1,17 @@ +/** + * Use these variables when you tailor your ArkTS code. They must be of the const type. + */ +export const HAR_VERSION = '0.1.0'; +export const BUILD_MODE_NAME = 'debug'; +export const DEBUG = true; +export const TARGET_NAME = 'default'; + +/** + * BuildProfile Class is used only for compatibility purposes. + */ +export default class BuildProfile { + static readonly HAR_VERSION = HAR_VERSION; + static readonly BUILD_MODE_NAME = BUILD_MODE_NAME; + static readonly DEBUG = DEBUG; + static readonly TARGET_NAME = TARGET_NAME; +} \ No newline at end of file diff --git a/xuqm-sdk/Index.ets b/xuqm-sdk/Index.ets index 7b22cf7..9117528 100644 --- a/xuqm-sdk/Index.ets +++ b/xuqm-sdk/Index.ets @@ -15,6 +15,9 @@ export type { ChatType, MsgStatus, ConversationData, + FriendRequest, + GroupJoinRequest, + ImGroup, HistoryQuery, PageResult, UserProfile, diff --git a/xuqm-sdk/src/main/ets/XuqmSDK.ets b/xuqm-sdk/src/main/ets/XuqmSDK.ets index e47779d..dd45228 100644 --- a/xuqm-sdk/src/main/ets/XuqmSDK.ets +++ b/xuqm-sdk/src/main/ets/XuqmSDK.ets @@ -2,8 +2,6 @@ import common from '@ohos.app.ability.common' import type { SDKConfig } from './core/Types' import { SDKContext } from './core/SDKContext' import { ImClient } from './im/ImClient' -import { PushSDK } from './push/PushSDK' -import { UpdateSDK } from './update/UpdateSDK' export class XuqmSDK { private static _imClient: ImClient | null = null @@ -35,12 +33,4 @@ export class XuqmSDK { } return XuqmSDK._imClient } - - static get push(): typeof PushSDK { - return PushSDK - } - - static get update(): typeof UpdateSDK { - return UpdateSDK - } } diff --git a/xuqm-sdk/src/main/ets/core/HttpClient.ets b/xuqm-sdk/src/main/ets/core/HttpClient.ets index ec3b297..136da6b 100644 --- a/xuqm-sdk/src/main/ets/core/HttpClient.ets +++ b/xuqm-sdk/src/main/ets/core/HttpClient.ets @@ -1,35 +1,30 @@ import http from '@ohos.net.http' -import type { ApiResponse } from './Types' +import type { ApiResponse, HttpHeaders } from './Types' import { SDKContext } from './SDKContext' export class HttpClient { static async request( method: http.RequestMethod, path: string, - body?: object, - query?: Record, + body?: Object, + query?: string, ): Promise { const config = SDKContext.getConfig() const token = SDKContext.getToken() - const queryPairs: string[] = [] - if (query) { - for (const key of Object.keys(query)) { - const value = query[key] - if (value === undefined || value === null || value === '') continue - queryPairs.push(`${encodeURIComponent(key)}=${encodeURIComponent(value instanceof Date ? value.toISOString() : String(value))}`) - } - } - const url = config.apiBaseUrl.replace(/\/$/, '') + path + (queryPairs.length > 0 ? `?${queryPairs.join('&')}` : '') + const url = config.apiBaseUrl.replace(/\/$/, '') + path + (query ? '?' + query : '') const client = http.createHttp() try { + const header: HttpHeaders = { + 'Content-Type': 'application/json', + } + if (token) { + header.Authorization = 'Bearer ' + token + } const options: http.HttpRequestOptions = { method, - header: { - 'Content-Type': 'application/json', - ...(token ? { 'Authorization': `Bearer ${token}` } : {}), - }, - extraData: body ? JSON.stringify(body) : undefined, + header, + extraData: body ? JSON.stringify(body) : '', connectTimeout: 15000, readTimeout: 15000, } @@ -43,19 +38,19 @@ export class HttpClient { } } - static get(path: string, query?: Record): Promise { + static get(path: string, query?: string): Promise { return HttpClient.request(http.RequestMethod.GET, path, undefined, query) } - static post(path: string, body?: object, query?: Record): Promise { + static post(path: string, body?: Object, query?: string): Promise { return HttpClient.request(http.RequestMethod.POST, path, body, query) } - static put(path: string, body?: object, query?: Record): Promise { + static put(path: string, body?: Object, query?: string): Promise { return HttpClient.request(http.RequestMethod.PUT, path, body, query) } - static delete(path: string, query?: Record): Promise { + static delete(path: string, query?: string): Promise { return HttpClient.request(http.RequestMethod.DELETE, path, undefined, query) } } diff --git a/xuqm-sdk/src/main/ets/core/Types.ets b/xuqm-sdk/src/main/ets/core/Types.ets index 12f5d2f..5c5c7d0 100644 --- a/xuqm-sdk/src/main/ets/core/Types.ets +++ b/xuqm-sdk/src/main/ets/core/Types.ets @@ -13,6 +13,11 @@ export interface ApiResponse { message: string } +export interface HttpHeaders { + 'Content-Type': string + Authorization?: string +} + export type MsgType = | 'TEXT' | 'IMAGE' @@ -93,6 +98,40 @@ export interface UserProfile { createdAt?: number | null } +export interface ImGroup { + id: string + appId?: string + name: string + groupType?: string + creatorId: string + memberIds: string + adminIds: string + announcement?: string | null + createdAt?: number | null +} + +export interface FriendRequest { + id: string + appId?: string + fromUserId: string + toUserId: string + remark?: string | null + status: 'PENDING' | 'ACCEPTED' | 'REJECTED' + createdAt: number + reviewedAt?: number | null +} + +export interface GroupJoinRequest { + id: string + appId?: string + groupId: string + requesterId: string + remark?: string | null + status: 'PENDING' | 'ACCEPTED' | 'REJECTED' + createdAt: number + reviewedAt?: number | null +} + export interface SendMessageParams { messageId?: string toId: string diff --git a/xuqm-sdk/src/main/ets/im/ImClient.ets b/xuqm-sdk/src/main/ets/im/ImClient.ets index 532481a..41fe670 100644 --- a/xuqm-sdk/src/main/ets/im/ImClient.ets +++ b/xuqm-sdk/src/main/ets/im/ImClient.ets @@ -1,7 +1,19 @@ import webSocket from '@ohos.net.webSocket' import { HttpClient } from '../core/HttpClient' import { SDKContext } from '../core/SDKContext' -import type { ChatType, ConversationData, HistoryQuery, ImMessage, MsgType, PageResult, SendMessageParams, UserProfile } from '../core/Types' +import type { + ChatType, + ConversationData, + FriendRequest, + GroupJoinRequest, + HistoryQuery, + ImGroup, + ImMessage, + MsgType, + PageResult, + SendMessageParams, + UserProfile, +} from '../core/Types' export interface ImEventDelegate { onConnected?(): void @@ -16,6 +28,89 @@ export interface RevokeData { operatorId: string } +class WebSocketFrame { + type: string = '' + payload: Object = new Object() +} + +class WebSocketEnvelope { + destination: string = '' + payload: Object = new Object() +} + +class AppBody { + appId: string = '' +} + +class HistoryQueryParams { + appId: string = '' + page: number = 0 + size: number = 0 + msgType: MsgType = 'TEXT' + keyword: string = '' + startTime: string = '' + endTime: string = '' +} + +class ConversationActionBody { + appId: string = '' + chatType: ChatType = 'SINGLE' +} + +class FriendRequestQueryBody { + appId: string = '' + direction: 'incoming' | 'outgoing' = 'incoming' +} + +class FriendRequestBody { + appId: string = '' + toUserId: string = '' + remark: string = '' +} + +class GroupJoinRequestBody { + appId: string = '' + remark: string = '' +} + +class UpdateProfileBody { + appId: string = '' + nickname: string = '' + avatar: string = '' + gender: string = '' +} + +class DraftBody { + appId: string = '' + chatType: ChatType = 'SINGLE' + draft: string = '' +} + +class PinBody { + appId: string = '' + chatType: ChatType = 'SINGLE' + pinned: boolean = false +} + +class MuteBody { + appId: string = '' + chatType: ChatType = 'SINGLE' + muted: boolean = false +} + +class SendEnvelopePayload { + messageId: string = '' + toId: string = '' + chatType: ChatType = 'SINGLE' + msgType: MsgType = 'TEXT' + content: string = '' + mentionedUserIds: string = '' +} + +class RevokeEnvelopePayload { + msgId: string = '' +} + const MAX_RECONNECT_DELAY = 30_000 export class ImClient { @@ -29,7 +124,7 @@ export class ImClient { if (this.destroyed) return const config = SDKContext.getConfig() const token = SDKContext.getToken() ?? '' - const url = `${config.imBaseUrl}/ws/im?token=${token}` + const url = config.imBaseUrl.replace(/\/$/, '') + '/ws/im?token=' + encodeURIComponent(token) this.ws = webSocket.createWebSocket() @@ -41,8 +136,10 @@ export class ImClient { this.ws.on('message', (_err: Error, value: string | ArrayBuffer) => { try { - const text = typeof value === 'string' ? value : new TextDecoder().decode(value) - const frame = JSON.parse(text) as { type: string; payload: unknown } + if (typeof value !== 'string') { + return + } + const frame = JSON.parse(value) as WebSocketFrame if (frame.type === 'MESSAGE') { this.delegate?.onMessage?.(this.normalizeMessage(frame.payload as ImMessage)) } else if (frame.type === 'REVOKE') { @@ -68,23 +165,27 @@ export class ImClient { send(params: SendMessageParams): ImMessage { const outgoing = this.buildOutgoingMessage(params) if (!this.ws) { - return { ...outgoing, status: 'FAILED' } + return this.markFailed(outgoing) } - this.ws.send( - JSON.stringify({ - destination: '/app/chat.send', - payload: { - ...params, - messageId: outgoing.id, - }, - }), - (_err: Error) => { - if (_err) { - this.delegate?.onError?.(_err.message) - } - }, - ) + const payload = new SendEnvelopePayload() + payload.messageId = outgoing.id + payload.toId = params.toId + payload.chatType = params.chatType + payload.msgType = params.msgType + payload.content = params.content + if (params.mentionedUserIds !== undefined) { + payload.mentionedUserIds = params.mentionedUserIds + } + const envelope = new WebSocketEnvelope() + envelope.destination = '/app/chat.send' + envelope.payload = payload + + this.ws.send(JSON.stringify(envelope), (_err: Error) => { + if (_err) { + this.delegate?.onError?.(_err.message) + } + }) return outgoing } @@ -92,15 +193,14 @@ export class ImClient { if (!this.ws) { throw new Error('WebSocket not connected') } - this.ws.send( - JSON.stringify({ - destination: '/app/chat.revoke', - payload: { msgId }, - }), - (_err: Error) => { - if (_err) this.delegate?.onError?.(_err.message) - }, - ) + const payload = new RevokeEnvelopePayload() + payload.msgId = msgId + const envelope = new WebSocketEnvelope() + envelope.destination = '/app/chat.revoke' + envelope.payload = payload + this.ws.send(JSON.stringify(envelope), (_err: Error) => { + if (_err) this.delegate?.onError?.(_err.message) + }) } async fetchHistory( @@ -109,19 +209,8 @@ export class ImClient { size: number = 20, query: HistoryQuery = {}, ): Promise> { - return HttpClient.get>(`/api/im/messages/history/${encodeURIComponent(toId)}`, { - appId: SDKContext.getConfig().appKey, - page, - size, - msgType: query.msgType, - keyword: query.keyword, - startTime: query.startTime instanceof Date - ? this.formatDateTime(query.startTime) - : query.startTime, - endTime: query.endTime instanceof Date - ? this.formatDateTime(query.endTime) - : query.endTime, - }) + const queryString = this.buildHistoryQuery(page, size, query) + return HttpClient.get>('/api/im/messages/history/' + encodeURIComponent(toId), queryString) } async fetchGroupHistory( @@ -130,55 +219,109 @@ export class ImClient { size: number = 50, query: HistoryQuery = {}, ): Promise> { - return HttpClient.get>(`/api/im/messages/group-history/${encodeURIComponent(groupId)}`, { - appId: SDKContext.getConfig().appKey, - page, - size, - msgType: query.msgType, - keyword: query.keyword, - startTime: query.startTime instanceof Date - ? this.formatDateTime(query.startTime) - : query.startTime, - endTime: query.endTime instanceof Date - ? this.formatDateTime(query.endTime) - : query.endTime, - }) + const queryString = this.buildHistoryQuery(page, size, query) + return HttpClient.get>('/api/im/messages/group-history/' + encodeURIComponent(groupId), queryString) } async listConversations(size: number = 20): Promise { - return HttpClient.get('/api/im/conversations', { - appId: SDKContext.getConfig().appKey, - page: 0, - size, - }) + return HttpClient.get('/api/im/conversations', this.buildConversationQuery(size)) } async markRead(targetId: string, chatType: ChatType = 'SINGLE'): Promise { - await HttpClient.put(`/api/im/conversations/${encodeURIComponent(targetId)}/read`, undefined, { - appId: SDKContext.getConfig().appKey, - chatType, - }) + await HttpClient.put('/api/im/conversations/' + encodeURIComponent(targetId) + '/read', undefined, this.buildConversationActionQuery(chatType)) } async setDraft(targetId: string, chatType: ChatType, draft: string): Promise { - await HttpClient.put(`/api/im/conversations/${encodeURIComponent(targetId)}/draft`, undefined, { - appId: SDKContext.getConfig().appKey, - chatType, - draft, - }) + const params = new DraftBody() + params.appId = SDKContext.getConfig().appKey + params.chatType = chatType + params.draft = draft + await HttpClient.put('/api/im/conversations/' + encodeURIComponent(targetId) + '/draft', params) + } + + async setConversationPinned(targetId: string, chatType: ChatType, pinned: boolean): Promise { + const params = new PinBody() + params.appId = SDKContext.getConfig().appKey + params.chatType = chatType + params.pinned = pinned + await HttpClient.put('/api/im/conversations/' + encodeURIComponent(targetId) + '/pinned', params) + } + + async setConversationMuted(targetId: string, chatType: ChatType, muted: boolean): Promise { + const params = new MuteBody() + params.appId = SDKContext.getConfig().appKey + params.chatType = chatType + params.muted = muted + await HttpClient.put('/api/im/conversations/' + encodeURIComponent(targetId) + '/muted', params) } async deleteConversation(targetId: string, chatType: ChatType): Promise { - await HttpClient.delete(`/api/im/conversations/${encodeURIComponent(targetId)}`, { - appId: SDKContext.getConfig().appKey, - chatType, - }) + await HttpClient.delete('/api/im/conversations/' + encodeURIComponent(targetId), this.buildConversationActionQuery(chatType)) + } + + async listFriends(): Promise { + return HttpClient.get('/api/im/friends', this.buildAppQuery()) + } + + async listGroups(): Promise { + return HttpClient.get('/api/im/groups', this.buildAppQuery()) + } + + async getGroupInfo(groupId: string): Promise { + return HttpClient.get('/api/im/groups/' + encodeURIComponent(groupId), this.buildAppQuery()) + } + + async sendFriendRequest(toUserId: string, remark: string | null = null): Promise { + const params = new FriendRequestBody() + params.appId = SDKContext.getConfig().appKey + params.toUserId = toUserId + if (remark !== null && remark !== '') { + params.remark = remark + } + return HttpClient.post('/api/im/friend-requests', params) + } + + async listFriendRequests(direction: 'incoming' | 'outgoing' = 'incoming'): Promise { + return HttpClient.get('/api/im/friend-requests', this.buildFriendRequestQuery(direction)) + } + + async acceptFriendRequest(requestId: string): Promise { + return HttpClient.post('/api/im/friend-requests/' + encodeURIComponent(requestId) + '/accept', this.buildAppBody()) + } + + async rejectFriendRequest(requestId: string): Promise { + return HttpClient.post('/api/im/friend-requests/' + encodeURIComponent(requestId) + '/reject', this.buildAppBody()) + } + + async sendGroupJoinRequest(groupId: string, remark: string | null = null): Promise { + const params = new GroupJoinRequestBody() + params.appId = SDKContext.getConfig().appKey + if (remark !== null && remark !== '') { + params.remark = remark + } + return HttpClient.post('/api/im/groups/' + encodeURIComponent(groupId) + '/join-requests', params) + } + + async listGroupJoinRequests(groupId: string): Promise { + return HttpClient.get('/api/im/groups/' + encodeURIComponent(groupId) + '/join-requests', this.buildAppQuery()) + } + + async acceptGroupJoinRequest(groupId: string, requestId: string): Promise { + return HttpClient.post( + '/api/im/groups/' + encodeURIComponent(groupId) + '/join-requests/' + encodeURIComponent(requestId) + '/accept', + this.buildAppBody(), + ) + } + + async rejectGroupJoinRequest(groupId: string, requestId: string): Promise { + return HttpClient.post( + '/api/im/groups/' + encodeURIComponent(groupId) + '/join-requests/' + encodeURIComponent(requestId) + '/reject', + this.buildAppBody(), + ) } async getProfile(userId: string): Promise { - return HttpClient.get(`/api/im/accounts/${encodeURIComponent(userId)}`, { - appId: SDKContext.getConfig().appKey, - }) + return HttpClient.get('/api/im/accounts/' + encodeURIComponent(userId), this.buildAppQuery()) } async updateProfile( @@ -187,12 +330,62 @@ export class ImClient { avatar: string | null = null, gender: string | null = null, ): Promise { - return HttpClient.put(`/api/im/accounts/${encodeURIComponent(userId)}`, undefined, { - appId: SDKContext.getConfig().appKey, - ...(nickname !== null ? { nickname } : {}), - ...(avatar !== null ? { avatar } : {}), - ...(gender !== null ? { gender } : {}), - }) + const params = new UpdateProfileBody() + params.appId = SDKContext.getConfig().appKey + if (nickname !== null) { + params.nickname = nickname + } + if (avatar !== null) { + params.avatar = avatar + } + if (gender !== null) { + params.gender = gender + } + return HttpClient.put('/api/im/accounts/' + encodeURIComponent(userId), params) + } + + private buildAppBody(): AppBody { + const body = new AppBody() + body.appId = SDKContext.getConfig().appKey + return body + } + + private buildAppQuery(): string { + return 'appId=' + encodeURIComponent(SDKContext.getConfig().appKey) + } + + private buildConversationActionQuery(chatType: ChatType): string { + return 'appId=' + encodeURIComponent(SDKContext.getConfig().appKey) + '&chatType=' + encodeURIComponent(chatType) + } + + private buildConversationQuery(size: number): string { + return 'appId=' + encodeURIComponent(SDKContext.getConfig().appKey) + '&page=0&size=' + encodeURIComponent(size) + } + + private buildFriendRequestQuery(direction: 'incoming' | 'outgoing'): string { + return 'appId=' + encodeURIComponent(SDKContext.getConfig().appKey) + '&direction=' + encodeURIComponent(direction) + } + + private buildHistoryQuery(page: number, size: number, query: HistoryQuery): string { + const parts: string[] = [] + parts.push('appId=' + encodeURIComponent(SDKContext.getConfig().appKey)) + parts.push('page=' + encodeURIComponent(page)) + parts.push('size=' + encodeURIComponent(size)) + if (query.msgType !== undefined) { + parts.push('msgType=' + encodeURIComponent(query.msgType)) + } + if (query.keyword !== undefined && query.keyword !== '') { + parts.push('keyword=' + encodeURIComponent(query.keyword)) + } + if (query.startTime !== undefined) { + const startValue = query.startTime instanceof Date ? this.formatDateTime(query.startTime) : String(query.startTime) + parts.push('startTime=' + encodeURIComponent(startValue)) + } + if (query.endTime !== undefined) { + const endValue = query.endTime instanceof Date ? this.formatDateTime(query.endTime) : String(query.endTime) + parts.push('endTime=' + encodeURIComponent(endValue)) + } + return parts.join('&') } disconnect(): void { @@ -208,7 +401,7 @@ export class ImClient { private scheduleReconnect(): void { if (this.destroyed) return const delay = this.reconnectDelay - if (SDKContext.getConfig().debug) console.log(`[ImClient] reconnect in ${delay}ms`) + if (SDKContext.getConfig().debug) console.log('[ImClient] reconnect in ' + delay + 'ms') this.reconnectTimer = setTimeout(() => { this.connect() this.reconnectDelay = Math.min(this.reconnectDelay * 2, MAX_RECONNECT_DELAY) @@ -219,7 +412,7 @@ export class ImClient { const messageId = params.messageId ?? this.generateMessageId() const userId = SDKContext.getUserId() ?? '' const appId = SDKContext.getConfig().appKey - return { + const message: ImMessage = { id: messageId, appId, fromUserId: userId, @@ -234,25 +427,55 @@ export class ImClient { revoked: false, createdAt: Date.now(), } + return message + } + + private markFailed(message: ImMessage): ImMessage { + const failed: ImMessage = { + id: message.id, + appId: message.appId, + fromUserId: message.fromUserId, + fromId: message.fromId, + toId: message.toId, + chatType: message.chatType, + msgType: message.msgType, + content: message.content, + status: 'FAILED', + mentionedUserIds: message.mentionedUserIds, + groupReadCount: message.groupReadCount, + revoked: message.revoked, + createdAt: message.createdAt, + } + return failed } private normalizeMessage(message: ImMessage): ImMessage { - return { - ...message, - fromId: message.fromId ?? message.fromUserId, - revoked: message.revoked ?? message.status === 'REVOKED', - appId: message.appId ?? SDKContext.getConfig().appKey, + const normalized: ImMessage = { + id: message.id, + appId: message.appId || SDKContext.getConfig().appKey, + fromUserId: message.fromUserId, + fromId: message.fromId || message.fromUserId, + toId: message.toId, + chatType: message.chatType, + msgType: message.msgType, + content: message.content, + status: message.status, + mentionedUserIds: message.mentionedUserIds, + groupReadCount: message.groupReadCount, + revoked: message.revoked || message.status === 'REVOKED', + createdAt: message.createdAt, } + return normalized } private generateMessageId(): string { - const cryptoId = globalThis.crypto?.randomUUID?.() - if (cryptoId) return cryptoId - return `msg_${Date.now()}_${Math.random().toString(16).slice(2)}` + return 'msg_' + Date.now() + '_' + Math.floor(Math.random() * 1000000).toString(16) } private formatDateTime(value: Date): string { - const pad = (n: number) => String(n).padStart(2, '0') + const pad = (n: number): string => { + return n < 10 ? '0' + n : String(n) + } return [ value.getFullYear(), '-', @@ -267,4 +490,14 @@ export class ImClient { pad(value.getSeconds()), ].join('') } + + private toStringValue(value: Date | string | number | undefined): string | undefined { + if (value === undefined) { + return undefined + } + if (value instanceof Date) { + return this.formatDateTime(value) + } + return String(value) + } } diff --git a/xuqm-sdk/src/main/ets/push/PushSDK.ets b/xuqm-sdk/src/main/ets/push/PushSDK.ets index 37cf4bd..d399a0b 100644 --- a/xuqm-sdk/src/main/ets/push/PushSDK.ets +++ b/xuqm-sdk/src/main/ets/push/PushSDK.ets @@ -1,5 +1,17 @@ import { HttpClient } from '../core/HttpClient' -import type { PushTokenInfo } from '../core/Types' + +class PushRegisterBody { + vendor: string = 'HARMONY' + token: string = '' + platform: string = 'harmony' + imUserId: string | null = null +} + +class PushUnregisterBody { + vendor: string = 'HARMONY' + token: string = '' + platform: string = 'harmony' +} export class PushSDK { /** @@ -8,21 +20,20 @@ export class PushSDK { * vendor should be 'HARMONY' for HarmonyOS devices. */ static async registerToken(token: string, imUserId?: string): Promise { - const body: PushTokenInfo = { - vendor: 'HARMONY', - token, - platform: 'harmony', + const body = new PushRegisterBody() + body.token = token + if (imUserId !== undefined) { + body.imUserId = imUserId } - await HttpClient.post('/api/v1/push/register', { - ...body, - imUserId: imUserId ?? null, - }) + await HttpClient.post('/api/v1/push/register', body) } /** * Unregister push token on logout. */ static async unregisterToken(token: string): Promise { - await HttpClient.post('/api/v1/push/unregister', { token, platform: 'harmony' }) + const body = new PushUnregisterBody() + body.token = token + await HttpClient.post('/api/v1/push/unregister', body) } } diff --git a/xuqm-sdk/src/main/module.json5 b/xuqm-sdk/src/main/module.json5 index 50d15fc..52e444f 100644 --- a/xuqm-sdk/src/main/module.json5 +++ b/xuqm-sdk/src/main/module.json5 @@ -1,6 +1,6 @@ { "module": { - "name": "xuqm-sdk", + "name": "xuqmSdk", "type": "har", "deviceTypes": ["phone", "tablet"] }