Description
In 3.4.0.GA the tiapp.xml tags for iOS were changed, the old way was using
and now has taken it's place. The orientation options need to be merged into the tag as that is the new standard.
The tag should be:
<ios>
<plist>
<dict>
<key>UISupportedInterfaceOrientations~iphone</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>NSLocationWhenInUseUsageDescription</key>
<string>
Specify the reason for accessing the user’s location information.
This appears in the alert dialog when asking the user for permission to access their location.
</string>
</dict>
</plist>
</ios>
Resolving ticket as Invalid as there is now a new version of Kitchen Sink available and we no longer support the version which relates to this ticket.