Delphi iOS的uiquentedinterfacetorientation失败的传输

g6baxovj  于 2023-10-18  发布在  iOS
关注(0)|答案(1)|浏览(147)

在将 Delphi 11.3生成的.ipa文件传输到macos ventura 13.5.1时,并在项目设置中定义“orientation”>“enable custom orientation”>“portrait”,使用户无法更改应用程序的方向时,我得到了错误

Asset validation failed (90474) Invalid bundle. The “UIInterfaceOrientationPortrait” orientations were provided for the UISupportedInterfaceOrientations Info.plist key in the xxxxx.xxxx.xxxx bundle, but you need to include all of the “UIInterfaceOrientationPortrait,UIInterfaceOrientationPortraitUpsideDown,UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight” orientations to support iPad multitasking. For details, visit: https://developer.apple.com/documentation/bundleresources/information_property_list/uisupportedinterfaceorientations. (ID: aacf3264-9e0f-4ffd-875d-8b87f2480082)

我试着传输文件,发现一个错误

jutyujz0

jutyujz01#

要解决问题,请按照以下步骤操作->
打开 Delphi > project > options > Application > version info >
选择目标ios realize>滚动条到底部>右键单击并选择“添加密钥”
在键中包括UISystemsFullScreen,在值中包括YES。
保存并重建.ipa文件
传输新文件。

相关问题