flutter 在Mac中,调试在VS Code中不起作用

bq9c1y66  于 2023-06-30  发布在  Flutter
关注(0)|答案(1)|浏览(175)

命令Flutter运行正在工作。在Android Studio中调试工作。
当我从vs代码调试模拟器或模拟器时,它会启动,但什么也没有发生。

Waiting for a connection from Flutter on sdk gphone64 arm64...

我试过了
我用vs代码配置了flutter。
在vs代码中增加了dart,flutter扩展。
增加了 Flutter 的全局路径。
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": "Dart: Attach to Process",
            "type": "dart",
            "request": "attach"
        },
        {
            "name": "Dart",
            "type": "dart",
            "request": "launch",
            "program": "bin/main.dart"
        },
        {
            "name": "app",
            "request": "attach",
            "type": "dart"
        }
    ]
}

谢谢

ggazkfy8

ggazkfy81#

要在iPhone中使用Android Studio进行调试,请执行以下操作:
在您使用的任何Mac配置文件中,您需要添加以下3行:

export LANG=en_US.UTF-8 
export LANGUAGE=en_US.UTF-8 
export LC_ALL=en_US.UTF-8

然后,在使用Android Studio在iPhone中运行时,您的错误将被删除。

相关问题