CairoCoder
CairoCoder

Reputation: 3189

Change Expo Generated Application Icon

I am trying to change Expo generated iOS and Android Apps Icon, but I can't.

I have uploaded the icons to Google Play and App Store, and still it displays Expo Icon instead.

Expo Icon

Any suggestions?

Upvotes: 8

Views: 22911

Answers (3)

Gopal Krishna
Gopal Krishna

Reputation: 65

In my case, I had to change at both places of app.json-

  "expo": {
    "name": "My app",
    "icon": "icon.png", // My app icon
  }
}

and

  "adaptiveIcon": {
    "foregroundImage": "./assets/appicon.png", //My app icon
    "backgroundColor": "#FFFFFF"
  }

Upvotes: 1

Jugal Kishor Suthar
Jugal Kishor Suthar

Reputation: 59

Open app.json

"android": {
  "adaptiveIcon": {
    "foregroundImage": "./assets/appicon.png", //here put your icon
    "backgroundColor": "#FFFFFF"
  },

Upvotes: 1

Jeff Gu Kang
Jeff Gu Kang

Reputation: 4879

Solution

Edit your app.json as below.

{
  "expo": {
    "name": "My app",
    "icon": "icon.png", // Your icon path 
  }
}

https://docs.expo.io/versions/latest/workflow/configuration/#icon

Why?

App's icon is independent with store's icon. You need to change the icon file in your project and config app.json in Expo project.

Upvotes: 14

Related Questions