I've selected "1" for UIDeviceFamily under iOS keys as I only want my app to be available on iPhone and iPod touch, and NOT iPad.
I exported the app and uploaded using Application Loader.
But when I submit my app for review i receive this message on iTunes connect:
I have tried deleting the Info.plist and undoing all source changes. I also tried changing:
code
<key>UIDeviceFamily</key>
<array>
<string>1</string>
</array>
/code
to
code
<key>UIDeviceFamily</key>
<array>
<integer>1</integer>
</array>
/code
as suggested from a google search. neither of these worked. Every time I receive the same message.
How do I make it so my binary DOESN'T indicate support for binary?