Yogesh kataria
Yogesh kataria

Reputation: 1675

app Icon not changed in *Task Menu* in flutter?

I have successfully changed the App Icon for the App by replacing the file with the files I downloaded from here.

Its working fine in the Menu with logo and name as expected. but the icon is not changed in the Task Menu.enter image description here

And in the Menu its fine though.enter image description here

I replaced [mipmap-hdpi, mipmap-mdpi, mipmap-xhdpi, mipmap-xxhdpi, mipmap-xxxxhdpi] folders with new ones in the android->app->src->main->res path of my project.

Any help will be highly appreciated.

Upvotes: 8

Views: 6186

Answers (2)

Paul Kastel
Paul Kastel

Reputation: 1147

I had exactly the same issue. I rebooted my smartphone and it worked as it was suggested in related topics. After restart the icon is displayed as it should everywhere.

I attach related links:

Problem ticket in Flutter Github repository

Related question with solution that worked

Upvotes: 26

Sunil
Sunil

Reputation: 3494

Please check manifest file.

  <application
        android:name="io.flutter.app.FlutterApplication"
        android:label="flutter"
        android:icon="@mipmap/app_logo">

You have to change icon name here.

Upvotes: 1

Related Questions