8***@qq.com
8***@qq.com
  • 发布:2024-10-18 13:54
  • 更新:2024-10-18 13:54
  • 阅读:13

ios提交审核横竖屏报错ERROR ITMS-90474-90475: iPad Multitasking support requires these orientations

分类:uni-app x

ipad横屏会自动旋转配置了

<?xml version="1.0" encoding="UTF-8"?>  
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">  
<plist version="1.0">  
  <dict>  
    <key>UIRequiresFullScreen</key>  
    <string>YES</string>  
    <key>UISupportedInterfaceOrientations~ipad</key>  
    <array>  
      <string>UIInterfaceOrientationPortrait</string>  
    </array>  
    <key>UISupportedInterfaceOrientations~iphone</key>  
    <array>  
      <string>UIInterfaceOrientationPortrait</string>  
    </array>  
  </dict>  
</plist>

需要加上这行配置才不会不会报错
<key>UIRequiresFullScreen</key>
<string>YES</string>

0 关注 分享

要回复文章请先登录注册