Home:ALL Converter>Publish Apple App Store in Visual Studio Apache Cordova project

Publish Apple App Store in Visual Studio Apache Cordova project

Ask Time:2015-10-20T00:08:19         Author:Mirrh

Json Formatter

I have a Visual Studio Apache Cordova project and successfully published on Android Google Play. However, I have been struggling to find out how to publish it to "Apple App Store".

  • "remotebuild" to Mac system and successfully running on debugging deivce (iPhone). Debug mode "Remote Device"
  • But not able to deploy with release mode of "Remote Device" (Build is successful)

Requesting deploy on remote iOS device for buildNumber 2765 on server https://remote-address:3000/cordova... 2>Failed to deploy iOS remote for build C:\PathToProject\bld\ios\Release\buildInfo.json to https://remote-address:3000/cordova : 2>Http 404: Installation failed: Check your provisioning profile 2>
2>Failed to deploy iOS remote for build C:\PathToProject\bld\ios\Release\buildInfo.json to https://remote-address:3000/cordova : ========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ========== ========== Deploy: 0 succeeded, 1 failed, 0 skipped ==========

Which I have already downloaded the Provisioning / Certificate for both Development and Distribution and configured to XCode --> Preference --> Accounts --> Apple ID and Signining Identities.

I tried to verify the .ipa file generated by "remotebuild" using command line as below

codesign -v name.ipa

Saying

code object is not signed at all

I also tried to code sign manually (How to manually re-sign an IPA) but still saying that "code object is not signed at all"

"PhoneGap Build" also did not work

My questions are

  1. Is there any way to configure the provisioning and certificate for iOS in Visual Studio Apache Cordova project?

  2. Do I have to convert this Visual Studio Apache Cordova project to PhoneGap Project and load it on XCode and build with code sign?

Please help me to find a way to publish it on Apple App Store.

Author:Mirrh,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/33219120/publish-apple-app-store-in-visual-studio-apache-cordova-project
yy