我正在开发一个使用 Adobe Air 打包的 iOS 应用程序。我正在尝试将 InterfaceOrientation 设置为 info.plist。
因此将 UIInterfaceOrienation 添加到我的 app.xml 中,但是当我尝试创建 iOS 包时,它给了我“application.iPhone.InfoAdditions 包含无效值”错误。
这就是 app.xml 的样子
<iPhone>
<InfoAdditions>
<![CDATA[
...... other values
<key>UIInterfaceOrientation</key>
<string>UIInterfaceOrientationLandscapeRight</string>
]]>
</InfoAdditions>
不太确定我在这里缺少什么。有任何想法吗?