我试图用Flutter创建一个示例应用程序(新安装)。还安装了Android Studio(新安装)。

这是颤振运行的输出

flutter run
No connected devices.

颤振医生输出:

Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel beta, v0.1.5, on Linux, locale en_US.UTF-8)
[✓] Android toolchain - develop for Android devices (Android SDK 27.0.3)
[✓] Android Studio (version 3.0)
[!] VS Code (version 1.20.1)
[!] Connected devices
! No devices available

! Doctor found issues in 2 categories.

这个问题有解决办法吗?


当前回答

如果你的设备已经成功连接,只是突然停止被flutter设备(和Android Studio)识别,这对我来说是有效的:

关闭USB调试 重新打开USB调试

是的。这工作。给我。

其他回答

它基本上需要一个设备“连接”到您的开发机器。如果你在机器上使用模拟器/仿真器,它应该自动被识别为连接设备。另一种方法是连接物理设备,Android和iOS设备的设置过程略有不同。

我遇到了和你一样的问题。结果发现你的设备没有连接到你的电脑。 我所做的其实只是

flutter emulators

然后专门执行一个冷启动,东西将回到他们的地方最有可能。所有最好的程序员。

如果你有

下载Flutter SDK 连接您的移动设备并启用移动设备上的开发人员选项并允许USB调试。

如果你仍然得到“没有设备连接”,那么我认为你应该安装ADB驱动程序。

这对我很管用!!

请按此处下载

我用Flutter控制台解决了AVD问题。

步骤1:

C: \ Users \ valer> flutter emulators
6 available emulators:

3.2_QVGA_ADP2_API_22 _-_ Lollipop • 3.2in QVGA (ADP2) • Generic • 3.2 QVGA (ADP2) API 22 - Lollipop
Android_ARMv7a
Android_Accelerated_x86
Nexus S API Google Nexus S API 23
Nexus_S_API_25_1080x1920_Nougart_7.1.1_ • pixel • Google • Nexus S API 25 1080x1920 (Nougart 7.1.1)
Pixel_API_28 • pixel • Google • Pixel API 28

要运行模拟器,请运行flutter模拟器——launch <模拟器id>。

步骤2:

C: \ Users \ valer> flutter emulators --launch Pixel_API_28

如果你使用的是Windows,按Control + Alt + Delete,在Android Studio中选择Dart任务,然后单击End Task。

我试了很多次,很有效。