Support 64-bit Ipa support with vs-mda-remote

I am trying to create an IPA with 64 bit support using Visual Studio Tools for Apache Cordova (CTP 3.0), but to no avail.

It seems that vs-mda-remote agent builds only with support for the Arm architecture.
Unzip the Ipa and check the binary using the file command, return this result:

Mach-O executable arm

It is curious that when you open an xcode project deployed on a mac builder machine, the universal architecture assembly settings are correctly set, and the creation and archiving generates an Ipa that contains a binary file that supports 64-bit architecture.

Do you know why this difference?
Could there be some parameters that vs-mda-remote sets to the command line when building a project, overriding the project build settings?
Could be a Cordoba problem?

+4
source share
1 answer

64-bit support is included in the Cordova build from version v.3.4.1, so each version of Tools for Apache Cordova has 64-bit support. vs-mda-remote just creates the base cord, so you should get the arm, arm7v and arm64 in one bold binary when created under release.

http://cordova.apache.org/announcements/2014/11/25/ios-64bit.html

Cordova " " , . .

, , build-debug.xcconfig res/native/ios/cordova ONLY_ACTIVE_ARCH = NO;

: https://github.com/apache/cordova-ios/blob/master/bin/templates/scripts/cordova/build-debug.xcconfig

+4

All Articles