Skip to content
How to run flutter apps on android device
- You need to connect device with USB Cable
- Enable Developer Option & USB Debugging from device settings
- If you’re not finding developer option, goto about phone, tap build number for multiple times
- Execute `
flutter devices
` to check connected devices
- Execute `
flutter run
` to run your app on device
How to run flutter apps on Android device wirelessly (remotely)
- Follow the above step & make sure you’ve successfully run the app
- Then execute `
adb tcpip 5555
`
- Check your device IP address (Make sure, all your device is connected on same network
- execute `
adb connect YOURIP:5555
`
- Remove USB & Execute `
flutter devices
` & `flutter run
`