Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 313
CairoCoder Avatar asked Jan 28 '23 01:01

CairoCoder


1 Answers

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.

like image 99
Jeff Gu Kang Avatar answered Jan 31 '23 02:01

Jeff Gu Kang