when I run
$ flutter run
I\'m getting a prompt on my mobile device asking if I want to install the app on my device. I give yes, then nothing
I removed debug application from Android menu, and then I ran into the same issue. I restarted my phone, but it wasn't very helpful. My solution was to remove the application completely and reinstall it by hand:
Connect to the device with ADB
Use adb uninstall com.example.application.name
Use adb install C:\PathToYourProject\build\app\outputs\apk\app.apk
By the way, in such uneasy scenarios, flutter run --verbose could provide more detailed information what went wrong.