1.新增Targets
再 Xcode 中新增需要的Targets ,并在Project 中确保配置正确
image.png
2. VS Code 配置
-
创建 .vscode/launch.json 文件路径
image.png
image.png
3. 添加配置
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Runner",
"request": "launch",
"type": "dart"
},
{
"name": "Test",
"program": "lib/main.dart",
"request": "launch",
"type": "dart",
"args": [
"--flavor",
"TestTarget", // 必须要和xcode中配置的target 名字一至
]
},
]
}
网友评论