:42:05.035 当前自定义基座的 SDK 与 HBuilderX 自带的基座 SDK 版本不一致,可能有兼容问题,请及时制作新版自定义基座
16:42:05.716 正在安装自定义基座...
16:42:06.802 自定义基座“ht-xlfxjs-uniapp-multi-platform”安装成功(包名:,版本号:)
16:42:06.802 正在建立手机连接...
16:42:06.802 正在同步手机端程序文件...
16:42:08.048 同步手机端程序文件成功
16:42:08.048 项目 [ht-xlfxjs-uniapp-multi-platform] 已启动。请点击手机/模拟器的运行基座 App(ht-xlfxjs-uniapp-multi-platform)查看效果
当前版本 5.24 ,制作自定义基座提示成功,但是用hbuliderX运行到苹果手机上就报错了,打包的版本号也修改过了
- 发布:2026-08-14 16:51
- 更新:56 分钟前
- 阅读:99
欢迎到专业群( uni-app 官方技术交流群 1 ) 咨询,群中有相关专业的管理员和群友。
从你提供的日志来看,核心问题不是“自定义基座制作失败”,而是:
当前自定义基座的 SDK 与 HBuilderX 自带的基座 SDK 版本不一致。
你现在的现象是:
- HBuilderX 版本:5.24
- 自定义基座提示制作成功
- 但运行到 iOS 真机时报错
- 修改应用版本号后问题依旧
这说明你改的“应用版本号”不是这里要求的版本一致。
这里要求一致的是:
- HBuilderX 版本
- 制作自定义基座时使用的 SDK / 离线 SDK / 打包环境版本
结论
你这个问题大概率是:
- HBuilderX 已升级到 5.24
- 但你的 iOS 自定义基座还是旧 SDK 制作的
- 或者你用的是 离线打包工程,而离线 SDK 版本没有同步升级到与 HBuilderX 匹配的版本
- 所以运行时提示版本不一致,并出现兼容异常
你需要做的不是改应用版本号,而是重新做“同版本基座”
1. 确认 HBuilderX 当前版本
你现在是 HBuilderX 5.24 正式版。
2. 如果你是云打包自定义基座
请确保是用当前 5.24 的 HBuilderX 重新制作 iOS 自定义基座,不是沿用之前旧基座。
官方文档明确说明:
每次升级 HBuilderX 时,之前制作的自定义基座不会跟随升级,升级后需要重新制作新版自定义基座。
参考文档:
自定义基座造成的差异
3. 如果你是离线 SDK 制作 iOS 自定义基座
那要重点检查:
- HBuilderX 是 5.24
- iOS 离线 SDK 也必须是与 5.24 对应的版本
- 不能 HBuilderX 升到 5.24,但离线 SDK 还是旧版本
优先知识库中已有明确说明:
升级 HBuilderX 的同时,需要升级离线 SDK 的版本
参考:
App离线SDK下载
虽然这个链接标题是 android 下载页,但核心规则同样适用于离线 SDK 版本匹配:HBuilderX 与离线 SDK 必须同步升级。
你日志里的这句话是关键
当前自定义基座的 SDK 与 HBuilderX 自带的基座 SDK 版本不一致,可能有兼容问题,请及时制作新版自定义基座
本助手使用国产模型,生成代码可能不准确。专业的代码生成需要全球顶尖的AI Coding模型。推荐使用uni-agent
这句话已经明确说明:
- 不是你项目代码一定有问题
- 不是你应用版本号没改
- 而是基座 SDK 版本和 HBuilderX 当前版本不匹配
所以你去改 manifest 里的版本号,一般解决不了这个提示。
建议你按下面顺序排查
方案一:云打包自定义基座
如果你不是离线打包:
- 删除手机上旧的自定义基座 App
- 删除项目下旧的基座缓存目录
unpackage/debug
- 用当前 HBuilderX 5.24 重新制作 iOS 自定义基座
- 再通过
运行 -> 运行到手机 -> 使用自定义基座运行
官方说明参考:
使用自定义基座运行
方案二:离线打包自定义基座
如果你是 iOS 离线工程打包基座:
- 下载并替换为 与 HBuilderX 5.24 对应的 iOS 离线 SDK
- 重新用 Xcode 编译生成自定义基座
- 安装到手机后再运行调试
参考文档:
iOS平台离线生成自定义调试基座
额外注意:iOS 真机运行本身还有限制
如果你是在 iOS 真机上调试,还需要注意:
- iOS 真机不再支持直接使用标准基座
- 需要使用自定义基座
- 证书、描述文件、设备 UDID 必须正确,否则也可能出现安装成功但无法正常调试的问题
官方说明:
iOS设备选择
如果你是离线工程,社区里还有一个历史兼容点
有部分 iOS 离线打包用户反馈过类似“版本不一致”或“无法同步调试”的问题,社区里有案例提到与 Xcode 工程 target 名称有关。
如果你确认 SDK 版本已经一致,但问题仍在,可以参考这个历史案例:
不过这类情况属于离线工程细节兼容问题,前提还是先把 HBuilderX 与离线 SDK 版本对齐。
最后给你一个最直接的处理建议
你现在优先做这三步:
- 确认自定义基座不是旧版本残留
- 如果是离线打包,升级 iOS 离线 SDK 到与 HBuilderX 5.24 对应版本
- 重新制作 iOS 自定义基座后再运行
如果你愿意,我可以继续帮你进一步判断:
你现在是 云打包自定义基座,还是 iOS 离线 SDK 打包自定义基座?
你把这个告诉我,我可以按你的实际打包方式给你更具体的处理步骤。
2***@qq.com (作者)
2026-08-14 17:21:24.468 [INFO:] (showconsoleview) showbottomview
2026-08-14 17:21:24.476 [INFO:] (showconsoleview) set (project:0x "1d90a63ed30" ) & (realtitle: "控制台" )
2026-08-14 17:21:24.478 [INFO:] (devicelauncher consolelog 3) (view:0x "1d90a63ed30" ) appendstring
2026-08-14 17:21:24.479 [INFO:] (consolelog) call devicelauncher::consolelog done
2026-08-14 17:21:24.481 [INFO:] (compile innerCompile ) consolelog
2026-08-14 17:21:24.483 [INFO:] (compile innerCompile ) consolelog
2026-08-14 17:21:24.519 [INFO:] (consolelog) call devicelauncher::consolelog
2026-08-14 17:21:24.521 [INFO:] (devicelauncher consolelog 5) get view by active window
2026-08-14 17:21:24.524 [INFO:] (showconsoleview) (id: "" ) (title: "控制台" ) (active: false ) (project:0x "1d97f989e70" )
2026-08-14 17:21:24.525 [INFO:] (showconsoleview) [viewpart= "1d90a63ed30" ] bottomviewsvalid find "workbench.view.console"
2026-08-14 17:21:24.526 [INFO:] (showconsoleview) getcurrentbottomconsoleview
2026-08-14 17:21:24.528 [INFO:] (showconsoleview) [consoleview = 0x "1d90a63ed30" ]getcurrentbottomconsoleview
2026-08-14 17:21:24.530 [INFO:] (showconsoleview) [active = false] getcurrentbottomconsoleview
2026-08-14 17:21:24.531 [INFO:] (showconsoleview) showbottomview
2026-08-14 17:21:24.533 [INFO:] (showconsoleview) set (project:0x "1d90a63ed30" ) & (realtitle: "控制台" )
2026-08-14 17:21:24.534 [INFO:] (devicelauncher consolelog 3) (view:0x "1d90a63ed30" ) appendstring
2026-08-14 17:21:24.536 [INFO:] (consolelog) call devicelauncher::consolelog done
2026-08-14 17:21:24.537 [INFO:] (compile innerCompile ) consolelog
2026-08-14 17:21:45.086 [INFO:] (compile innerCompile ) console (lines: 2 )
2026-08-14 17:21:45.087 [INFO:] (compile innerCompile ) consolelog
2026-08-14 17:21:45.087 [INFO:] (consolelog) call devicelauncher::consolelog
2026-08-14 17:21:45.088 [INFO:] (devicelauncher consolelog 5) get view by active window
2026-08-14 17:21:45.088 [INFO:] (showconsoleview) (id: "" ) (title: "控制台" ) (active: false ) (project:0x "1d97f989e70" )
2026-08-14 17:21:45.088 [INFO:] (showconsoleview) [viewpart= "1d90a63ed30" ] bottomviewsvalid find "workbench.view.console"
2026-08-14 17:21:45.089 [INFO:] (showconsoleview) getcurrentbottomconsoleview
2026-08-14 17:21:45.089 [INFO:] (showconsoleview) [consoleview = 0x "1d90a63ed30" ]getcurrentbottomconsoleview
2026-08-14 17:21:45.089 [INFO:] (showconsoleview) [active = false] getcurrentbottomconsoleview
2026-08-14 17:21:45.089 [INFO:] (showconsoleview) showbottomview
2026-08-14 17:21:45.089 [INFO:] (showconsoleview) set (project:0x "1d90a63ed30" ) & (realtitle: "控制台" )
2026-08-14 17:21:45.089 [INFO:] (devicelauncher consolelog 3) (view:0x "1d90a63ed30" ) appendstring
2026-08-14 17:21:45.091 [INFO:] (consolelog) call devicelauncher::consolelog done
2026-08-14 17:21:45.091 [INFO:] (compile innerCompile ) compile
2026-08-14 17:21:45.091 [INFO:] (compile innerCompile ) consolelog
2026-08-14 17:21:45.504 [INFO:] (compile innerCompile ) process done: ("--max-old-space-size=5120", "--no-warnings", "E:/othersoft/HBuilderX/plugins/uniapp-cli/bin/uniapp-cli.js")
2026-08-14 17:21:45.504 [INFO:] (generatepackageresource 3) compiler compile cresult.success: true
2026-08-14 17:21:45.505 [INFO:] (apppackagejob run 1) zipResource
2026-08-14 17:21:45.506 [INFO:] (apppackagejob run) (android fastmode: false ) (ios fastmode: false )
2026-08-14 17:21:45.506 [INFO:] (apppackagejob run) (customdebugpacage: true ) (utsencrypt: false )
2026-08-14 17:21:45.506 [INFO:] (apppackagejob run 2) zipResource
2026-08-14 17:21:45.506 [INFO:] zipResource start
2026-08-14 17:21:45.507 [INFO:] zipResource makeApp
2026-08-14 17:21:45.781 [WARNING:] [PluginHost] [LanguageServerIndex] [Error - 17:21:45] [Indexer] ContextLineTextIsLong! FilePath: e:/worksoft/workspace/qianduan/ht-xlfxjs-uniapp-multi-platform/unpackage/dist/build/app-plus/view.css at Logger.getStackTrace (E:\othersoft\HBuilderX\plugins\hbuilderx-language-services\indexservice\out\server\logger.js:1:1082)
2026-08-14 17:21:45.781 [WARNING:] [PluginHost] [LanguageServerIndex] [Error - 17:21:45] [Indexer] ContextLineTextIsLong! FilePath: e:/worksoft/workspace/qianduan/ht-xlfxjs-uniapp-multi-platform/unpackage/dist/build/app-plus/view.css at Logger.getStackTrace (E:\othersoft\HBuilderX\plugins\hbuilderx-language-services\indexservice\out\server\logger.js:1:1082)
2026-08-14 17:21:45.782 [WARNING:] [PluginHost] [LanguageServerIndex] [Error - 17:21:45] [Indexer] ContextLineTextIsLong! FilePath: e:/worksoft/workspace/qianduan/ht-xlfxjs-uniapp-multi-platform/unpackage/dist/build/app-plus/view.css at Logger.getStackTrace (E:\othersoft\HBuilderX\plugins\hbuilderx-language-services\indexservice\out\server\logger.js:1:1082)
2026-08-14 17:21:45.782 [WARNING:] [PluginHost] [LanguageServerIndex] [Error - 17:21:45] [Indexer] ContextLineTextIsLong! FilePath: e:/worksoft/workspace/qianduan/ht-xlfxjs-uniapp-multi-platform/unpackage/dist/build/app-plus/view.css at Logger.getStackTrace (E:\othersoft\HBuilderX\plugins\hbuilderx-language-services\indexservice\out\server\logger.js:1:1082)
2026-08-14 17:21:45.783 [WARNING:] [PluginHost] [LanguageServerIndex] [Error - 17:21:45] [Indexer] ContextLineTextIsLong! FilePath: e:/worksoft/workspace/qianduan/ht-xlfxjs-uniapp-multi-platform/unpackage/dist/build/app-plus/view.css at Logger.getStackTrace (E:\othersoft\HBuilderX\plugins\hbuilderx-language-services\indexservice\out\server\logger.js:1:1082)
2026-08-14 17:21:45.786 [WARNING:] [PluginHost] [LanguageServerIndex] [Error - 17:21:45] [Indexer] ContextLineTextIsLong! FilePath: e:/worksoft/workspace/qianduan/ht-xlfxjs-uniapp-multi-platform/unpackage/dist/build/app-plus/view.css at Logger.getStackTrace (E:\othersoft\HBuilderX\plugins\hbuilderx-language-services\indexservice\out\server\logger.js:1:1082)
2026-08-14 17:21:47.303 [WARNING:] [PluginHost] [LanguageServerIndex] [Error - 17:21:47] [Indexer] ContextLineTextIsLong! FilePath: e:/worksoft/workspace/qianduan/ht-xlfxjs-uniapp-multi-platform/unpackage/dist/build/app-plus/view.css at Logger.getStackTrace (E:\othersoft\HBuilderX\plugins\hbuilderx-language-services\indexservice\out\server\logger.js:1:1082)
[LanguageServerIndex] [Error - 17:21:47] [Indexer] ContextLineTextIsLong! FilePath: e:/worksoft/workspace/qianduan/ht-xlfxjs-uniapp-multi-platform/unpackage/dist/build/app-plus/view.css at Logger.getStackTrace (E:\othersoft\HBuilderX\plugins\hbuilderx-language-services\indexservice\out\server\logger.js:1:1082)
2026-08-14 17:21:47.303 [WARNING:] [PluginHost] [LanguageServerIndex] [Error - 17:21:47] [Indexer] ContextLineTextIsLong! FilePath: e:/worksoft/workspace/qianduan/ht-xlfxjs-uniapp-multi-platform/unpackage/dist/build/app-plus/view.css at Logger.getStackTrace (E:\othersoft\HBuilderX\plugins\hbuilderx-language-services\indexservice\out\server\logger.js:1:1082)
2026-08-14 17:21:47.304 [WARNING:] [PluginHost] [LanguageServerIndex] [Error - 17:21:47] [Indexer] ContextLineTextIsLong! FilePath: e:/worksoft/workspace/qianduan/ht-xlfxjs-uniapp-multi-platform/unpackage/dist/build/app-plus/view.css at Logger.getStackTrace (E:\othersoft\HBuilderX\plugins\hbuilderx-language-services\indexservice\out\server\logger.js:1:1082)
[LanguageServerIndex] [Error - 17:21:47] [Indexer] ContextLineTextIsLong! FilePath: e:/worksoft/workspace/qianduan/ht-xlfxjs-uniapp-multi-platform/unpackage/dist/build/app-plus/view.css at Logger.getStackTrace (E:\othersoft\HBuilderX\plugins\hbuilderx-language-services\indexservice\out\server\logger.js:1:1082)
2026-08-14 17:21:47.306 [WARNING:] [PluginHost] [LanguageServerIndex] [Error - 17:21:47] [Indexer] ContextLineTextIsLong! FilePath: e:/worksoft/workspace/qianduan/ht-xlfxjs-uniapp-multi-platform/unpackage/dist/build/app-plus/view.css at Logger.getStackTrace (E:\othersoft\HBuilderX\plugins\hbuilderx-language-services\indexservice\out\server\logger.js:1:1082)
2026-08-14 17:21:48.527 [WARNING:] [PluginHost] zstd is not executable
2026-08-14 17:21:48.644 [INFO:] zipResource makeApp finished
2026-08-14 17:21:48.645 [INFO:] zipResource responeObject "{\n \"result\": \"C:\\Users\\liuxm\\AppData\\Local\\Temp\\app-pack\\3\\UNI6D008C7.wgt\",\n \"wgtSize\": 1333301,\n \"workDir\": \"C:\\Users\\liuxm\\AppData\\Local\\Temp\\app-pack\\tmp\\UNI6D008C7\\UNI6D008C7\"\n}\n"
2026-08-14 17:21:48.645 [INFO:] customDebug zip: C:\Users\liuxm\AppData\Local\Temp\app-pack\3__UNI__6D008C7.wgt
2026-08-14 17:21:48.645 [INFO:] (apppackagejob run) begin package, processevent(disablecancelevent)
2026-08-14 17:21:48.645 [INFO:] (apppackagejob run 1) sublimepackageresource
2026-08-14 17:21:49.299 [INFO:] ==========stop Compile========== true
2026-08-14 17:21:49.392 [INFO:] [Thread] The object move to thread occur in (JobManager::runInStandaloneThread<void>)
2026-08-14 17:36:10.225 [INFO:] Upgrade::isFallbackedVersion ?
2026-08-14 17:36:10.226 [INFO:] (checkupdate comparepluginversion) "hbuilder.root" in "E:/othersoft/HBuilderX/update/backup/root/hbuilder.root"
2026-08-14 17:36:10.226 [INFO:] (checkupdate comparepluginversion about) compare ( "5.24.2026081301" ) about version( 4.76.2025082103 ) in about package.json
2026-08-14 17:36:10.227 [INFO:] Upgrade::isFallbackedVersion return false
2026-08-14 17:36:10.229 [INFO:] Upgrade::canFallback::check( "E:/othersoft/HBuilderX/update/backup/root/hbuilder.root" ) exits?
2026-08-14 17:36:10.229 [INFO:] Upgrade::canFallback::check( "E:/othersoft/HBuilderX/update/.data" ) exits?
2026-08-14 17:36:10.230 [INFO:] Upgrade::canFallback::check( "E:/othersoft/HBuilderX/update/.data" ) exits return true
2026-08-14 17:36:12.746 [INFO:] [Thread] The object move to thread occur in (DocumentProvider)
2026-08-14 17:48:43.984 [INFO:] Upgrade::isFallbackedVersion ?
2026-08-14 17:48:43.985 [INFO:] (checkupdate comparepluginversion) "hbuilder.root" in "E:/othersoft/HBuilderX/update/backup/root/hbuilder.root"
2026-08-14 17:48:43.987 [INFO:] (checkupdate comparepluginversion about) compare ( "5.24.2026081301" ) about version( 4.76.2025082103 ) in about package.json
2026-08-14 17:48:43.988 [INFO:] Upgrade::isFallbackedVersion return false
2026-08-14 17:48:43.988 [INFO:] Upgrade::canFallback::check( "E:/othersoft/HBuilderX/update/backup/root/hbuilder.root" ) exits?
2026-08-14 17:48:43.988 [INFO:] Upgrade::canFallback::check( "E:/othersoft/HBuilderX/update/.data" ) exits?
2026-08-14 17:48:43.989 [INFO:] Upgrade::canFallback::check( "E:/othersoft/HBuilderX/update/.data" ) exits return true
2026-08-14 17:49:21.940 [WARNING:] QLayout: Attempting to add QLayout "" to ConfigurationJsonForm "", which already has a layout
2026-08-14 17:49:22.002 [INFO:] [Thread] The object move to thread occur in (DocumentProvider)
2026-08-14 17:49:22.006 [INFO:] [Thread] The object move to thread occur in (DocumentProvider)
2026-08-14 17:56:26.196 [WARNING:] opendomains: false
2026-08-14 17:56:26.197 [WARNING:] universalLinks: ""
2026-08-14 17:56:26.197 [WARNING:] spaceId: ""
2026-08-14 17:56:26.197 [WARNING:] appaleTeamAppid: "Z53U7T5GUR.huatu.ios.zstx"
2026-08-14 17:56:26.460 [WARNING:] opendomains: false
2026-08-14 17:56:26.460 [WARNING:] universalLinks: ""
2026-08-14 17:56:26.460 [WARNING:] spaceId: ""
2026-08-14 17:56:26.461 [WARNING:] appaleTeamAppid: "Z53U7T5GUR.huatu.ios.zstx"
2026-08-14 17:56:26.989 [WARNING:] opendomains: false
2026-08-14 17:56:26.989 [WARNING:] universalLinks: ""
2026-08-14 17:56:26.990 [WARNING:] spaceId: ""
2026-08-14 17:56:26.990 [WARNING:] appaleTeamAppid: "Z53U7T5GUR.huatu.ios.zstx"
2026-08-14 17:56:36.477 [WARNING:] QLayout: Cannot add a null widget to QVBoxLayout/
2026-08-14 17:56:39.283 [WARNING:] [PluginHost] [xmldom error] invalid doc source
@#[line:0,col:undefined]
2026-08-14 17:56:39.285 [WARNING:] [PluginHost] getPlistInfo TypeError: Cannot read properties of undefined (reading 'documentElement')
at t.parse (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:89:47355)
at D.getPlistInfo (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:240977)
at De (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:350095)
at se (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:343425)
at async H.validate [as _validate] (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:346549)
2026-08-14 17:56:39.492 [INFO:] Execute command: "setContext"
2026-08-14 17:56:39.492 [INFO:] Execute command: "setContext"
2026-08-14 17:56:39.493 [INFO:] Execute command: "setContext"
2026-08-14 17:56:39.493 [INFO:] Execute command: "setContext"
2026-08-14 17:56:39.493 [INFO:] Execute command: "setContext"
2026-08-14 17:56:39.494 [INFO:] Execute command: "setContext"
2026-08-14 17:56:39.494 [INFO:] Execute command: "setContext"
2026-08-14 17:56:39.495 [INFO:] Execute command: "setContext"
2026-08-14 17:56:39.495 [INFO:] Execute command: "setContext"
2026-08-14 17:56:39.495 [INFO:] Execute command: "setContext"
2026-08-14 17:56:39.496 [INFO:] Execute command: "setContext"
2026-08-14 17:56:39.496 [INFO:] Execute command: "setContext"
2026-08-14 17:56:39.497 [INFO:] Execute command: "setContext"
2026-08-14 17:56:39.497 [INFO:] Execute command: "setContext"
2026-08-14 17:56:39.497 [INFO:] Execute command: "setContext"
2026-08-14 17:56:39.511 [WARNING:] [PluginHost] verifyPlugin=>launcher-tools pluginsVer=>1.0.3.2026052917,peerPluginsVer=>1.0.3.2026052917
2026-08-14 17:56:39.514 [WARNING:] The console with ansi colors not defined at ""
2026-08-14 17:56:39.515 [WARNING:] !!!( "workbench.console.action.clearLog" )findAction return NULLPTR, may crash.
2026-08-14 17:56:39.515 [WARNING:] !!!( "workbench.console.action.lock" )findAction return NULLPTR, may crash.
2026-08-14 17:56:39.516 [WARNING:] !!!( "workbench.console.action.selectAll" )findAction return NULLPTR, may crash.
2026-08-14 17:56:39.516 [WARNING:] !!!( "workbench.console.action.copy" )findAction return NULLPTR, may crash.
2026-08-14 17:56:39.516 [WARNING:] !!!( "workbench.console.action.copyWithoutTime" )findAction return NULLPTR, may crash.
2026-08-14 17:56:39.517 [WARNING:] !!!( "workbench.console.action.search" )findAction return NULLPTR, may crash.
2026-08-14 17:56:39.524 [INFO:] (createbottomview tabw::currentchanged) getcurrentbottomconsoleview
2026-08-14 17:56:39.524 [INFO:] (createbottomview sashview::viewadded) bottomviewcurrentchanged
2026-08-14 17:56:39.536 [INFO:] (showconsoleview) (id: "workbench.view.console.uniapp.00008120-000A619E3C10C01E:main@{16448501-09ce-4eb3-ab0f-9181057f4094}" ) (title: "ht-xlfxjs-uniapp-multi-platform - ve" ) (active: true ) (project:0x "0" )
2026-08-14 17:56:39.537 [INFO:] (showconsoleview) [viewid= "workbench.view.console.uniapp.00008120-000A619E3C10C01E:main@{16448501-09ce-4eb3-ab0f-9181057f4094}" ] id startswith: "workbench.view.console"
2026-08-14 17:56:39.537 [INFO:] (showconsoleview) [viewpart= "1d9132bbd20" ] bottomviewsvalid find "workbench.view.console.uniapp.00008120-000A619E3C10C01E:main@{16448501-09ce-4eb3-ab0f-9181057f4094}"
2026-08-14 17:56:39.537 [INFO:] (showconsoleview) bottomviews active view 0x "1d9132bbd20"
2026-08-14 17:56:39.538 [INFO:] (showconsoleview) showbottomview
2026-08-14 17:56:39.538 [INFO:] (showconsoleview) set (project:0x "1d9132bbd20" ) & (realtitle: "ht-xlfxjs-uniapp-multi-platform - ve" )
2026-08-14 17:56:40.130 [WARNING:] QLayout: Attempting to add QLayout "" to QWidget "", which already has a layout
2026-08-14 17:56:40.132 [WARNING:] QLayout: Attempting to add QLayout "" to QWidget "", which already has a layout
2026-08-14 17:56:40.137 [INFO:] [Thread] The object move to thread occur in (DocumentProvider)
2026-08-14 17:56:40.139 [WARNING:] The console with ansi colors not defined at ""
2026-08-14 17:56:40.139 [WARNING:] !!!( "workbench.console.action.clearLog" )findAction return NULLPTR, may crash.
2026-08-14 17:56:40.141 [WARNING:] !!!( "workbench.console.action.lock" )findAction return NULLPTR, may crash.
2026-08-14 17:56:40.141 [WARNING:] !!!( "workbench.console.action.selectAll" )findAction return NULLPTR, may crash.
2026-08-14 17:56:40.141 [WARNING:] !!!( "workbench.console.action.copy" )findAction return NULLPTR, may crash.
2026-08-14 17:56:40.141 [WARNING:] !!!( "workbench.console.action.copyWithoutTime" )findAction return NULLPTR, may crash.
2026-08-14 17:56:40.142 [WARNING:] !!!( "workbench.console.action.search" )findAction return NULLPTR, may crash.
2026-08-14 17:56:40.143 [INFO:] (createbottomview sashview::viewadded) bottomviewcurrentchanged
2026-08-14 17:56:40.162 [INFO:] Execute command: "setContext"
2026-08-14 17:56:40.184 [INFO:] [Thread] The object move to thread occur in (JobManager::runInStandaloneThread<T>)
2026-08-14 17:57:11.605 [INFO:] [Thread] The object move to thread occur in (JobManager::runInStandaloneThread<T>)
2026-08-14 17:57:11.612 [INFO:] appCheck start
2026-08-14 17:57:11.613 [INFO:] appCheck processing 20%
2026-08-14 17:57:11.686 [WARNING:] [PluginHost] initCustomBaseAppInfo TypeError: Cannot read properties of null (reading 'slice')
at t.parseBuffer (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:49:68416)
at D.initCustomBaseAppInfo (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:242465)
at D.run (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:221125)
at async t.HDeviceLauncher.runDevice (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:44107)
at async Proxy.ve (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:325439)
2026-08-14 17:57:11.707 [WARNING:] [PluginHost] [xmldom error] invalid doc source
@#[line:0,col:undefined]
2026-08-14 17:57:11.708 [WARNING:] [PluginHost] initCustomBaseAppInfo TypeError: Cannot read properties of undefined (reading 'documentElement')
at t.parse (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:89:47355)
at D.initCustomBaseAppInfo (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:242589)
at D.run (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:221125)
at async t.HDeviceLauncher.runDevice (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:44107)
at async Proxy.ve (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:325439)
2026-08-14 17:57:11.837 [INFO:] appCheck processing 40%
2026-08-14 17:57:11.838 [INFO:] appCheck processing 60%
2026-08-14 17:57:13.292 [WARNING:] [PluginHost] [LanguageServerIndex] [Error - 17:57:13] [Indexer] ContextLineTextIsLong! FilePath: e:/worksoft/workspace/qianduan/ht-xlfxjs-uniapp-multi-platform/unpackage/dist/dev/app-plus/view.css at Logger.getStackTrace (E:\othersoft\HBuilderX\plugins\hbuilderx-language-services\indexservice\out\server\logger.js:1:1082)
[LanguageServerIndex] [Error - 17:57:13] [Indexer] ContextLineTextIsLong! FilePath: e:/worksoft/workspace/qianduan/ht-xlfxjs-uniapp-multi-platform/unpackage/dist/dev/app-plus/view.css at Logger.getStackTrace (E:\othersoft\HBuilderX\plugins\hbuilderx-language-services\indexservice\out\server\logger.js:1:1082)
[LanguageServerIndex] [Error - 17:57:13] [Indexer] ContextLineTextIsLong! FilePath: e:/worksoft/workspace/qianduan/ht-xlfxjs-uniapp-multi-platform/unpackage/dist/dev/app-plus/view.css at Logger.getStackTrace (E:\othersoft\HBuilderX\plugins\hbuilderx-language-services\indexservice\out\server\logger.js:1:1082)
2026-08-14 17:57:13.293 [WARNING:] [PluginHost] [LanguageServerIndex] [Error - 17:57:13] [Indexer] ContextLineTextIsLong! FilePath: e:/worksoft/workspace/qianduan/ht-xlfxjs-uniapp-multi-platform/unpackage/dist/dev/app-plus/view.css at Logger.getStackTrace (E:\othersoft\HBuilderX\plugins\hbuilderx-language-services\indexservice\out\server\logger.js:1:1082)
[LanguageServerIndex] [Error - 17:57:13] [Indexer] ContextLineTextIsLong! FilePath: e:/worksoft/workspace/qianduan/ht-xlfxjs-uniapp-multi-platform/unpackage/dist/dev/app-plus/view.css at Logger.getStackTrace (E:\othersoft\HBuilderX\plugins\hbuilderx-language-services\indexservice\out\server\logger.js:1:1082)
2026-08-14 17:57:13.296 [WARNING:] [PluginHost] [LanguageServerIndex] [Error - 17:57:13] [Indexer] ContextLineTextIsLong! FilePath: e:/worksoft/workspace/qianduan/ht-xlfxjs-uniapp-multi-platform/unpackage/dist/dev/app-plus/view.css at Logger.getStackTrace (E:\othersoft\HBuilderX\plugins\hbuilderx-language-services\indexservice\out\server\logger.js:1:1082)
2026-08-14 17:57:13.927 [WARNING:] [PluginHost] IOSCrashLogMonitor.startCrashLogListener Error: 缺少 launcherToolsRoot,无法定位 iOS 原生日志工具
at E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:408509
at t.getIOSNativeLogExecution (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:408784)
at c.run (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:405803)
at Lb/1.t.subscribeIOSLog (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:406821)
at h.startCrashLogListener (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:394538)
at h.start (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:394022)
at async t.startIOSCrashLogMonitor (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:397743)
at async D.startCrashLogMonitor (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:237875)
at async D.run (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:222715)
at async t.HDeviceLauncher.runDevice (E:\othersoft\HBuilderX\plugins\launcher\out\main.js:100:44107)
2026-08-14 17:57:33.136 [INFO:] appCheck processing 80%
2026-08-14 17:57:33.138 [INFO:] appCheck processing 100%
2026-08-14 17:57:33.307 [INFO:] appCheck finished