본문 바로가기
반응형

build8

How to solve "could not find dart in your flutter sdk" when you build flutter project 플러터 빌드 시 could not find dart in your flutter sdk 에러 해결 방법How to solve "could not find dart in your flutter sdk" when you build flutter project   방법 1. 간단한 해결 VS code를 이용중이라면 Flutter와 Dart 익스텐션을 제거했다가 다시 설치하면 된다. 방법2. 본질적인 해결 1. 환경변수에 flutter, dart 경로 추가export PATH="$PATH:/Users/sjh/development/flutter/bin"export PATH="$PATH:/Users/sjh/development/flutter/bin/cache/dart-sdk/bin"source ~/.zshrc #.. 2024. 6. 5.
[Java][Flutter] Gradle과 JDK 버전 확인 및 변경 방법 How to check and change Gradle and JDK versionsGradle과 JDK 버전 확인 및 변경 방법[Java][Flutter] Gradle과 JDK는 Android 애플리케이션을 빌드하는 데 필수적인 요소입니다. 이들 간의 호환성은 프로젝트의 성공적인 빌드와 실행에 매우 중요합니다. 이 글에서는 Gradle과 JDK 버전의 호환성을 확인하고, 필요에 따라 버전을 변경하는 방법에 대해 설명합니다. (Eng> Gradle and JDK are essential components for building Android applications. Compatibility between them is critical to the successful build and execution .. 2024. 1. 28.
[Solved][Ios] Unable to find a target named `RunnerTests` in project `Runner.xcodeproj`, did find `Runner`. [Solved][Ios] Unable to find a target named `RunnerTests` in project `Runner.xcodeproj`, did find `Runner`. 에러메시지 (Error situation) flutter 앱을 ios버전으로 빌드하는 중에 발생한 에러. 어떻게 해결해야하나 찾아보던 중 해결책을 발견하여 공유한다. [!] Unable to find a target named `RunnerTests` in project `Runner.xcodeproj`, did find `Runner`. 해결 방법 (Solution) ios/Podfile 의 RunnerTests 관련 코드를 제거하면 된다! 즉, 아래의 원본 코드를 [Eng](Just remove the Runn.. 2023. 8. 17.
[Solved][ios] CocoaPods did not set the base configuration of your project because your project already has a custom config set. [Solved][Ios][Flutter] CocoaPods did not set the base configuration of your project because your project already has a custom config set. 에러메시지 (Error) pod install --repo-update 위 명령을 내리다가 발생한 에러 메시지 [Eng](The error message that occurred while executing the above command) [!] CocoaPods did not set the base configuration of your project because your project already has a custom config set. In ord.. 2023. 8. 16.
반응형