Reputation: 145
I'm new to flutter app devleopment. I've installed Flutter SDK and I'm using VS Code. I want to test my demo app in my android device, I've enabled Developer mode and USB debugging option in my android device. In the status bar, VS Code shows, No Device though I connected via USB cable. How to resolve this problem? Do we need Android SDK for this?
Upvotes: 7
Views: 21315
Reputation: 21
it's just a small technical error, just open cmd/terminal then enter the flutter doctor
command then click on the bottom bar in the device section in vscode (usually it says no device) and your error should be resolved and all your devices will be displayed successfully
Upvotes: 0
Reputation: 11
Run VS Code as administrator.
Check the result from terminal output: flutter doctor
Upvotes: 1
Reputation: 618
connect your phone then you need to run adb devices
on command line while your phone is unlocked it will show allow debug alert on phone accept and it will show
you can download command line tools and use sdk manager if you don't have android sdk
Upvotes: 2