写点什么

鸿蒙 Flutter 怎样调试 dart 代码

作者:flfljh
  • 2024-12-16
    湖南
  • 本文字数:775 字

    阅读完需:约 3 分钟

鸿蒙 Flutter 怎么样调试 dart 代码

  • ets 代码使用 DevEco-Studio 进行调试。

  • dart 代码可以使用 vscode 和 Android Studio 进行调试。

  • flutter 鸿蒙化版本调试时,需要加上参数,如: --local-engine=/Users/xxx/ohos/engine/src/out/ohos_debug_unopt_arm64

使用 vscode 调试 dart 代码

在项目目录下创建文件 .vscode/launch.json ,并添加参数,如下所示


{    // Use IntelliSense to learn about possible attributes.    // Hover to view descriptions of existing attributes.    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387    "version": "0.2.0",    "configurations": [        {            "name": "flutter_sample",            "request": "launch",            "type": "dart",            "args": [                "--local-engine=/Users/xxx/work/engine_build/engine/src/out/ohos_debug_unopt_arm64"            ]        },        {            "name": "flutter_sample (profile mode)",            "request": "launch",            "type": "dart",            "flutterMode": "profile",            "args": [                "--local-engine=/Users/xxx/work/engine_build/engine/src/out/ohos_profile_arm64"            ]        },        {            "name": "flutter_sample (release mode)",            "request": "launch",            "type": "dart",            "flutterMode": "release",            "args": [                "--local-engine=/Users/xxx/work/engine_build/engine/src/out/ohos_release_arm64"            ]        }    ]}
复制代码


修改完成后,就可以调试 dart 代码了。


使用 Android Studio 调试 dart 代码



参数设置完成后,就可以调试 dart 代码了。


用户头像

flfljh

关注

还未添加个人签名 2024-10-29 加入

还未添加个人简介

评论

发布
暂无评论
鸿蒙Flutter怎样调试dart代码_flfljh_InfoQ写作社区