Flutter stuck at Installing build\app\outputs\apk\app.apk

Issue

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 happens!

It’s stuck here:

Launching lib/main.dart on POCO F1 in debug mode...
Initializing gradle...                                           1.5s
Resolving dependencies...                                        9.2s
Gradle task 'assembleDebug'...                                  22.9s
Built build\app\outputs\apk\debug\app-debug.apk.
Installing build\app\outputs\apk\app.apk...                     14.9s

Then nothing.

Solution

I solved this by manually installing the apk file generated in the builds folder. After that running flutter run runs the app on my phone.

Answered By – Vishnu

Answer Checked By – Willingham (FlutterFixes Volunteer)

Leave a Reply

Your email address will not be published. Required fields are marked *