반응형
질문
맥에서 flutter doctor 명령을 실행하면 아래와 같이 표시됩니다. 이미 Android Studio를 설치했으며 Android Studio에서 ios 빌드를 실행할 수 있습니다.
[!] Android Studio (not installed)
flutter doctor 출력:
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, v1.12.13+hotfix.5, on Mac OS X 10.14.5 18F132, locale en-GB)
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
[✓] Xcode - develop for iOS and macOS (Xcode 10.3)
[!] Android Studio (not installed)
[✓] Connected device (1 available)
답변
Windows에서
만약 Android Studio가 기본 설치되어 있다면, 다음 명령어를 사용할 수 있습니다.
flutter config --android-studio-dir="C:\Program Files\Android\Android Studio"
이 명령어를 실행한 후, flutter는 android studio를 찾을 수 있지만, 플러그인은 찾을 수 없습니다...
flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel stable, 1.20.2, on Microsoft Windows [Version 10.0.18363.1016], locale zh-CN)
[√] Android toolchain - develop for Android devices (Android SDK version 30.0.2)
[!] Android Studio
X Flutter plugin not installed; this adds Flutter specific functionality.
X Dart plugin not installed; this adds Dart specific functionality.
[√] VS Code (version 1.48.0)
[!] Connected device
! No devices available
! Doctor found issues in 2 categories.
Linux (Ubuntu)에서
참고: Ubuntu에서 문제가 발생하고 Android Studio가 snap으로 설치된 경우:
flutter config --android-studio-dir="/snap/android-studio/current/android-studio"
참고: Ubuntu에서 문제가 발생하고 Android Studio가 JetBrains Toolbox로 설치된 경우:
flutter config --android-studio-dir=/home/myuser/.local/share/JetBrains/Toolbox/apps/AndroidStudio/ch-0/201.7042882
./201.7042822
가 설치된 Android Studio의 현재 버전과 일치해야 합니다. 사용자가 현재 설치된 버전을 확인하고 위의 명령어에서 업데이트해야 합니다.
반응형
댓글