Bad quality IOS icon

I create a icon (1024x1024px) and I put in the .unoproj filw like this:

"iOS": {
"Icons": {
  "iPhone_29_2x": "/Users/cristiankarmy/Desktop/findit/iconoIos.png",
  "iPhone_29_3x": "/Users/cristiankarmy/Desktop/findit/iconoIos.png",
  "iPhone_40_2x": "/Users/cristiankarmy/Desktop/findit/iconoIos.png",
  "iPhone_40_3x": "/Users/cristiankarmy/Desktop/findit/iconoIos.png",
  "iPhone_60_2x": "/Users/cristiankarmy/Desktop/findit/iconoIos.png",
  "iPhone_60_3x": "/Users/cristiankarmy/Desktop/findit/iconoIos.png",
  "iPad_29_1x": "/Users/cristiankarmy/Desktop/findit/iconoIos.png",
  "iPad_29_2x": "/Users/cristiankarmy/Desktop/findit/iconoIos.png",
  "iPad_40_1x": "/Users/cristiankarmy/Desktop/findit/iconoIos.png",
  "iPad_40_2x": "/Users/cristiankarmy/Desktop/findit/iconoIos.png",
  "iPad_76_1x": "/Users/cristiankarmy/Desktop/findit/iconoIos.png",
  "iPad_76_2x": "/Users/cristiankarmy/Desktop/findit/iconoIos.png"
}

But in IOS the icon looks with many pixels… This is a screenshot of the Iphone:

file

I am including in the right way the icon?

Thanks!

Hi! You’ll need to include different versions of the icon for the different screen sizes/densities.

In other words: you manage the scaling of the icon (in photoshop or similar) so that you have complete control of how it will look on the different platforms:

 "iPhone_29_2x": "/Users/cristiankarmy/Desktop/findit/iconoIos_small.png",
 "iPhone_29_3x": "/Users/cristiankarmy/Desktop/findit/iconoIos_large.png",
 ....

Thanks!