everydayminder
flutter - CocoaPods not installed 에러가 뜬다면? $ flutter doctor 명령어를 수행했는데, CocoaPods not installed 에러가 뜬다면 함께 뜨는 메시지도 잘 살펴보자. CocoaPods is used to retrieve the iOS and macOS platform side's plugin code that responds to your plugin usage on the Dart side. Without CocoaPods, plugins will not work on iOS or macOS. To install see https://guides.cocoapods.org/using/getting-started.html#installation for ..
flutter - Android license status unknown이 뜬다면? $ flutter doctor를 실행했는데, 제목과 같은 에러가 발생한다면, 설명에 나온대로 그대로 따라하면 쉽게 해결된다. 해결 방법 $ flutter doctor --android-licenses명령을 실행하자. 그러면, 굉장히 많은 질문을 하는데, 모두 y라고 답해준다. 1/5: License android-googletv-license: --------------------------------------- Terms and Conditions This is the Google TV Add-on for the Android Software Development Kit License Agreement. 1. Intr..
flutter - cmdline-tools component is missing 에러가 발생한다면 flutter doctor 명령을 실행했는데, cmdline-tools component is missing 에러가 발생한다면, 다음과 같은 메시지를 만날 것이다. Run `path/to/sdkmanager --install "cmdline-tools;latest"` See https://developer.android.com/studio/command-line for more details. 해결 방법 cmdline-tools를 설치해 줘야 하는데, 가장 직관적이고 쉬운 방법은 GUI에서 문제를 해결하는 것이다. Android Studio > Preferences > System settings > And..
flutter - Android Studio not found at 에러가 난다면? flutter를 설치하는 과정에서 초기에 겪을 수 있는 문제이다. $ flutter doctor 를 실행했는데, 아래와 같은 에러가 발생한다면? ✗ Android Studio not found at 경로 Android Studio가 설치가 되어 있지 않거나, 경로가 잘못 설정되어 있는 경우이다. 해결 방안 아직 Android Studio를 설치하기 전이라면 Android Studio를 설치하고, flutter doctor를 다시 실행해 본다. 설치는 했지만 경로가 잘못된 경우에는, Android Studio가 애플리케이션 폴더에 설치되어 있다는 전제 하에 $ flutter config --android-studio-dir..