Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-17873] KitchenSink: <iPhone> and <iOS> tags both exist in KS tiapp.xml, only <iOS> should be used

GitHub Issuen/a
TypeBug
PriorityLow
StatusClosed
ResolutionInvalid
Resolution Date2017-05-02T20:19:09.000+0000
Affected Version/sRelease 3.4.1, Release 3.5.0
Fix Version/sn/a
ComponentsiOS
Labelsqe-3.5.0
ReporterEwan Harris
AssigneeEric Merriman
Created2014-10-17T22:02:57.000+0000
Updated2017-05-02T20:19:09.000+0000

Description

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>

Comments

  1. Lee Morris 2017-05-02

    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.

JSON Source