Search code examples
androidiosreact-nativeexpo

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?


Solution

  • 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.