Android工具链-我为Android设备开发(Android SDK版本30.0.3):
X cmdline-tools component is missing
Run `path/to/sdkmanager --install "cmdline-tools;latest"`
See https://developer.android.com/studio/command-line for more details.
Android工具链-我为Android设备开发(Android SDK版本30.0.3):
X cmdline-tools component is missing
Run `path/to/sdkmanager --install "cmdline-tools;latest"`
See https://developer.android.com/studio/command-line for more details.
当前回答
我在Windows 10上通过以下操作解决了这个问题:
Run the following command in a Windows command prompt or Flutter console: flutter config --android-sdk "C:\Users\'your computer name' AppData\Local\Android\Sdk" (you may need to find and enter your own SDK path) The Android SDK location could be found in the Android Studio application* → Appearance & Behavior → System Settings → Android SDK Open your Android Studio, and then → File → Settings → Appearance & Behavior → System Settings → Android SDK → SDK Tools → download Android SDK Command-line Tools (latest) and you are good to go.
其他回答
MacOS用户
如果已经安装了android studio,只需运行:
flutter config --android-sdk "/Users/$USER/Library/Android/sdk" & flutter doctor --android-licenses
由于我的Android Studio开始屏幕看起来与上面的答案不同,我想分享我的解决方案:
打开Android Studio,点击欢迎屏幕上的“more actions”。 点击“SDK管理器”
在“*首选项”窗口转到“*SDK Tools•”选项卡 选择“Android SDK命令行工具(最新)”复选框。 点击“应用”。
你必须安装Android SDK命令行工具。 要做到这一点,调用菜单命令File→Settings→Android SDK并下载最新的。
您必须在“设置”窗口左侧选择“Android SDK”。在“外观与行为”→“系统设置”下。
我从Android Studio安装了Android SDK平台工具。这帮助我解决了这个错误。
安装前错误
从Android Studio安装平台工具
安装平台工具后
适用于Linux (Ubuntu)
在你的终端复制这个命令,然后用你的用户名(不带空格)修改“你的用户名”:
/home/your user name/Android/Sdk/tools/bin/sdkmanager --install "cmdline-tools;latest"