我试图用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.

这个问题有解决办法吗?


当前回答

这对我来说很管用:

>开发人员选项>关闭USB调试开关>重新打开USB调试开关

其他回答

步骤1:执行命令:flutter devices检查已连接设备

步骤2:如果在可用模拟器列表中没有任何连接的设备,请运行:flutter emulators

步骤3:要运行模拟器,请运行:flutter emulators——launch <模拟器id>

步骤4:如果没有可用的模拟器,运行:flutter emulators——create[——name xyz]

==>

步骤1:要查看模拟器列表,运行:emulator -list-avds

步骤2:现在要启动模拟器,运行:emulator -avd avd_name

==>

步骤1:打开-a模拟器

步骤2:扑动运行(在您的应用程序目录中)

我用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

到目前为止,我还没有看到提到的一个选项是(对于我的设置)开发人员选项“选择USB配置”必须设置为MTP(媒体传输协议)。

我发现我的杀毒软件(Avast)隔离了adb.exe文件。我去了Avast ->保护->病毒箱。从列表中删除adb.exe文件。

然后将Android_home变量+添加到PATH变量中。我重新启动了我的机器,Android Studio恢复了设备/模拟器。

在将“ANDROID_HOME”更改为环境变量并将其设置为Android SDK的位置后,我解决了这个问题…在我的情况下C:\Android\Sdk。