命令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"
}
]
}
谢谢
1条答案
按热度按时间ggazkfy81#
要在iPhone中使用Android Studio进行调试,请执行以下操作:
在您使用的任何Mac配置文件中,您需要添加以下3行:
然后,在使用Android Studio在iPhone中运行时,您的错误将被删除。