Reputation: 323
I upgraded my app to universal, but am not ready yet to release the ipad version just an update to the iphone version, so I set targeted device family to "iPhone". After successful upload of the binary, the app is quickly marked red with "missing screenshot". Presumably, this error is related to a confusion about iPad? Looking at the ArchiveInfo.plist, the UIDeviceFamily has 2 items in the array (1,2). What do I need to do to get address this error in itunesconnect?
Upvotes: 0
Views: 2651
Reputation: 35935
Your targeted device family setting is currently:
TARGETED_DEVICE_FAMILY = 1,2
It should be:
TARGETED_DEVICE_FAMILY = 1
Upvotes: 2
Reputation: 21147
You can leave bugs at http://developer.apple.com/bugreporter/
Upvotes: -1