I added the key UIFileSharingEnabled
to my app's version info as described here so my users can save files to my apps documents folder. Works great in testing. Tried to upload to apple store with Application Loader and i'm getting an ERROR ITMS-90039: "Type Mismatch. The value for the Info.plist key UIFileSharingEnabled is not of the required type for that key.
. I've googled and found where other folks had problems with it but none of their solutions helped. Here are the ways i've tried to show this key in the Info.plist:
<key>UIFileSharingEnabled</key>
<string>true</string>
<key>UIFileSharingEnabled</key>
<true/>
<key>UIFileSharingEnabled</key>
<string>YES</string>
<key>UIFileSharingEnabled</key>
<YES/>
All have the same result, Application Loader barfs out the ERROR ITMS-90039
. This key is a boolean key and for other boolean keys in Info.plist they just look like that top one i show. Anyone have a sample Info.plist with this key true that we can compare too?
I've built my app in Rad Studio 10.3.2 (C++ Builder). They key works with test builds on the phone.