Blank application icon on iPad for iPhone only.

I have an iPhone app that is not optimized to work on the iPad, but it contains all the icons for the iPad. When I install the application on the iPad, there is no icon. In addition, when I download my application from the store to the iPad, it does not have an icon ...

In Xcode 9, I marked the application as "universal" and built it. The icon has appeared! Marked as "iPhone only" - the icon has disappeared.

So the question is: how do I make the iPhone-only app have an icon on the iPad?

PS

Creating a new icon with iPad icons installed and activated does not help

PS

Clearing and deleting derived data does not help

PS

I have an icon for iPad and iPad. All checkboxes are selected in the project.

I found a reason:

<key>CFBundleIcons</key>
<dict/>
<key>CFBundleIcons~ipad</key>
<dict/>

info.plist . , ... - iPad.

!!!

+4
2

info.plist iPad

<key>CFBundleIcons</key>
<dict/>
<key>CFBundleIcons~ipad</key>
<dict/>

- iPad

+6

. enter image description here

0

Source: https://habr.com/ru/post/1688085/


All Articles