Deployment Error for iOS in VS Cordova

VS version - 2015 with the update of Cordoba 3

Mac OS - 10.10.4

iOS - 9.0

When creating in release mode for iOS, we receive the following warnings. But the release folder is created using ipa and plist.

enter image description here

Thus, when loading this ipa using the application loader, it gives the following 2 errors.

enter image description here

+5
source share
1 answer

As I mentioned in fooobar.com/questions/1233331 / ... :

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 on the problem .

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 korpova-ios repo and place it 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.

+4
source

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


All Articles