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
This happened for me because there was a typo in gradle.properties. I assume it had something to do with the refactor tool in Android Studio. Two settings ended up on the same line like this:
android.enableJetifier = trueandroid.enableR8=true
When I fixed it, it worked again.