Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- Kotlin
- Java
- 안드로이드
- Android Apk
- Eclipse
- Program type already present
- css
- release unsigned
- Android Apk 이름
- fragment
- jQuery
- Exception
- Android
- Firebase
- android fragment
- R프로그래밍
- release Apk
- JavaScript
- DataTable
- spring
- tomcat
- html
- Android Apk 이름 변경
- apache gzip
- android error
- MySQL
- CSS사용법
- error
- FLUTTER
- java error
Archives
- Today
- Total
selfstarter
Could not find a command named "bin\main.dart". 본문
Could not find a command named "bin\main.dart".
flutter source를 debug 하려고 하니까 아래 에러가 발생
Could not find a command named "bin\main.dart".
vscode면 ctrl+p해서 launch.json 찾아서 program의 "bin/main.dart",을 현재 프로젝트 경로의 main.dart 로 변경해준다.
예를 들어 현재 있는 프로젝트의 위치가 flutter/examples/hello_world/lib 이라면 최상위 프로젝트는 flutter이다.
최상위 프로젝트 경로를 빼고 examples/hello_world/lib/main.dart 이렇게 작성해준다.
"version": "0.2.0",
"configurations": [
{
"name": "Dart",
"program": "examples/hello_world/lib/main.dart",
"request": "launch",
"type": "dart"
}
]
참고
'App > Flutter' 카테고리의 다른 글
info - Only use double quotes for strings containing single quotes - (0) | 2020.09.04 |
---|---|
Flutter Test Code 작성 (0) | 2020.09.02 |
chocolatey 설치 하기 (0) | 2020.08.27 |
Android Flutter SDK 경로 설정 (0) | 2020.08.23 |
Your launch config references a program that does not exist (0) | 2020.08.09 |
Comments