Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Archive upload failed with error: ITMS-90470 Missing TVTopShelfImage.TVTopShelfPrimaryImageWide key

Tags:

xcode

tvos

Do you know why this is happening and most important how to fix it? Adding the key with what value?

enter image description here

like image 799
amok Avatar asked Oct 01 '16 20:10

amok


1 Answers

Starting in tvOS 10 you must include a wide top shelf image, Top Shelf Image Wide, with a size of 2320px by 720px @1x. tvOS Human Interface Guidelines: Icons and Images.

If Top Shelf Image Wide is not already in your Assets.xcassets you can create one manually, or with the + Add a Group or Image Set button. For example:

enter image description here

The crop area is still 1920px x 720px @1x when the top shelf image is displayed on the Apple TV. So, if you're using any text or images that you don't want cut off make sure to make them centered in those dimensions. For example:

enter image description here

The areas in red are only used for sliding in your top shelf image when your app icon becomes highlighted on the Apple TV home screen.


EDIT:

Check your target's Build Settings.

enter image description here

like image 83
Daniel Storm Avatar answered Sep 19 '22 14:09

Daniel Storm