Errors in Cordova + xcode ios build

When trying to deliver my application (built-in vs2015 + cordova + remote xcode 7), the following errors occur in the Application Loader:

Application Loader Errors

Thanks in advance.

+4
source share
2 answers

There seems to be a problem with the implementation of Cordoba iOS when publishing applications created specifically using Xcode 7.

A member of the Cordova community has published a patch, cordova-plugin-ipad-multitasking, with a fix.

http://npmjs.com/package/cordova-plugin-ipad-multitasking

Install this plugin and everything should be installed. A future version of Cordoba will completely solve the problem.

Otherwise, if you use remotebuild, you can also find your own project under ~ / .taco_home / remote-builds / taco-remote / builds and make the changes described in Cordoba error in this question .

EDIT:

To resolve ITMS-90339, there is a second step that you can take to correct it in the near future. Take build.xcconfig from branch 3.9.x of the korean repo and place this under res / native / ios / cordova

Now delete this line:

CODE_SIGN_RESOURCE_RULES_PATH = $(SDKROOT)/ResourceRules.plist 

Please note that you will want to delete this custom build.xcconfig file if you upgrade to the version with the full patch that is expected.

+3
source

By default, Cordova does not fulfill all the requirements for multitasking support. ( CB-9161 ) You can follow the steps on this issue to make changes directly to your iOS project to support multitasking.

  • Use Xcode 7 (Cordoba always uses the current SDK)
  • Click the Project icon in Project Navigator
  • Click on your target.
  • Select the General tab
  • Go to the Deployment Information section.
  • Select the iPad Button Segment
  • In the "Device Orientation" section, select all four checkboxes ("Portrait", "top to bottom", "Landscape on the left", "Landscape on the right").
  • Add new file: Launch Screen → "Launch Screen.storyboard"
  • Click the Project icon in Project Navigator
  • Click on your target.
  • Select the General tab
  • Go to the section "Application Icons and Launch Images"
  • Select "Launch Screen.storyboard" from the "Launch Screen File" drop-down menu.
+1
source

Source: https://habr.com/ru/post/1233331/


All Articles