Kofi Amparbeng
Kofi Amparbeng

Reputation: 158

Visual Studio Tools for Cordova App Error On Application Loader

I have previous uploaded the ios build of a VS tools for cordova app on itunes connect for beta testing. Now uploading gives error code ITMS-90474 after the ios9 release. Is this a known error as google is returning no results related to it?

Upvotes: 3

Views: 619

Answers (2)

Tony
Tony

Reputation: 1611

I think it is a new requirement for app since iOS9 release. My app supported only landscape, got that error and rejected when uploading to App Store. I have solved that problem by selecting all four Device orientations (Targets -> General) and then added bellow code to ViewController:

override func supportedInterfaceOrientations() -> UIInterfaceOrientationMask {
    return UIInterfaceOrientationMask.Landscape
}

Upvotes: 1

YinXianwei
YinXianwei

Reputation: 122

work Requires full screen = YES;

Upvotes: 4

Related Questions