Flutter 설정에서 발생한 Flutter requires a minimum Xcode version of 11.0.0. 및 plugin not installed;
문제에 대해
버전을 낮추는 것이 좋지 않으므로 제대로 구그가 대응했습니다.
$ flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 1.22.3, on Mac OS X 10.14.6 18G103, locale ja-JP)
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.3)
[!] Xcode - develop for iOS and macOS (Xcode 10.1)
✗ Flutter requires a minimum Xcode version of 11.0.0.
Download the latest version or update via the Mac App Store.
! CocoaPods 1.7.5 out of date (1.8.0 is recommended).
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.
For more info, see https://flutter.dev/platform-plugins
To upgrade:
sudo gem install cocoapods
[!] Android Studio (version 4.1)
✗ Flutter plugin not installed; this adds Flutter specific functionality.
✗ Dart plugin not installed; this adds Dart specific functionality.
[✓] VS Code (version 1.51.1)
[!] Connected device
! No devices available
! Doctor found issues in 3 categories.
$ flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 1.20.4, on Mac OS X 10.14.6 18G103, locale ja-JP)
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.3)
[!] Xcode - develop for iOS and macOS (Xcode 10.1)
✗ Flutter requires a minimum Xcode version of 11.0.0.
Download the latest version or update via the Mac App Store.
! CocoaPods 1.7.5 out of date (1.8.0 is recommended).
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.
For more info, see https://flutter.dev/platform-plugins
To upgrade:
sudo gem install cocoapods
[!] Android Studio (version 4.1)
✗ Flutter plugin not installed; this adds Flutter specific functionality.
✗ Dart plugin not installed; this adds Dart specific functionality.
[✓] VS Code (version 1.51.1)
[!] Connected device
! No devices available
! Doctor found issues in 3 categories.
Flutter는 관리하기 쉽기 때문에 기쁩니다.
해결 방법
Flutter requires a minimum Xcode version of 11.0.0.
More Downloads for Apple Developers 에서 Xcode11.x를 다운로드하지만 macOS 자체를 업그레이드하지 않으면 안됩니다.
역시 안돼?
plugin not installed;
구구한 곳 피 c. 라고 r. 이 m / jp는 h ぉ CgW
Android Studio 4.1 apparently November 27, 2020
확인하고 말했듯이 해보면 확실히 plugin not installed;
가 없어졌다
$ ls -lta ~/Library/Application\ Support/Google/AndroidStudio4.1/
total 16
drwxr-xr-x 26 gremito staff 832 11 27 13:49 options
-rw-r--r-- 1 gremito staff 4 11 27 13:47 port
drwxr-xr-x 13 gremito staff 416 11 27 13:47 .
drwxr-xr-x 11 gremito staff 352 11 27 13:19 plugins
-rw-r--r-- 1 gremito staff 0 11 27 13:18 disabled_update.txt
-rw-r--r-- 1 gremito staff 0 11 19 10:53 disabled_plugins.txt
drwxr-xr-x 3 gremito staff 96 11 2 15:53 workspace
drwxr-xr-x 3 gremito staff 96 11 2 15:50 terminal
drwxr-xr-x 3 gremito staff 96 11 2 15:50 codestyles
drwxr-xr-x 24 gremito staff 768 11 2 15:50 tasks
-rw-r--r-- 1 gremito staff 0 11 2 15:50 port.lock
drwx------ 8 gremito staff 256 11 2 15:50 ..
-rw-r--r-- 1 gremito staff 38 8 4 2019 user.token
$ ls -lta ~/Library/Application\ Support/Google/AndroidStudio4.1/plugins
total 13384
-rw-r--r-- 1 gremito staff 40 11 27 13:48 availables.xml.etag
-rw-r--r-- 1 gremito staff 5464446 11 27 13:48 availables.xml
-rw-r--r-- 1 gremito staff 34 11 27 13:48 pluginsXMLIds.json.etag
-rw-r--r-- 1 gremito staff 165806 11 27 13:48 pluginsXMLIds.json
drwxr-xr-x 13 gremito staff 416 11 27 13:47 ..
drwxr-xr-x 4 gremito staff 128 11 27 13:19 Kotlin
drwxr-xr-x 11 gremito staff 352 11 27 13:19 .
drwxr-xr-x 6 gremito staff 192 11 27 13:18 meta
drwxr-xr-x 3 gremito staff 96 11 19 10:49 Dart
drwxr-xr-x 3 gremito staff 96 11 19 10:48 flutter-intellij
-rw-r--r-- 1 gremito staff 333182 11 2 15:52 extensions.xml
$ ln -s ~/Library/Application\ Support/Google/AndroidStudio4.1/plugins ~/Library/Application\ Support/AndroidStudio4.1
$ flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 1.20.4, on Mac OS X 10.14.6 18G103, locale ja-JP)
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.3)
[!] Xcode - develop for iOS and macOS (Xcode 10.1)
✗ Flutter requires a minimum Xcode version of 11.0.0.
Download the latest version or update via the Mac App Store.
! CocoaPods 1.7.5 out of date (1.8.0 is recommended).
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.
For more info, see https://flutter.dev/platform-plugins
To upgrade:
sudo gem install cocoapods
[✓] Android Studio (version 4.1)
[✓] VS Code (version 1.51.1)
[!] Connected device
! No devices available
! Doctor found issues in 2 categories.
Reference
이 문제에 관하여(Flutter 설정에서 발생한 Flutter requires a minimum Xcode version of 11.0.0. 및 plugin not installed;), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/gremito/items/1c6abd4282719fe9cf2f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)