Reputation: 3189
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.
Any suggestions?
Upvotes: 8
Views: 22911
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
Reputation: 59
Open app.json
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/appicon.png", //here put your icon
"backgroundColor": "#FFFFFF"
},
Upvotes: 1
Reputation: 4879
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
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