2016-09-02 49 views
5

我正在爲使用xamarin的Iphone和IPad開發通用應用程序,並且我試圖在部署期間使用Xamarin Studio將應用程序部署到應用程序商店面臨錯誤錯誤ITMS-90474:「Invalid Bundle。iPad多任務處理支持需要以下方向:

錯誤ITMS-90474:「無效的包。 iPad多任務支持需要這些方向: 'UIInterfaceOrientationPortrait,UIInterfaceOrientationPortraitUpsideDown,UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight'。 找到 「UIInterfaceOrientationPortrait,UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight」 捆綁「BUNDLE_NAME」

我必須花費大量的時間在谷歌,但我沒有得到這個如何使用Xamarin Studio來解決這個問題的任何解決方案。

回答

15

編輯從Xcode中的plist文件,並添加此行

<key>UIRequiresFullScreen</key> 
    <true/> 
+1

解決問題雖然它很難解釋如何。 –

+0

@DeepakGM是的同意 – Pritish

+0

是的這個工作,這個答案在這裏https://stackoverflow.com/a/32728607/1453691有一個截圖,只需要一秒鐘更新和擺脫這個錯誤。 – Santosh

10

在項目,常規選項卡中的目標,檢查在部署信息 - >需要全屏顯示。和ReArchive產品。 enter image description here

相關問題