Giter VIP home page Giter VIP logo

remotebuild's Introduction

As of March 2019, this repo is no longer maintained by Microsoft. If you're interested in continuing this project, please feel free to fork it. As of March 2019, we will no longer monitor or respond to open issues. Thanks for your support!


Remote Build

remotebuild sets up a secure build server to remotely build, run and debug apps. It sets up a webserver, and handles secure communication/authentication from the client. It loads other modules such as taco-remote to provide actual functionality. It is an extensible server implementation which can support different project types to build mobile apps. By default, it supports taco-remote agent which allows to remotely build, run, and debug iOS apps created using Visual Studio Tools for Apache Cordova.

Requirements for iOS

To build and run iOS apps on the iOS Simulator or on an iOS device, you must install and configure the remote build, on a Mac computer that meets the following requirements:

  1. Mac OS X Mavericks
  2. Xcode 6
  3. Xcode command-line tools, from Terminal app type:

xcode-select  --install
  1. Node.js
  2. Git command line tools, if you are using a CLI from a Git repository. If the CLI version is pointed to a Git location, Git is required to build the app for iOS.

To test your app on iOS devices, you must also have the following:

  1. An active iOS Developer Program account with Apple
  2. An iOS signing identity configured in Xcode
  3. An associated provisioning profile (download a provisioning profile associated with the signing identity from the Apple developer center, and run the .mobileprovision file). Please read Maintaining your signing identities and certificates for detailed information.

Download and install the remote build agent

From the Terminal app on your Mac, type:


sudo npm install -g remotebuild

When you run the command, you will be prompted to enter your password as well.

Note: The global installation (-g) switch is recommended but not required.

Start remotebuild in secure mode (default)


remotebuild [start]

Start remotebuild in non-secure mode (using simple HTTP based connections)


remotebuild --secure false

Saving remotebuild configuration to a settings (json) file


remotebuild saveconfig [--config path/to/config/file.json] [--option value] ...

List of all available commands


remotebuild --help

Verify remotebuild configuration

  1. Configure remote build agent to a default location:
 
remotebuild [options] saveconfig
  1. Run:

remotebuild test

This command initiates a test build using the saved configuration parameters. The output from the command should show the build number and other information about the build, such as its progress. Note that if remotebuild is already running, it may fail with an error saying that a port is already in use. Either stop the other instance of remotebuild, or specify a different port to run the test on with the --port parameter.

  1. To verify that your signing identity is set up correctly for device builds, type:

remotebuild test --device

Note: If you choose to save the config file to a custom location using "--config", then you will have to start the remotebuild by specifying the custom location of the config file in step 2.

Configure remote build with VS Tools for Apache Cordova

Please refer to User Documentation for instructions on how to configure the remote build with Visual Studio Tools for Apache Cordova.

LICENSE

remotebuild is licensed under the MIT Open Source license.

Code of conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

remotebuild's People

Contributors

alebelcor avatar anbucyk avatar digeff avatar dmitrii-snytkin avatar drewgillies avatar guillaumejenkins avatar guiserrato avatar happylab-jenkins avatar jicongw avatar jmatthiesen avatar joshuaskelton avatar leotlee avatar meenakb avatar mslaguana avatar newtonjain avatar nisheetjain avatar omefire avatar paymicro avatar rido-min avatar ridomin avatar subhagpo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

remotebuild's Issues

Visual Studio Cordova Request launch on remote iOS device fail

Hi,
I've encountered an issue that I cannot debug in a real iPhone when I use VS 2017. I connect my iPhone to my Mac. If I create another application in Xcode and run it, it works fine. I assume that Xcode could connect to my device, but somehow remotebuild could not do so.

I use VS 2017, macOS High Sierra Version 10.13.4, Xcode 9.4.1, iPhone 8plus with iOS 11.4.1. I could build successfully with Simulator.

I've tried to follow this the instruction in this post #14, but it still failed:

=====Message in VS 2017=====
Requesting launch on remote iOS device for buildNumber 4819 on server https://Borothanas-Air.domain:3000/cordova...
https://Borothanas-Air.domain:3000/cordova/build/4819/run The remote server returned an error: (404) Not Found.
Requesting debug on remote iOS device for buildNumber 4819 on server https://Borothanas-Air.domain:3000/cordova...
https://Borothanas-Air.domain:3000/cordova/build/4819/debug The remote server returned an error: (500) Internal Server Error.

=====Message in remotebuild====
Done with current build. Checking for next build in queue.
GET /cordova/build/tasks/5984 200 1.994 ms - 726
GET /cordova/build/tasks/5984/log 200 119.399 ms - -
GET /cordova/build/5984/download 200 2225.050 ms - -
GET /cordova/build/5984/deploy 200 98.147 ms - 763
GET /cordova/build/5984/run 404 10541.186 ms - 35
GET /cordova/build/5984/debug 500 10015.724 ms - 88

iOS10/XCode8 requires you to set a development team

Building for iOS or deploying to remote or local iOS device results in this error:

Error: Remote build error from the build server Build failed with error Error code 65 for command:

When you build your Cordova project in Xcode directly, it states that you have to set a development team in the project settings. From within Visual Studio you can do that with changing your build.json as below:

{
  "ios": {
    "debug": {
      "developmentTeam": "ABCD12345Z"
    },

    "release": {
      "developmentTeam": "ABCD12345Z",
      "codeSignIdentity": "iPhone Developer"
    }
  }
}

It seems that remotebuild does not handle this.

IOS 10.11.6. Sudden "Unknown compression method" error.

I'm using Visual Studio 2015 TACO to build iOS app via remote build. Today for some reason without any changes in project it started to spit error:

An error occured in extracting content from /Users/MyUser/.taco_home/remote-builds/taco-remote/builds/1234/upload_1234.tgz': unknown compression method.

The codovaApp folder in reported path contains empty folder "remote". But manually I can extract contents from upload_1234.tgz file.

I reinstalled remote build, cleared cordova cache, restarted both mac and pc, raised the backup from the "successfull build" period, I really don't know where to dig right now.

Build failed with error Remotebuild requires your projects to use cordova-ios 4.3.0 or greater with XCode 8.3

I have read issue #44 (#44) which is now closed.
I am also getting the build error 'Build failed with error Remotebuild requires your projects to use cordova-ios 4.3.0 or greater with XCode 8.3.'. I tried reinstalling with sudo ('sudo npm install [email protected]'). I also tried 'sudo npm install [email protected]'. I also tried the chown command listed above. I reinstalled VS 2017, and upgraded to version 15.3. None of this works. I see in my config.xml that cordova-ios version 4.2 is being used. I don't see how to change/select version 4.3, which seems to be what is required.

Any idea what to try next ?

Specified application doesn't exist or isn't a bundle directory

Visual Studio 2017, Version 15.2
Cordova Version 7.0.1
Cordova Platform iOS Version 4.4.0
XCode Version on MAC: 8.0 , build 8A218a

build option "simulator" (ex. iPad Air):
remotebuild works. i can see my cordova app in the simulator device and i can use the app.

build option "remote device":

after upgrade to Cordova CLI 7.0.1 and cordova-ios 4.4.0 it doesn't build to the end. some steps a shown in terminal and in VS2017. downgrad to cordova-ios 4.2.0 doesn't work.

i get this error message on build with remote device:

remotebuildissue

if i follow the path "platforms/ios/build/device/". in this directory is a ".app" file, but not with the package name (de.ntag.mycordovaapp), which would produce de.ntag.mycordovaapp.app. the build used the value of tag to generate the ".app" file.

so the build looks for packagename.app, can't found it and the exception throw.

RemoteBuild on mac runs into time out when using Visual Studio 2017 to deploy ionic project

Hi,

i'm using a mac in the cloud from the www.macinthecloud.com service with your remotebuild installed.
When I build an release of a iOS ionic app with Visual Studio 2017 on Windows this runs into a time out.
With smaller apps the remote build on the mac works fine, but with bigger apps not.
It seems that there is a time out of the upload with a limit of about 90 seconds.
I also tried to change the parameters of the RemoteBuild.Config file and the Server.js file of your solution.
This did not not solve the problem.

Is there any idea how to solve this issue?
It is really important for me to get this done.

Thank you very much for your support.

Best regards,
Philip

No longer able to build app for iOS platform

Greetings,

I've been fighting with this same issue for a little over a week now and I'm no closer to getting it working. I need to get around this so that I can work at debugging a completely different problem in our code, but I can't even get to that until I can run the app again.

The last few lines I see in VS2015's "Build" output are as follows:

1>  The following build commands failed:
1>  	CodeSign /Users/macmini/Library/Developer/Xcode/DerivedData/DU_Diagnostics-hbnmbepzehdebhdggxgfxzmtdiff/Build/Intermediates/ArchiveIntermediates/DU\ Diagnostics/InstallationBuildProductsLocation/Applications/DU\ Diagnostics.app
1>  (1 failure)
1>  Failed to build app for buildNumber 10922: Error code 65 for command: xcodebuild with args: -xcconfig,/Users/macmini/.taco_home/remote-builds/taco-remote/builds/10922/cordovaApp/platforms/ios/cordova/build-debug.xcconfig,-workspace,DU Diagnostics.xcworkspace,-scheme,DU Diagnostics,-configuration,Debug,-destination,generic/platform=iOS,-archivePath,DU Diagnostics.xcarchive,archive,CONFIGURATION_BUILD_DIR=/Users/macmini/.taco_home/remote-builds/taco-remote/builds/10922/cordovaApp/platforms/ios/build/device,SHARED_PRECOMPS_DIR=/Users/macmini/.taco_home/remote-builds/taco-remote/builds/10922/cordovaApp/platforms/ios/build/sharedpch
1>MSBUILD : cordova-build error : Error: Remote build error from the build server Build failed with error Error code 65 for command: xcodebuild with args: -xcconfig,/Users/macmini/.taco_home/remote-builds/taco-remote/builds/10922/cordovaApp/platforms/ios/cordova/build-debug.xcconfig,-workspace,DU Diagnostics.xcworkspace,-scheme,DU Diagnostics,-configuration,Debug,-destination,generic/platform=iOS,-archivePath,DU Diagnostics.xcarchive,archive,CONFIGURATION_BUILD_DIR=/Users/macmini/.taco_home/remote-builds/taco-remote/builds/10922/cordovaApp/platforms/ios/build/device,SHARED_PRECOMPS_DIR=/Users/macmini/.taco_home/remote-builds/taco-remote/builds/10922/cordovaApp/platforms/ios/build/sharedpch - 1
1>  Error Remote build error from the build server Build failed with error Error code 65 for command: xcodebuild with args: -xcconfig,/Users/macmini/.taco_home/remote-builds/taco-remote/builds/10922/cordovaApp/platforms/ios/cordova/build-debug.xcconfig,-workspace,DU Diagnostics.xcworkspace,-scheme,DU Diagnostics,-configuration,Debug,-destination,generic/platform=iOS,-archivePath,DU Diagnostics.xcarchive,archive,CONFIGURATION_BUILD_DIR=/Users/macmini/.taco_home/remote-builds/taco-remote/builds/10922/cordovaApp/platforms/ios/build/device,SHARED_PRECOMPS_DIR=/Users/macmini/.taco_home/remote-builds/taco-remote/builds/10922/cordovaApp/platforms/ios/build/sharedpch - {1}
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
========== Deploy: 0 succeeded, 0 failed, 0 skipped ==========

I honestly can't remember the finer details of all the steps I've taken to try get around this issue, but I can try summarise them for reference. Some of them have also resulted in my breaking other steps in the process, each of which I've managed to resolve thereafter:

  • Build process constantly trying to reinstall taco-remote-multiplexer
  • Build process unable to find taco-remote-lib
  • A few others that I can't remember now..

After all of this, I am still left with the error message posted above. I have saved the entire build output log to this gist for reference (hopefully there's nothing sensitive in this output, I haven't modified or masked anything).. I'm hoping someone can make sense of it.


My environment is currently as follows:

  • Windows 10 Pro x64 with latest updates
  • VS2015 Community 14.0.25431.01 Update 3
    Visual Studio Tools for Apache Cordova Update 10
  • Mac OSX El Capitan 10.11.6
  • xCode 8.2.1

With regards to what I've tried here, I'll start off with the more recent ones, because they're either more fresh in my mind or (from those tried this morning) I still have the tabs open. Some of these have been in aid of trying to fix other things that I broke (as mentioned above), but this should give you an idea of how desperate I am to get this working...

  • Tried all suggestions here,here and here (because I was seeing this behaviour anyway)
  • Completely removed and reinstalled remotebuild on my Mac
  • Completely removed and reinstalled NodeJS itself, using latest of version 4 and 6 ranges
  • The suggestions posted here, because of the error I see when trying to run remotebuild test
  • Completed all steps listed in the Taco iOS Guide, at least twice.
  • Regenerated and redeployed all provisioning profiles (and therefore certificates, etc..)
  • Tried using Cordova 6.5.0 and 7.0.1, both on my local PC and the remote Mac
  • Removed and reinstalled VS2015 (..and my god did this take forever)
  • Using custom NodeJS, including forcing the fact by adding my custom path before the others in VS2015's "Options > Projects and Solutions > External Web Tools"

I have now spent over 40 hours trying to fix this one god damn &%#$Z^$*@!@%$ing issue. Please can somebody help me out? Every Google search I try shows a list of pages I've already visited, I'm so lost I don't know where to go next..

Edit: Almost forgot one other important aspect, the different changes I've tried in the iOS section of my build.json file... These include:

  • both with and without a provisioningProfile key
  • both with and without packageType key, as development and ad-hoc

Breakpoints don't hit when debugging a local IOS 10.2 device

Hello,

When running a locally connected iPhone 5 running IOS 10.2 in VS2015 the breakpoints don't hit. Here are the details:

  • Using Cordova CLI 6.1.1
  • I can build, deploy, and run on the iPhone
  • I can set valid breakpoints (ie they can only be set on valid lines of Javascript)
  • I can interact with the app by running commands in the JS Console (ie I can set the background color using document.body.style.background = "red"
  • I have tried resetting the app using window.location.reload() but am still unable to break

Any ideas?
Thanks

Device support file for iOS 11.2.1. 'Cannot find the app installed on the device', when deploying app to local device

Hi
I updated iOS on my iPad to 11.2.1 and I am seeing the below error when launch the app from Visual Studio TACO from windows machine connected to a local iPad.
"Cannot find the app installed on the device. Check that the device is connected, awake, and unlocked".

My Mac has XCode 9.2 and doesn't have device support files for 11.2.1, the latest is 11.2 (15C107).
The build succeeded but the deployment failed as shown below:
++++++++
2>Starting idevicedebugserverproxy.exe at port 3000.
2>Cannot find the app installed on the device. Check that the device is connected, awake, and unlocked.
2>Deployment failed.
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
========== Deploy: 0 succeeded, 1 failed, 0 skipped ==========
++++++++++++
Could this be due to the missing iOS device support file for 11.2.1 on the Windows machine where VS TACO is installed or, is it due to some certificate related issue? Since I don't see any certificate related errors in the VS output, I am presuming I got beyond all certificate related issues. Btw, I am using Cordova 4.5.4 and VS TACO 2015.
Is there a 11.2.1 device support file that I can download from somewhere ? Really appreciate for any pointers..

As per Apple support, I cannot downgrade to an earlier version of iOS on iPad since 11.2.1 is not in beta. Looks like I either need to get an iPad with older version of iOS or find the device support file for iOS 11.2.1 ..I don't have another iPad with older version of iOS so I am stuck with the device support file option.

Please let me know if you need further information.

Thanks !

Internal Server Error to Deploy to device after Build Succeed

Hello to everyone.

I have a similar issue as one of the guys had in one of the older posts, but in my case the Build succeeds while the Deploy is giving an Internal Server error.

GET /cordova/build/4984/deploy 500 9.239 ms - 124
/usr/local/npm_packages/lib/node_modules/remotebuild/node_modules/applicationinsights/AutoCollection/Exceptions.js:25
throw error;
^

Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client
at validateHeader (_http_outgoing.js:503:11)
at ServerResponse.setHeader (_http_outgoing.js:510:3)
at ServerResponse.header (/usr/local/npm_packages/lib/node_modules/remotebuild/node_modules/express/lib/response.js:700:10)
at ServerResponse.send (/usr/local/npm_packages/lib/node_modules/remotebuild/node_modules/express/lib/response.js:154:12)
at ServerResponse.json (/usr/local/npm_packages/lib/node_modules/remotebuild/node_modules/express/lib/response.js:240:15)
at ChildProcess. (/Users/steph/.taco_home/node_modules/taco-remote-lib/2.3.2/node_modules/taco-remote-lib/ios/ios.js:219:33)
at ChildProcess.emit (events.js:160:13)
at maybeClose (internal/child_process.js:943:16)
at Socket.stream.socket.on (internal/child_process.js:363:11)
at Socket.emit (events.js:160:13)

image

Any help would be appreciated!
Thanks!

Failed to build app for buildNumber XXX: cordovaProject.projectConfig.getFileResources is not a function

When building from Visual Studio to iOS , getting build Error

node: 6.10.2
npm: 4.5.0
cordova:5.4.1

Mac :
node : 6.10.2
npm : 3.10.10

here is log from the MAC:

npm WARN deprecated [email protected]: this package has been reintegrated into npm and is now out of date with respect to npm
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated [email protected]: Use uuid module instead
npm WARN deprecated [email protected]: Use uuid module instead
/Users/venkat/.taco_home/node_modules/cordova/5.4.1
└─┬ [email protected] 
  ├── [email protected] 
  ├─┬ [email protected] 
  │ ├─┬ [email protected] 
  │ │ └─┬ [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ ├── [email protected] 
  │ │   │ ├── [email protected] 
  │ │   │ └── [email protected] 
  │ │   └── [email protected] 
  │ ├── [email protected] 
  │ ├─┬ [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ └─┬ [email protected] 
  │ │ │ │   ├── [email protected] 
  │ │ │ │   └── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ └── [email protected] 
  │ ├─┬ [email protected] 
  │ │ └─┬ [email protected] 
  │ │   ├── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ ├─┬ [email protected] 
  │ │   │ │ ├── [email protected] 
  │ │   │ │ ├─┬ [email protected] 
  │ │   │ │ │ └── [email protected] 
  │ │   │ │ └─┬ [email protected] 
  │ │   │ │   └── [email protected] 
  │ │   │ ├─┬ [email protected] 
  │ │   │ │ ├── [email protected] 
  │ │   │ │ └── [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ ├── [email protected] 
  │ │   │ ├── [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ ├─┬ [email protected] 
  │ │   │ │ ├─┬ [email protected] 
  │ │   │ │ │ └── [email protected] 
  │ │   │ │ ├─┬ [email protected] 
  │ │   │ │ │ └── [email protected] 
  │ │   │ │ └── [email protected] 
  │ │   │ ├─┬ [email protected] 
  │ │   │ │ ├── [email protected] 
  │ │   │ │ ├── [email protected] 
  │ │   │ │ ├─┬ [email protected] 
  │ │   │ │ │ ├── [email protected] 
  │ │   │ │ │ ├── [email protected] 
  │ │   │ │ │ ├── [email protected] 
  │ │   │ │ │ ├── [email protected] 
  │ │   │ │ │ └── [email protected] 
  │ │   │ │ └─┬ [email protected] 
  │ │   │ │   └── [email protected] 
  │ │   │ ├── [email protected] 
  │ │   │ ├─┬ [email protected] 
  │ │   │ │ ├── [email protected] 
  │ │   │ │ └─┬ [email protected] 
  │ │   │ │   └── [email protected] 
  │ │   │ ├─┬ [email protected] 
  │ │   │ │ └── [email protected] 
  │ │   │ ├─┬ [email protected] 
  │ │   │ │ └── [email protected] 
  │ │   │ ├── [email protected] 
  │ │   │ ├── [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ ├─┬ [email protected] 
  │ │   │ │ ├── [email protected] 
  │ │   │ │ ├── [email protected] 
  │ │   │ │ ├── [email protected] 
  │ │   │ │ └── [email protected] 
  │ │   │ ├── [email protected] 
  │ │   │ └─┬ [email protected] 
  │ │   │   └─┬ [email protected] 
  │ │   │     └── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ ├─┬ [email protected] 
  │ │   │ │ └── [email protected] 
  │ │   │ └─┬ [email protected] 
  │ │   │   └─┬ [email protected] 
  │ │   │     ├── [email protected] 
  │ │   │     └── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ ├─┬ [email protected] 
  │ │   │ │ └── [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ ├── [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ └── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ └── [email protected] 
  │ │   └── [email protected] 
  │ ├─┬ [email protected] 
  │ │ └─┬ [email protected] 
  │ │   ├── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├─┬ [email protected] 
  │ │   │ └─┬ [email protected] 
  │ │   │   ├── [email protected] 
  │ │   │   └── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├── [email protected] 
  │ │   ├── [email protected] 
  │ │   └── [email protected] 
  │ ├─┬ [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ ├── [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] WARN enoent ENOENT: no such file or directory, open '/Users/venkat/.taco_home/node_modules/cordova/5.4.1/package.json'
npm WARN 5.4.1 No description
npm WARN 5.4.1 No repository field.
npm WARN 5.4.1 No README data
npm WARN 5.4.1 No license field.
.1 
  │ │ │ ├── [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ ├─┬ [email protected] 
  │ │ │ │ │ └── [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ ├── [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ ├── [email protected] 
  │ │ │ │ ├── [email protected] 
  │ │ │ │ ├── [email protected] 
  │ │ │ │ ├── [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ └── [email protected] 
  │ │ └── [email protected] 
  │ ├─┬ [email protected] 
  │ │ └── [email protected] 
  │ ├─┬ [email protected] 
  │ │ └── [email protected] 
  │ ├─┬ [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ └── [email protected] 
  │ │ └─┬ [email protected] 
  │ │   └── [email protected] 
  │ ├─┬ [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ └─┬ [email protected] 
  │ │ │ │   ├── [email protected] 
  │ │ │ │   └── [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ └─┬ [email protected] 
  │ │ │   └─┬ [email protected] 
  │ │ │     └── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ └── [email protected] 
  │ │ └─┬ [email protected] 
  │ │   └── [email protected] 
  │ ├── [email protected] 
  │ ├─┬ [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └─┬ [email protected] 
  │ │ │   └─┬ [email protected] 
  │ │ │     └── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └─┬ [email protected] 
  │ │ │   ├── [email protected] 
  │ │ │   └── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └─┬ [email protected] 
  │ │ │   └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ ├─┬ [email protected] 
  │ │ │ │ │ ├── [email protected] 
  │ │ │ │ │ ├── [email protected] 
  │ │ │ │ │ ├── [email protected] 
  │ │ │ │ │ ├── [email protected] 
  │ │ │ │ │ └── [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ └─┬ [email protected] 
  │ │ │   ├── [email protected] 
  │ │ │   ├─┬ [email protected] 
  │ │ │   │ ├── [email protected] 
  │ │ │   │ ├── [email protected] 
  │ │ │   │ └── [email protected] 
  │ │ │   ├── [email protected] 
  │ │ │   └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ └─┬ [email protected] 
  │ │ │   └── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ └─┬ [email protected] 
  │ │ │ │   ├── [email protected] 
  │ │ │ │   ├── [email protected] 
  │ │ │ │   ├── [email protected] 
  │ │ │ │   ├── [email protected] 
  │ │ │ │   └── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ ├─┬ [email protected] 
  │ │ │ │ │ ├── [email protected] 
  │ │ │ │ │ ├── [email protected] 
  │ │ │ │ │ ├── [email protected] 
  │ │ │ │ │ └── [email protected] 
  │ │ │ │ ├─┬ [email protected] 
  │ │ │ │ │ └── [email protected] 
  │ │ │ │ ├─┬ [email protected] 
  │ │ │ │ │ ├── [email protected] 
  │ │ │ │ │ ├─┬ [email protected] 
  │ │ │ │ │ │ └── [email protected] 
  │ │ │ │ │ ├── [email protected] 
  │ │ │ │ │ └── [email protected] 
  │ │ │ │ └─┬ [email protected] 
  │ │ │ │   └── [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ ├── [email protected] 
  │ │ │ │ ├── [email protected] 
  │ │ │ │ ├── [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ ├── [email protected] 
  │ │ │ │ ├─┬ [email protected] 
  │ │ │ │ │ ├── [email protected] 
  │ │ │ │ │ ├── [email protected] 
  │ │ │ │ │ └── [email protected] 
  │ │ │ │ └─┬ [email protected] 
  │ │ │ │   ├── [email protected] 
  │ │ │ │   ├── [email protected] 
  │ │ │ │   ├── [email protected] 
  │ │ │ │   ├── [email protected] 
  │ │ │ │   ├── [email protected] 
  │ │ │ │   ├── [email protected] 
  │ │ │ │   ├── [email protected] 
  │ │ │ │   └── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├─┬ [email protected] 
  │ │ │ │ └── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └─┬ [email protected] 
  │ │ │   ├── [email protected] 
  │ │ │   ├── [email protected] 
  │ │ │   ├── [email protected] 
  │ │ │   ├── [email protected] 
  │ │ │   └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ └─┬ [email protected] 
  │ │ │   └── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ └── [email protected] 
  │ ├─┬ [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └── [email protected] 
  │ │ └── [email protected] 
  │ ├── [email protected] 
  │ ├─┬ [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └── [email protected] 
  │ │ └── [email protected] 
  │ ├── [email protected] 
  │ ├─┬ [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ └── [email protected] 
  │ ├─┬ [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├─┬ [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ ├── [email protected] 
  │ │ │ └── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ ├── [email protected] 
  │ │ └── [email protected] 
  │ ├── [email protected] 
  │ ├── [email protected] 
  │ ├─┬ [email protected] 
  │ │ ├── [email protected] 
  │ │ └─┬ [email protected] 
  │ │   ├── [email protected] 
  │ │   └─┬ [email protected] 
  │ │     └─┬ [email protected] 
  │ │       └── [email protected] 
  │ ├── [email protected] 
  │ ├── [email protected] 
  │ └─┬ [email protected] 
  │   ├── [email protected] 
  │   └── [email protected] 
  ├─┬ [email protected] 
  │ └── [email protected] 
  ├── [email protected] 
  ├── [email protected] 
  └─┬ [email protected] 
    ├─┬ [email protected] 
    │ ├── [email protected] 
    │ ├── [email protected] 
    │ ├─┬ [email protected] 
    │ │ └── [email protected] 
    │ ├── [email protected] 
    │ └── [email protected] 
    ├─┬ [email protected] 
    │ ├── [email protected] 
    │ ├── [email protected] 
    │ ├── [email protected] 
    │ ├── [email protected] 
    │ ├─┬ [email protected] 
    │ │ ├── [email protected] 
    │ │ ├── [email protected] 
    │ │ └── [email protected] 
    │ └── [email protected] 
    ├── [email protected] 
    ├─┬ [email protected] 
    │ └─┬ [email protected] 
    │   ├─┬ [email protected] 
    │   │ ├─┬ [email protected] 
    │   │ │ ├─┬ [email protected] 
    │   │ │ │ └── [email protected] 
    │   │ │ ├─┬ [email protected] 
    │   │ │ │ ├── [email protected] 
    │   │ │ │ ├── [email protected] 
    │   │ │ │ ├── [email protected] 
    │   │ │ │ ├── [email protected] 
    │   │ │ │ └── [email protected] 
    │   │ │ └── [email protected] 
    │   │ ├── [email protected] 
    │   │ ├── [email protected] 
    │   │ ├── [email protected] 
    │   │ ├── [email protected] 
    │   │ ├── [email protected] 
    │   │ ├── [email protected] 
    │   │ ├── [email protected] 
    │   │ ├─┬ [email protected] 
    │   │ │ ├─┬ [email protected] 
    │   │ │ │ └── [email protected] 
    │   │ │ └─┬ [email protected] 
    │   │ │   ├── [email protected] 
    │   │ │   ├── [email protected] 
    │   │ │   └── [email protected] 
    │   │ └── [email protected] 
    │   └─┬ [email protected] 
    │     └─┬ [email protected] 
    │       ├── [email protected] 
    │       └── [email protected] 
    ├─┬ [email protected] 
    │ └─┬ [email protected] 
    │   └── [email protected] 
    ├─┬ [email protected] 
    │ └── [email protected] 
    └── [email protected] 

Executing "before_plugin_add"  hook for all plugins.
Calling plugman.fetch on plugin "remote/plugins/cordova-plugin-console"
Copying plugin "remote/plugins/cordova-plugin-console" => "/Users/venkat/.taco_home/remote-builds/taco-remote/builds/11313/cordovaApp/plugins/cordova-plugin-console"
Executing "after_plugin_add"  hook for all plugins.
Executing "before_plugin_add"  hook for all plugins.
Calling plugman.fetch on plugin "remote/plugins/cordova-plugin-crosswalk-webview"
Copying plugin "remote/plugins/cordova-plugin-crosswalk-webview" => "/Users/venkat/.taco_home/remote-builds/taco-remote/builds/11313/cordovaApp/plugins/cordova-plugin-crosswalk-webview"
Executing "after_plugin_add"  hook for all plugins.
Executing "before_plugin_add"  hook for all plugins.
Calling plugman.fetch on plugin "remote/plugins/cordova-plugin-device"
Copying plugin "remote/plugins/cordova-plugin-device" => "/Users/venkat/.taco_home/remote-builds/taco-remote/builds/11313/cordovaApp/plugins/cordova-plugin-device"
Executing "after_plugin_add"  hook for all plugins.
Executing "before_plugin_add"  hook for all plugins.
Calling plugman.fetch on plugin "remote/plugins/cordova-plugin-network-information"
Copying plugin "remote/plugins/cordova-plugin-network-information" => "/Users/venkat/.taco_home/remote-builds/taco-remote/builds/11313/cordovaApp/plugins/cordova-plugin-network-information"
Executing "after_plugin_add"  hook for all plugins.
Executing "before_plugin_add"  hook for all plugins.
Calling plugman.fetch on plugin "remote/plugins/cordova-plugin-splashscreen"
Copying plugin "remote/plugins/cordova-plugin-splashscreen" => "/Users/venkat/.taco_home/remote-builds/taco-remote/builds/11313/cordovaApp/plugins/cordova-plugin-splashscreen"
Executing "after_plugin_add"  hook for all plugins.
Executing "before_plugin_add"  hook for all plugins.
Calling plugman.fetch on plugin "remote/plugins/cordova-plugin-statusbar"
Copying plugin "remote/plugins/cordova-plugin-statusbar" => "/Users/venkat/.taco_home/remote-builds/taco-remote/builds/11313/cordovaApp/plugins/cordova-plugin-statusbar"
Executing "after_plugin_add"  hook for all plugins.
Executing "before_plugin_add"  hook for all plugins.
Calling plugman.fetch on plugin "remote/plugins/cordova-plugin-streaming"
Copying plugin "remote/plugins/cordova-plugin-streaming" => "/Users/venkat/.taco_home/remote-builds/taco-remote/builds/11313/cordovaApp/plugins/cordova-plugin-streaming"
Executing "after_plugin_add"  hook for all plugins.
Executing "before_plugin_add"  hook for all plugins.
Calling plugman.fetch on plugin "remote/plugins/cordova-plugin-whitelist"
Copying plugin "remote/plugins/cordova-plugin-whitelist" => "/Users/venkat/.taco_home/remote-builds/taco-remote/builds/11313/cordovaApp/plugins/cordova-plugin-whitelist"
Executing "after_plugin_add"  hook for all plugins.
Executing "before_plugin_add"  hook for all plugins.
Calling plugman.fetch on plugin "remote/plugins/ionic-plugin-keyboard"
Copying plugin "remote/plugins/ionic-plugin-keyboard" => "/Users/venkat/.taco_home/remote-builds/taco-remote/builds/11313/cordovaApp/plugins/ionic-plugin-keyboard"
Executing "after_plugin_add"  hook for all plugins.
Executing "before_plugin_add"  hook for all plugins.
Calling plugman.fetch on plugin "remote/plugins/onesignal-cordova-plugin"
Copying plugin "remote/plugins/onesignal-cordova-plugin" => "/Users/venkat/.taco_home/remote-builds/taco-remote/builds/11313/cordovaApp/plugins/onesignal-cordova-plugin"
Executing "after_plugin_add"  hook for all plugins.
Executing "before_plugin_add"  hook for all plugins.
no version specified, retrieving version from config.xml
Calling plugman.fetch on plugin "cordova-plugin-vs-taco-support"
Fetching plugin "cordova-plugin-vs-taco-support" via npm
Copying plugin "/Users/venkat/.npm/cordova-plugin-vs-taco-support/0.2.3/package" => "/Users/venkat/.taco_home/remote-builds/taco-remote/builds/11313/cordovaApp/plugins/cordova-plugin-vs-taco-support"
Executing "after_plugin_add"  hook for all plugins.
cordova platform add ios
Executing "before_platform_add"  hook for all plugins.
No version supplied. Retrieving version from config.xml...
Adding ios project...
PlatformApi successfully found for platform ios
Creating Cordova project for the iOS platform:
	Path: platforms/ios
	Package: io.radio.kalas
	Name: Kalas3
Copying iOS template project to /Users/venkat/.taco_home/remote-builds/taco-remote/builds/11313/cordovaApp/platforms/ios
iOS project created with [email protected]
Executing "before_prepare"  hook for all plugins.
Resolving module name for q => q
Processing res/native for ios
Searching PlatformJson files for differences between project vs. platform installed plugins
No differences found between project and ios platform. Continuing...
Generating platform-specific config.xml from defaults for iOS at /Users/venkat/.taco_home/remote-builds/taco-remote/builds/11313/cordovaApp/platforms/ios/Kalas3/config.xml
Merging project's config.xml into platform-specific iOS config.xml
Merging and updating files from [www, platforms/ios/platform_www] to platforms/ios/www
  mkdir platforms/ios/www/cordova-js-src
  copy  platforms/ios/platform_www/cordova-js-src/exec.js platforms/ios/www/cordova-js-src/exec.js (new file)
  copy  platforms/ios/platform_www/cordova-js-src/platform.js platforms/ios/www/cordova-js-src/platform.js (new file)
  copy  platforms/ios/platform_www/cordova.js platforms/ios/www/cordova.js (updated file)
  delete platforms/ios/www/css/index.css (no source)
  copy  www/css/style.min.css platforms/ios/www/css/style.min.css (new file)
  copy  www/css/styles.css platforms/ios/www/css/styles.css (new file)
  mkdir platforms/ios/www/fonts
  copy  www/fonts/glyphicons-halflings-regular.eot platforms/ios/www/fonts/glyphicons-halflings-regular.eot (new file)
  copy  www/fonts/glyphicons-halflings-regular.svg platforms/ios/www/fonts/glyphicons-halflings-regular.svg (new file)
  copy  www/fonts/glyphicons-halflings-regular.ttf platforms/ios/www/fonts/glyphicons-halflings-regular.ttf (new file)
  copy  www/fonts/glyphicons-halflings-regular.woff platforms/ios/www/fonts/glyphicons-halflings-regular.woff (new file)
  copy  www/fonts/glyphicons-halflings-regular.woff2 platforms/ios/www/fonts/glyphicons-halflings-regular.woff2 (new file)
  copy  www/fonts/ionicons.eot platforms/ios/www/fonts/ionicons.eot (new file)
  copy  www/fonts/ionicons.min.css platforms/ios/www/fonts/ionicons.min.css (new file)
  copy  www/fonts/ionicons.svg platforms/ios/www/fonts/ionicons.svg (new file)
  copy  www/fonts/ionicons.ttf platforms/ios/www/fonts/ionicons.ttf (new file)
  copy  www/fonts/ionicons.woff platforms/ios/www/fonts/ionicons.woff (new file)
  copy  www/fonts/karla-bold.eot platforms/ios/www/fonts/karla-bold.eot (new file)
  copy  www/fonts/karla-bold.svg platforms/ios/www/fonts/karla-bold.svg (new file)
  copy  www/fonts/karla-bold.ttf platforms/ios/www/fonts/karla-bold.ttf (new file)
  copy  www/fonts/karla-bold.woff platforms/ios/www/fonts/karla-bold.woff (new file)
  copy  www/fonts/karla-bold.woff2 platforms/ios/www/fonts/karla-bold.woff2 (new file)
  copy  www/fonts/karla-italic.eot platforms/ios/www/fonts/karla-italic.eot (new file)
  copy  www/fonts/karla-italic.svg platforms/ios/www/fonts/karla-italic.svg (new file)
  copy  www/fonts/karla-italic.ttf platforms/ios/www/fonts/karla-italic.ttf (new file)
  copy  www/fonts/karla-italic.woff platforms/ios/www/fonts/karla-italic.woff (new file)
  copy  www/fonts/karla-italic.woff2 platforms/ios/www/fonts/karla-italic.woff2 (new file)
  copy  www/fonts/karla-regular.eot platforms/ios/www/fonts/karla-regular.eot (new file)
  copy  www/fonts/karla-regular.svg platforms/ios/www/fonts/karla-regular.svg (new file)
  copy  www/fonts/karla-regular.ttf platforms/ios/www/fonts/karla-regular.ttf (new file)
  copy  www/fonts/karla-regular.woff platforms/ios/www/fonts/karla-regular.woff (new file)
  copy  www/fonts/karla-regular.woff2 platforms/ios/www/fonts/karla-regular.woff2 (new file)
  copy  www/fonts/videogular.eot platforms/ios/www/fonts/videogular.eot (new file)
  copy  www/fonts/videogular.svg platforms/ios/www/fonts/videogular.svg (new file)
  copy  www/fonts/videogular.ttf platforms/ios/www/fonts/videogular.ttf (new file)
  copy  www/fonts/videogular.woff platforms/ios/www/fonts/videogular.woff (new file)
  copy  www/img/ionic.png platforms/ios/www/img/ionic.png (new file)
  delete platforms/ios/www/img/logo.png (no source)
  copy  www/index.html platforms/ios/www/index.html (updated file)
  rmdir  platforms/ios/www/js (no source)
  delete platforms/ios/www/js/index.js (no source)
  mkdir platforms/ios/www/scripts
  copy  www/scripts/platformOverrides.js platforms/ios/www/scripts/platformOverrides.js (new file)
  copy  www/scripts/spa.min.js platforms/ios/www/scripts/spa.min.js (new file)
  copy  www/scripts/vendor.min.js platforms/ios/www/scripts/vendor.min.js (new file)
  mkdir platforms/ios/www/templates
  mkdir platforms/ios/www/templates/AboutUs
  copy  www/templates/AboutUs/AboutProfile.html platforms/ios/www/templates/AboutUs/AboutProfile.html (new file)
  mkdir platforms/ios/www/templates/Articles
  copy  www/templates/Articles/Articles.html platforms/ios/www/templates/Articles/Articles.html (new file)
  copy  www/templates/Articles/articleinner.html platforms/ios/www/templates/Articles/articleinner.html (new file)
  mkdir platforms/ios/www/templates/Events
  copy  www/templates/Events/Events.html platforms/ios/www/templates/Events/Events.html (new file)
  copy  www/templates/Events/eventsinner.html platforms/ios/www/templates/Events/eventsinner.html (new file)
  copy  www/templates/Events/eventsmain.html platforms/ios/www/templates/Events/eventsmain.html (new file)
  mkdir platforms/ios/www/templates/FeatureAdvertisementBanners
  copy  www/templates/FeatureAdvertisementBanners/FeatureAdvertisementBanners.html platforms/ios/www/templates/FeatureAdvertisementBanners/FeatureAdvertisementBanners.html (new file)
  mkdir platforms/ios/www/templates/Home
  copy  www/templates/Home/Home.html platforms/ios/www/templates/Home/Home.html (new file)
  copy  www/templates/Home/pre-img.html platforms/ios/www/templates/Home/pre-img.html (new file)
  mkdir platforms/ios/www/templates/Radio
  copy  www/templates/Radio/radio.html platforms/ios/www/templates/Radio/radio.html (new file)
  mkdir platforms/ios/www/templates/Reviews
  copy  www/templates/Reviews/Reviews.html platforms/ios/www/templates/Reviews/Reviews.html (new file)
  copy  www/templates/Reviews/reviewsinner.html platforms/ios/www/templates/Reviews/reviewsinner.html (new file)
  copy  www/templates/root.html platforms/ios/www/templates/root.html (new file)
Current launch storyboard undefined
Not changing launch storyboard setting in info plist.
Wrote out iOS Bundle Identifier "io.radio.kalas" and iOS Bundle Version "1.0.0" to /Users/venkat/.taco_home/remote-builds/taco-remote/builds/11313/cordovaApp/platforms/ios/Kalas3/Kalas3-Info.plist
Need to update build settings because project is using legacy launch images and no storyboard.
Set ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME to LaunchImage because project is using legacy launch images and no storyboard.
iOS Product Name has not changed (still "Kalas3")
Updating icons at platforms/ios/Kalas3/Images.xcassets/AppIcon.appiconset/
  copy  resources/ios/icon/icon-40.png platforms/ios/Kalas3/Images.xcassets/AppIcon.appiconset/icon-40.png (updated file)
  copy  resources/ios/icon/[email protected] platforms/ios/Kalas3/Images.xcassets/AppIcon.appiconset/[email protected] (updated file)
  copy  resources/ios/icon/icon-50.png platforms/ios/Kalas3/Images.xcassets/AppIcon.appiconset/icon-50.png (updated file)
  copy  resources/ios/icon/[email protected] platforms/ios/Kalas3/Images.xcassets/AppIcon.appiconset/[email protected] (updated file)
  copy  resources/ios/icon/[email protected] platforms/ios/Kalas3/Images.xcassets/AppIcon.appiconset/[email protected] (updated file)
  copy  resources/ios/icon/[email protected] platforms/ios/Kalas3/Images.xcassets/AppIcon.appiconset/[email protected] (updated file)
  copy  resources/ios/icon/icon-72.png platforms/ios/Kalas3/Images.xcassets/AppIcon.appiconset/icon-72.png (updated file)
  copy  resources/ios/icon/[email protected] platforms/ios/Kalas3/Images.xcassets/AppIcon.appiconset/[email protected] (updated file)
  copy  resources/ios/icon/icon-76.png platforms/ios/Kalas3/Images.xcassets/AppIcon.appiconset/icon-76.png (updated file)
  copy  resources/ios/icon/[email protected] platforms/ios/Kalas3/Images.xcassets/AppIcon.appiconset/[email protected] (updated file)
  copy  resources/ios/icon/icon-small.png platforms/ios/Kalas3/Images.xcassets/AppIcon.appiconset/icon-small.png (updated file)
  copy  resources/ios/icon/[email protected] platforms/ios/Kalas3/Images.xcassets/AppIcon.appiconset/[email protected] (updated file)
  copy  resources/ios/icon/[email protected] platforms/ios/Kalas3/Images.xcassets/AppIcon.appiconset/[email protected] (updated file)
  copy  resources/ios/icon/icon.png platforms/ios/Kalas3/Images.xcassets/AppIcon.appiconset/icon.png (updated file)
  copy  resources/ios/icon/[email protected] platforms/ios/Kalas3/Images.xcassets/AppIcon.appiconset/[email protected] (updated file)
Updating splash screens at platforms/ios/Kalas3/Images.xcassets/LaunchImage.launchimage/
  copy  resources/ios/splash/Default-568h@2x~iphone.png platforms/ios/Kalas3/Images.xcassets/LaunchImage.launchimage/Default-568h@2x~iphone.png (updated file)
  copy  resources/ios/splash/Default-667h.png platforms/ios/Kalas3/Images.xcassets/LaunchImage.launchimage/Default-667h.png (updated file)
  copy  resources/ios/splash/Default-736h.png platforms/ios/Kalas3/Images.xcassets/LaunchImage.launchimage/Default-736h.png (updated file)
  copy  resources/ios/splash/Default-Landscape-736h.png platforms/ios/Kalas3/Images.xcassets/LaunchImage.launchimage/Default-Landscape-736h.png (updated file)
  copy  resources/ios/splash/Default-Landscape@2x~ipad.png platforms/ios/Kalas3/Images.xcassets/LaunchImage.launchimage/Default-Landscape@2x~ipad.png (updated file)
  copy  resources/ios/splash/Default-Landscape~ipad.png platforms/ios/Kalas3/Images.xcassets/LaunchImage.launchimage/Default-Landscape~ipad.png (updated file)
  copy  resources/ios/splash/Default-Portrait@2x~ipad.png platforms/ios/Kalas3/Images.xcassets/LaunchImage.launchimage/Default-Portrait@2x~ipad.png (updated file)
  copy  resources/ios/splash/Default-Portrait~ipad.png platforms/ios/Kalas3/Images.xcassets/LaunchImage.launchimage/Default-Portrait~ipad.png (updated file)
  copy  resources/ios/splash/Default@2x~iphone.png platforms/ios/Kalas3/Images.xcassets/LaunchImage.launchimage/Default@2x~iphone.png (updated file)
  copy  resources/ios/splash/Default~iphone.png platforms/ios/Kalas3/Images.xcassets/LaunchImage.launchimage/Default~iphone.png (updated file)
Updating launch storyboard images at platforms/ios/Kalas3/Images.xcassets/LaunchStoryboard.imageset/
Updating Storyboard image set contents.json
Failed to build app for buildNumber 11313: cordovaProject.projectConfig.getFileResources is not a function

remotebuild test --device : failing

Trying to get "remotebuild test --device" to work again, it was working fine prior to updating and im not sure which version worked well prior...

Globally Installed:
$ cordova -v 6.4.0 ((( for some reason when running test its building with cordova5.4 which is not globably installed... )))
$ remotebuild -v2.1.2
$ node -v0.12.9
$ npm -v2.14.9


Begin:


$ remotebuild test --device
Warning: No server modules selected. Defaulting to configuration "modules": {"taco-remote": { "mountPath": "cordova"} }
Remote build server listening on [https] port 3000
Please view/edit server configuration at /Users/useruser/.taco_home/RemoteBuild.config. You many need to run 'remotebuild saveconfig' to generate it. You will have to restart the server if you update the server configurations.

Downloading: [email protected]
npm WARN deprecated [email protected]: this package has been reintegrated into npm and is now out of date with respect to npm
npm WARN deprecated [email protected]: use uuid module instead
npm WARN deprecated [email protected]: use uuid module instead
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN engine [email protected]: wanted: {"node":"0.8.x || 0.10.x"} (current: {"node":"0.12.9","npm":"2.14.9"})
npm WARN deprecated [email protected]: This package is discontinued. Use lodash@^4.0.0.
[email protected] node_modules/cordova
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])

[email protected] downloaded and installed.
New build request submitted:
/build/tasks/?vcordova=5.4.0&vcli=1.3.5&cfg=debug&command=build&options=--device
{"host":"users-macbook-pro-2.local:3000","connection":"close","transfer-encoding":"chunked"}

Downloading: taco-remote-multiplexer
[email protected] node_modules/taco-remote-multiplexer
└── [email protected]

taco-remote-multiplexer downloaded and installed.

Downloading: [email protected]
npm WARN deprecated [email protected]: wrench.js is deprecated! You should check out fs-extra (https://github.com/jprichardson/node-fs-extra) for any operations you were using wrench for. Thanks for all the usage over the years.
npm WARN engine [email protected]: wanted: {"node":"0.6"} (current: {"node":"0.12.9","npm":"2.14.9"})
[email protected] node_modules/taco-remote-lib
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected])

[email protected] downloaded and installed.
Build will be executed under: /Users/useruser/.taco_home/remote-builds/taco-remote/builds/36435
Saving build request payload to : /Users/useruser/.taco_home/remote-builds/taco-remote/builds/36435
Saved uploaded build to /Users/useruser/.taco_home/remote-builds/taco-remote/builds/36435/upload_36435.tgz
POST /cordova/build/tasks/?vcordova=5.4.0&vcli=1.3.5&cfg=debug&command=build&options=--device 202 5751.755 ms - 671
Extracted app contents from uploaded build request to /Users/useruser/.taco_home/remote-builds/taco-remote/builds/36435/cordovaApp. Requesting build.
Taking 36435 as current build
Done with current build. Checking for next build in queue.
1...
GET /cordova/build/tasks/36435 200 3.811 ms - 999
Error: taco-remote test failed.
Build Failed: {"vcordova":"5.4.0","vcli":"1.3.5","cfg":"debug","command":"build","options":"--device","status":"Error","buildCommand":"build","buildPlatform":"ios","configuration":"debug","buildDir":"/Users/useruser/.taco_home/remote-builds/taco-remote/builds/36435","buildNumber":36435,"logLevel":0,"submissionTime":"2016-12-20T12:47:26.621Z","changeList":null,"buildSuccessful":false,"messageId":"BuildFailedWithError","messageArgs":["/Users/useruser/.taco_home/remote-builds/taco-remote/builds/36435/cordovaApp/platforms/ios/cordova/build: Command failed with exit code 2"],"message":"Build failed with error /Users/useruser/.taco_home/remote-builds/taco-remote/builds/36435/cordovaApp/platforms/ios/cordova/build: Command failed with exit code 2","tgzFilePath":"/Users/useruser/.taco_home/remote-builds/taco-remote/builds/36435/upload_36435.tgz","appDir":"/Users/useruser/.taco_home/remote-builds/taco-remote/builds/36435/cordovaApp","statusTime":"2016-12-20T12:47:31.530Z","appName":"HelloCordova"}
/usr/local/lib/node_modules/remotebuild/node_modules/taco-utils/node_modules/applicationinsights/AutoCollection/Exceptions.js:25
throw error;
^
Error: Build Failed: {"vcordova":"5.4.0","vcli":"1.3.5","cfg":"debug","command":"build","options":"--device","status":"Error","buildCommand":"build","buildPlatform":"ios","configuration":"debug","buildDir":"/Users/useruser/.taco_home/remote-builds/taco-remote/builds/36435","buildNumber":36435,"logLevel":0,"submissionTime":"2016-12-20T12:47:26.621Z","changeList":null,"buildSuccessful":false,"messageId":"BuildFailedWithError","messageArgs":["/Users/useruser/.taco_home/remote-builds/taco-remote/builds/36435/cordovaApp/platforms/ios/cordova/build: Command failed with exit code 2"],"message":"Build failed with error /Users/useruser/.taco_home/remote-builds/taco-remote/builds/36435/cordovaApp/platforms/ios/cordova/build: Command failed with exit code 2","tgzFilePath":"/Users/useruser/.taco_home/remote-builds/taco-remote/builds/36435/upload_36435.tgz","appDir":"/Users/useruser/.taco_home/remote-builds/taco-remote/builds/36435/cordovaApp","statusTime":"2016-12-20T12:47:31.530Z","appName":"HelloCordova"}
at Request._callback (/usr/local/lib/node_modules/remotebuild/node_modules/taco-remote/lib/selftest.js:104:46)
at Request.self.callback (/usr/local/lib/node_modules/remotebuild/node_modules/taco-remote/node_modules/request/request.js:121:22)
at Request.emit (events.js:110:17)
at Request. (/usr/local/lib/node_modules/remotebuild/node_modules/taco-remote/node_modules/request/request.js:985:14)
at Request.emit (events.js:129:20)
at IncomingMessage. (/usr/local/lib/node_modules/remotebuild/node_modules/taco-remote/node_modules/request/request.js:936:12)
at IncomingMessage.emit (events.js:129:20)
at _stream_readable.js:908:16
at process._tickDomainCallback (node.js:381:11)

Your build may fail if the version installed is 8.0 or greater

Hi, I'm trying to compile my app using Visual Studio 2015 and XCode 8.3.2.

I have this need to use plugins that need XCode 8+

The compilation gives me the error: MSBUILD: cordova-build error: Error: Remote build error from build server Build failed with error Command to fetch XCode version failed. Your build may fail if the version installed is 8.0 or higher. - 1

You can help me?

Timeout connecting to app running on remote iOS 10 device

Greetings.. I'm not sure what is causing the issue I have, but it seems as though remotebuild is responsible for connecting the VS2015 IDE on my main PC (Windows 10) to my build PC (OS X 10.2), I thought I'd start here and see what I find.

In a nutshell: I'm having trouble connecting the "debug" side of the run process when I use any Apple device running iOS 10,. The app builds fine, deploys fine, then launches on the device without a problem, but then VS tells me that it "Timed out launching the app".

The app itself is then running on my target device, but VS2015 can't "see" it to connect the debugging side. If I launch Safari on the Mac, I can inspect the webview inside my hybrid app, but if the app closes or crashes, then the remote debug window gets closed immediately.

At the moment, my app has an issue with only iOS 10 that causes it to close without any error, so I desperately need to see the debug output as this happens.

I've tested the remote debugging from both my current app and from a brand new project, both of which have the exact same behaviour. Using the same apps and computers, I can deploy and debug both apps without any issue on other devices running iOS 8 and 9.


Is this related to the remotebuild process, or something else?

Problems installing taco-remote-multiplexer

Hi, can you please try to give some light on this?
This problem is happening intermittently.
When a build request arrives, I can see this in logs:

`New build request submitted:
/build/tasks?command=build&vcordova=6.2.0&cfg=debug&options=--device&loglevel=warn
{"accept-language":"en-US","host":"","connection":"close","transfer-encoding":"chunked"}

Downloading: taco-remote-multiplexer
^[[0mGET /cordova/build/tasks/17420 ^[[32m200 ^[[0m0.629 ms - 770^[[0m
npm WARN enoent ENOENT: no such file or directory, open '/Users//.taco_home/node_modules/taco-remote-multiplexer/latest/package.json'
npm WARN latest No description
npm WARN latest No repository field.
npm WARN latest No README data
npm WARN latest No license field.

taco-remote-multiplexer downloaded and installed.
Error: ENOENT: no such file or directory, open '/Users//.taco_home/node_modules/taco-remote-multiplexer/latest/node_modules/taco-remote-multiplexer/tacoRemoteMultiplexer.js'`

Indeed the package.json is not there, but the tacoRemoteMultiplexer.js is.

Any ideas on how to fix this?

Can not attach to debug

Hello, I'm trying to run the app through the emulator, but after doing the whole process I get this message:

Requesting emulation in iOS Simulator for buildNumber 899 on server http://....:3000/cordova...
http://....:3000/cordova/build/899/emulate?target=iPhone+5 The remote server returned an error: (404) Not Located.
Requesting debugging on remote iOS device to buildNumber 899 on server http://...:3000/cordova...
Debugging - Successfully Debugging on the device
{WebDebugPort = 9221}
Can not attach to debug. Make sure the http://.....:9221 is accessible.
The application you are trying to debug could not be found. Make sure the device is connected, active, and unlocked. Also, make sure that it is with the Web Inspector enabled.

Cordova IOS debug and runtime issues

Hi, I have been fighting to build and deploy cordova application to IOS platform since last 30 days using visual studio 2017 and macincloud.

I am unable to find any replies to all my postings in stackoverflow, here and in visual studio community as well.

Am I the only person having this problem or everybody have this problem.

There are multiple issues and I am unable to figure out if the problem is

visual studio
cordova
xcode
remotebuild
macincloud

remotebuild debug set up

or what else!!!

Problem details are at the following link.

https://developercommunity.visualstudio.com/content/problem/61875/visual-studio-2017-cordova-ios-debug-on-local-devi.html

any help would be great breakthrough for me.

thx

Build failed with error - 1

Few days ago my cordova proyects compiled perfectly, i'm using a mac with OSX El Capitan vers. 10.11.6 and xcode 8, but my build started to fail showing "Remote build error from the build server Build failed with error - 1", with this on the output:

`

 1>------ Build started: Project: BlankCordovaApp1, Configuration: Debug iOS ------

 1>  ------ Ensuring correct global installation of package from source package directory: C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\Extensions\ApacheCordovaTools\packages\vs-tac

 1>  ------ Name from source package.json: vs-tac

 1>  ------ Version from source package.json: 1.0.42

 1>  ------ Package already installed globally at correct version.

 1>  ------ Cordova tools 6.1.1 already installed.

 1>  ------ Build Settings:

 1>  ------ Build Settings:

 1>  ------    platformConfigurationBldDir: c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\bld\iOS\Debug

 1>  ------    platformConfigurationBinDir: c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\bin\iOS\Debug

 1>  ------    buildCommand: build

 1>  ------    platform: iOS

 1>  ------    cordovaPlatform: ios

 1>  ------    configuration: Debug

 1>  ------    cordovaConfiguration: Debug

 1>  ------    projectName: BlankCordovaApp1

 1>  ------    projectSourceDir: c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1

 1>  ------    npmInstallDir: C:\Users\User\AppData\Roaming\npm

 1>  ------    buildServerUrl: http://UC.Local:3000/cordova

 1>  ------    buildTarget: iOSRemoteDevice

 1>  ------    language: en-US

 1>  ------ Adding platform: ios

 1>MDAVSCLI : warning : Applications for platform ios can not be built on this OS - win32.

 1>  Executing "before_platform_add"  hook for all plugins.

 1>  No version supplied. Retrieving version from config.xml...

 1>  Adding ios project...

 1>  PlatformApi successfully found for platform ios

 1>  iOS project created with [email protected]

 1>  Searching PlatformJson files for differences between project vs. platform installed plugins

 1>  No differences found between project and ios platform. Continuing...

 1>  Generating config.xml from defaults for platform "ios"

 1>  Found "merges" for ios platform. Copying over existing "www" files.

 1>  Wrote out iOS Bundle Identifier to "io.cordova.myappb74af5"

 1>  Wrote out iOS Bundle Version to "1.0.0"

 1>  iOS Product Name has not changed (still "BlankCordovaApp1")

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-60.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon-60.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-60-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-60-3x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-76.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon-76.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-76-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-small.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon-small.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-small-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-40.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon-40.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-40-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-57.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-57-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-72.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon-72.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-72-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-50.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon-50.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-50-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-iphone-portrait.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default~iphone.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-iphone-portrait-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default@2x~iphone.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-ipad-portrait.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-Portrait~ipad.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-ipad-portrait-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-Portrait@2x~ipad.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-ipad-landscape.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-Landscape~ipad.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-ipad-landscape-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-Landscape@2x~ipad.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-iphone-568h-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-568h@2x~iphone.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-iphone-portrait-667h.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-667h.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-iphone-portrait-736h.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-736h.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-iphone-landscape-736h.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-Landscape-736h.png

 1>  updated project successfully

 1>  Executing "before_prepare"  hook for all plugins.

 1>  Executing "before_build"  hook for all plugins.

 1>  Searching PlatformJson files for differences between project vs. platform installed plugins

 1>  No differences found between project and ios platform. Continuing...

 1>  Generating config.xml from defaults for platform "ios"

 1>  Found "merges" for ios platform. Copying over existing "www" files.

 1>  Wrote out iOS Bundle Identifier to "io.cordova.myappb74af5"

 1>  Wrote out iOS Bundle Version to "1.0.0"

 1>  iOS Product Name has not changed (still "BlankCordovaApp1")

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-60.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon-60.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-60-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-60-3x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-76.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon-76.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-76-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-small.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon-small.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-small-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-40.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon-40.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-40-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-57.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-57-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-72.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon-72.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-72-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-50.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon-50.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-50-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-iphone-portrait.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default~iphone.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-iphone-portrait-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default@2x~iphone.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-ipad-portrait.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-Portrait~ipad.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-ipad-portrait-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-Portrait@2x~ipad.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-ipad-landscape.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-Landscape~ipad.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-ipad-landscape-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-Landscape@2x~ipad.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-iphone-568h-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-568h@2x~iphone.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-iphone-portrait-667h.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-667h.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-iphone-portrait-736h.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-736h.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-iphone-landscape-736h.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-Landscape-736h.png

 1>  updated project successfully

 1>  Executing "after_prepare"  hook for all plugins.

 1>  Discovered plugin "cordova-plugin-whitelist" in config.xml. Installing to the project

 1>  Executing "before_plugin_add"  hook for all plugins.

 1>  Calling plugman.fetch on plugin "cordova-plugin-whitelist@1"

 1>  Fetching plugin "cordova-plugin-whitelist@1" via npm

 1>  Copying plugin "C:\Users\User\AppData\Roaming\npm-cache\cordova-plugin-whitelist\1.3.2\package" => "c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\plugins\cordova-plugin-whitelist"

 1>  Calling plugman.install on plugin "c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\plugins\cordova-plugin-whitelist" for platform "ios

 1>  Installing "cordova-plugin-whitelist" for ios

 1>  Running command: cmd "/s /c ""c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\cordova\version.bat"""

 1>  Command finished with error code 0: cmd /s /c ""c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\cordova\version.bat""

 1>  Executing "before_plugin_install"  hook for "cordova-plugin-whitelist" on ios.

 1>  Install start for "cordova-plugin-whitelist" on ios.

 1>  Beginning processing of action stack for ios project...

 1>  Action stack processing complete.

 1>  Install complete for cordova-plugin-whitelist on ios.

 1>  Executing "after_plugin_install"  hook for "cordova-plugin-whitelist" on ios.

 1>  Searching PlatformJson files for differences between project vs. platform installed plugins

 1>  No differences found between project and ios platform. Continuing...

 1>  Generating config.xml from defaults for platform "ios"

 1>  Found "merges" for ios platform. Copying over existing "www" files.

 1>  Wrote out iOS Bundle Identifier to "io.cordova.myappb74af5"

 1>  Wrote out iOS Bundle Version to "1.0.0"

 1>  iOS Product Name has not changed (still "BlankCordovaApp1")

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-60.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon-60.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-60-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-60-3x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-76.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon-76.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-76-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-small.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon-small.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-small-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-40.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon-40.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-40-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-57.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-57-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-72.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon-72.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-72-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-50.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\icon-50.png

 1>  Copying icon from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\icons\ios\icon-50-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\AppIcon.appiconset\[email protected]

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-iphone-portrait.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default~iphone.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-iphone-portrait-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default@2x~iphone.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-ipad-portrait.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-Portrait~ipad.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-ipad-portrait-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-Portrait@2x~ipad.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-ipad-landscape.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-Landscape~ipad.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-ipad-landscape-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-Landscape@2x~ipad.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-iphone-568h-2x.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-568h@2x~iphone.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-iphone-portrait-667h.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-667h.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-iphone-portrait-736h.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-736h.png

 1>  Copying splash from c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\res\screens\ios\screen-iphone-landscape-736h.png to c:\users\User\documents\visual studio 2015\Projects\BlankCordovaApp1\BlankCordovaApp1\platforms\ios\BlankCordovaApp1\Images.xcassets\LaunchImage.launchimage\Default-Landscape-736h.png

 1>  updated project successfully

 1>  Executing "after_plugin_add"  hook for all plugins.

 1>  saving [email protected] into platforms.json

 1>  Executing "after_platform_add"  hook for all plugins.

 1>  ------ Updating plugins

 1>  ------ Currently installed plugins: [email protected]

 1>  ------ Currently installed dependent plugins:

 1>  ------ Currently configured plugins:

 1>  ------ Incremental Build: false

 1>  ------ Submitting new build request to: http://UC.Local:3000/cordova/build/tasks?command=build&vcordova=6.1.1&cfg=debug&options=--device&loglevel=warn

 1>  ------ New Build information: {"command":"build","vcordova":"6.1.1","cfg":"debug","options":"--device","loglevel":"warn","status":"Uploaded","buildCommand":"build","buildPlatform":"ios","configuration":"debug","buildLang":"en-US","buildDir":"/Users/UC/.taco_home/remote-builds/taco-remote/builds/722","buildNumber":722,"logLevel":0,"submissionTime":"2017-05-10T21:08:45.663Z","changeList":null,"buildSuccessful":false,"messageArgs":null,"message":"Uploaded build request payload.","tgzFilePath":"/Users/UC/.taco_home/remote-builds/taco-remote/builds/722/upload_722.tgz","appDir":"/Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp","statusTime":"2017-05-10T21:08:45.853Z"}

 1>  ------ 16:07:45 Checking on build status from http://uc.local:3000/cordova/build/tasks/722 [Attempt 1]

 1>  uploaded - Uploaded build request payload.

 1>  ------ 16:07:50 Checking on build status from http://uc.local:3000/cordova/build/tasks/722 [Attempt 2]

 1>  building - Acquiring Cordova.

 1>  ------ 16:07:55 Checking on build status from http://uc.local:3000/cordova/build/tasks/722 [Attempt 3]

 1>  building - Acquiring Cordova.

 1>  ------ 16:08:00 Checking on build status from http://uc.local:3000/cordova/build/tasks/722 [Attempt 4]

 1>  error - Build failed with error

 1>  ------ Remote build log follows

 1>  Executing "before_plugin_add"  hook for all plugins.

 1>  Calling plugman.fetch on plugin "remote/plugins/cordova-plugin-whitelist"

 1>  Copying plugin "remote/plugins/cordova-plugin-whitelist" => "/Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/plugins/cordova-plugin-whitelist"

 1>  Executing "after_plugin_add"  hook for all plugins.

 1>  Executing "before_plugin_add"  hook for all plugins.

 1>  No version specified, retrieving version from config.xml

 1>  No version given in config.xml, attempting to use plugin engine info

 1>  No plugin engine info found or not using registry, falling back to latest version

 1>  Calling plugman.fetch on plugin "cordova-plugin-vs-taco-support"

 1>  Fetching plugin "cordova-plugin-vs-taco-support" via npm

 1>  Copying plugin "/Users/UC/.npm/cordova-plugin-vs-taco-support/0.2.3/package" => "/Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/plugins/cordova-plugin-vs-taco-support"

 1>  Executing "after_plugin_add"  hook for all plugins.

 1>  cordova platform add ios

 1>  Executing "before_platform_add"  hook for all plugins.

 1>  No version supplied. Retrieving version from config.xml...

 1>  Adding ios project...

 1>  PlatformApi successfully found for platform ios

 1>  iOS project created with [email protected]

 1>  Searching PlatformJson files for differences between project vs. platform installed plugins

 1>  No differences found between project and ios platform. Continuing...

 1>  Generating config.xml from defaults for platform "ios"

 1>  Found "merges" for ios platform. Copying over existing "www" files.

 1>  Wrote out iOS Bundle Identifier to "io.cordova.myappb74af5"

 1>  Wrote out iOS Bundle Version to "1.0.0"

 1>  iOS Product Name has not changed (still "BlankCordovaApp1")

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-60.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/icon-60.png

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-60-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/[email protected]

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-60-3x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/[email protected]

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-76.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/icon-76.png

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-76-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/[email protected]

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-small.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/icon-small.png

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-small-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/[email protected]

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-40.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/icon-40.png

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-40-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/[email protected]

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-57.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/icon.png

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-57-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/[email protected]

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-72.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/icon-72.png

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-72-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/[email protected]

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-50.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/icon-50.png

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-50-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/[email protected]

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-iphone-portrait.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default~iphone.png

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-iphone-portrait-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default@2x~iphone.png

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-ipad-portrait.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default-Portrait~ipad.png

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-ipad-portrait-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default-Portrait@2x~ipad.png

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-ipad-landscape.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default-Landscape~ipad.png

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-ipad-landscape-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default-Landscape@2x~ipad.png

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-iphone-568h-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default-568h@2x~iphone.png

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-iphone-portrait-667h.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default-667h.png

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-iphone-portrait-736h.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default-736h.png

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-iphone-landscape-736h.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default-Landscape-736h.png

 1>  updated project successfully

 1>  Installing plugin "cordova-plugin-vs-taco-support" following successful platform add of ios

 1>  Found variables for "cordova-plugin-vs-taco-support". Processing as cli_variables.

 1>  Installing "cordova-plugin-vs-taco-support" for ios

 1>  Running command: /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/cordova/version

 1>  Command finished with error code 0: /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/cordova/version

 1>  Executing "before_plugin_install"  hook for "cordova-plugin-vs-taco-support" on ios.

 1>  Install start for "cordova-plugin-vs-taco-support" on ios.

 1>  Beginning processing of action stack for ios project...

 1>  Action stack processing complete.

 1>  Install complete for cordova-plugin-vs-taco-support on ios.

 1>  Executing "after_plugin_install"  hook for "cordova-plugin-vs-taco-support" on ios.

 1>  Installing plugin "cordova-plugin-whitelist" following successful platform add of ios

 1>  Found variables for "cordova-plugin-whitelist". Processing as cli_variables.

 1>  Installing "cordova-plugin-whitelist" for ios

 1>  Running command: /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/cordova/version

 1>  Command finished with error code 0: /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/cordova/version

 1>  Executing "before_plugin_install"  hook for "cordova-plugin-whitelist" on ios.

 1>  Install start for "cordova-plugin-whitelist" on ios.

 1>  Beginning processing of action stack for ios project...

 1>  Action stack processing complete.

 1>  Install complete for cordova-plugin-whitelist on ios.

 1>  Executing "after_plugin_install"  hook for "cordova-plugin-whitelist" on ios.

 1>  Executing "before_prepare"  hook for all plugins.

 1>  Resolving module name for q => q

 1>  Processing res/native for ios

 1>  Searching PlatformJson files for differences between project vs. platform installed plugins

 1>  No differences found between project and ios platform. Continuing...

 1>  Generating config.xml from defaults for platform "ios"

 1>  Found "merges" for ios platform. Copying over existing "www" files.

 1>  Wrote out iOS Bundle Identifier to "io.cordova.myappb74af5"

 1>  Wrote out iOS Bundle Version to "1.0.0"

 1>  iOS Product Name has not changed (still "BlankCordovaApp1")

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-60.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/icon-60.png

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-60-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/[email protected]

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-60-3x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/[email protected]

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-76.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/icon-76.png

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-76-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/[email protected]

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-small.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/icon-small.png

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-small-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/[email protected]

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-40.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/icon-40.png

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-40-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/[email protected]

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-57.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/icon.png

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-57-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/[email protected]

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-72.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/icon-72.png

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-72-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/[email protected]

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-50.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/icon-50.png

 1>  Copying icon from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/icons/ios/icon-50-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/AppIcon.appiconset/[email protected]

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-iphone-portrait.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default~iphone.png

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-iphone-portrait-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default@2x~iphone.png

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-ipad-portrait.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default-Portrait~ipad.png

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-ipad-portrait-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default-Portrait@2x~ipad.png

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-ipad-landscape.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default-Landscape~ipad.png

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-ipad-landscape-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default-Landscape@2x~ipad.png

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-iphone-568h-2x.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default-568h@2x~iphone.png

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-iphone-portrait-667h.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default-667h.png

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-iphone-portrait-736h.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default-736h.png

 1>  Copying splash from /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/res/screens/ios/screen-iphone-landscape-736h.png to /Users/UC/.taco_home/remote-builds/taco-remote/builds/722/cordovaApp/platforms/ios/BlankCordovaApp1/Images.xcassets/LaunchImage.launchimage/Default-Landscape-736h.png

 1>  updated project successfully

 1>  Executing "after_prepare"  hook for all plugins.

 1>  saving [email protected] into platforms.json

 1>  Executing "after_platform_add"  hook for all plugins.

 1>  Failed to build app for buildNumber 722:

 1>MSBUILD : cordova-build error : Error: Remote build error from the build server Build failed with error - 1

 1>  Error Remote build error from the build server Build failed with error  - {1}

========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

`

Does this with any cordova proyect i try to compile, this output is from a clean blank cordova app, i've been trying to look for the error but it doesn't seem to exist, does this has something to do with xcode?, i'm stuck with this error, thanks in advance.

And updates?

For remote build:
Current Mac OS: Sierra
Current XCode: 8.2.1

It works fine when I have a new project but when I imported one to my Visual Studio 2015 on Windows 10, it doesn't work.

Remotebuild requiring cordova-ios 4.3.0

I'm having trouble getting my Mac to build my cordova project since XCode updated to version 8.3. I'm using version 6.1.1 of the cordova CLI. Versions higher than this have historically given me different errors.

Here is a copy of the build.log.txt. This is the error that is reported back in VS2015 "Error: Remote build error from the build server Build failed with error Remotebuild requires your projects to use cordova-ios 4.3.0 or greater with XCode 8.3. Please update your cordova-ios version. - 1"

I have followed the advice from issue #26 and cleared out the ~/.taco_home/node_modules folder but the issue still persists.

Any ideas on how to get round this issue?

RemoteBuild fails with error message no such file or directory

Hi There,

I am using RemoteBuild to build our Cordova project on a remote Mac machine. Our builds are failing with this error message:

MSBUILD:MSBUILD(0,0): Error : Error: Error: ENOENT: no such file or directory, unlink '/Users//.taco_home/node_modules/taco-remote-multiplexer/latest/node_modules/Installing.tmp'

Can anyone shed some light on how I can fix this issue? Thanks.

Error 404 deploying to ios device after xcode upgraded to 8.3.2

As I have described in my comments to issue #26 I can not deploy to Remote device from Visual Studio 2015. I am able to build after the latest changes to remotebuild but not deploy.

My current setup:
PC: VS2015, Cordova 6.4.0, ios 4.3.1
Mac: macOS 10.12.4, xcode 8.3.2 and cordova 6.4.0 globally installed.

This is the message after debug build to Remote device:

image

I believe I have tried everything that is suggested around this kind of issue.

Build failed with error Error code 65 for command: xcodebuild with args

Severity Code Description Project File Line Suppression State
Error Remote build error from the build server http://192.168.0.10:3000/cordova - Build failed with error Error code 65 for command: xcodebuild with args: -xcconfig,/Users/joy/.taco_home/remote-builds/taco-remote/builds/12743/cordovaApp/platforms/ios/cordova/build-release.xcconfig,-workspace,cartoon.xcworkspace,-scheme,cartoon,-configuration,Release,-destination,generic/platform=iOS,-archivePath,cartoon.xcarchive,archive,CONFIGURATION_BUILD_DIR=/Users/joy/.taco_home/remote-builds/taco-remote/builds/12743/cordovaApp/platforms/ios/build/device,SHARED_PRECOMPS_DIR=/Users/joy/.taco_home/remote-builds/taco-remote/builds/12743/cordovaApp/platforms/ios/build/sharedpch SeriesHA2017 1

capture55

building iOS no longer working after updating XCode from 8.2 to 8.3

When running remotebuild (version 2.1.3) on a Mac with XCode 8.2, a deprecation warning was shown:

PackageApplication is deprecated, use xcodebuild -exportArchive instead.

After updating to XCode 8.3 it seems this feature was removed altogether, because now the log shows:

xcrun: error: unable to find utility "PackageApplication", not a developer tool or in PATH

It looks like remotebuild needs to be updated to use xcodebuild instead of xcrun.

remote build self test failing remotebuild test --device

remotebuild test --device
Warning: No server modules selected. Defaulting to configuration "modules": {"taco-remote": { "mountPath": "cordova"} }
Remote build server listening on [http] port 3000
Please view/edit server configuration at /Users/jeringeorge/.taco_home/RemoteBuild.config. You many need to run 'remotebuild saveconfig' to generate it. You will have to restart the server if you update the server configurations.
New build request submitted:
/build/tasks/?vcordova=5.4.0&vcli=1.3.5&cfg=debug&command=build&options=--device
{"host":"jerins-imac:3000","connection":"close","transfer-encoding":"chunked"}

Downloading: taco-remote-multiplexer
npm WARN enoent ENOENT: no such file or directory, open '/Users/jeringeorge/.taco_home/node_modules/taco-remote-multiplexer/latest/package.json'
npm WARN latest No description
npm WARN latest No repository field.
npm WARN latest No README data
npm WARN latest No license field.

taco-remote-multiplexer downloaded and installed.
Error: Cannot find module '/Users/jeringeorge/.taco_home/node_modules/taco-remote-multiplexer/latest/node_modules/taco-remote-multiplexer'
Build will be executed under: /Users/jeringeorge/.taco_home/remote-builds/taco-remote/builds/13154
Saving build request payload to : /Users/jeringeorge/.taco_home/remote-builds/taco-remote/builds/13154
Saved uploaded build to /Users/jeringeorge/.taco_home/remote-builds/taco-remote/builds/13154/upload_13154.tgz
POST /cordova/build/tasks/?vcordova=5.4.0&vcli=1.3.5&cfg=debug&command=build&options=--device 202 1273.951 ms - 674
Extracted app contents from uploaded build request to /Users/jeringeorge/.taco_home/remote-builds/taco-remote/builds/13154/cordovaApp. Requesting build.
Taking 13154 as current build
Done with current build. Checking for next build in queue.
1...
GET /cordova/build/tasks/13154 200 3.688 ms - 1100
Error: taco-remote test failed.
Build Failed: {"vcordova":"5.4.0","vcli":"1.3.5","cfg":"debug","command":"build","options":"--device","status":"Error","buildCommand":"build","buildPlatform":"ios","configuration":"debug","buildDir":"/Users/jeringeorge/.taco_home/remote-builds/taco-remote/builds/13154","buildNumber":13154,"logLevel":0,"submissionTime":"2017-10-08T19:47:14.414Z","changeList":null,"buildSuccessful":false,"messageId":"BuildFailedWithError","messageArgs":["Warning: Could not find development team. Starting with XCode 8, you must provide a build.json with a development team. See https://go.microsoft.com/fwlink/?linkid=833112 for more details."],"message":"Build failed with error Warning: Could not find development team. Starting with XCode 8, you must provide a build.json with a development team. See https://go.microsoft.com/fwlink/?linkid=833112 for more details.","tgzFilePath":"/Users/jeringeorge/.taco_home/remote-builds/taco-remote/builds/13154/upload_13154.tgz","appDir":"/Users/jeringeorge/.taco_home/remote-builds/taco-remote/builds/13154/cordovaApp","statusTime":"2017-10-08T19:47:17.588Z","appName":"HelloCordova"}
/usr/local/lib/node_modules/remotebuild/node_modules/applicationinsights/AutoCollection/Exceptions.js:25
throw error;
^

Error: Build Failed: {"vcordova":"5.4.0","vcli":"1.3.5","cfg":"debug","command":"build","options":"--device","status":"Error","buildCommand":"build","buildPlatform":"ios","configuration":"debug","buildDir":"/Users/jeringeorge/.taco_home/remote-builds/taco-remote/builds/13154","buildNumber":13154,"logLevel":0,"submissionTime":"2017-10-08T19:47:14.414Z","changeList":null,"buildSuccessful":false,"messageId":"BuildFailedWithError","messageArgs":["Warning: Could not find development team. Starting with XCode 8, you must provide a build.json with a development team. See https://go.microsoft.com/fwlink/?linkid=833112 for more details."],"message":"Build failed with error Warning: Could not find development team. Starting with XCode 8, you must provide a build.json with a development team. See https://go.microsoft.com/fwlink/?linkid=833112 for more details.","tgzFilePath":"/Users/jeringeorge/.taco_home/remote-builds/taco-remote/builds/13154/upload_13154.tgz","appDir":"/Users/jeringeorge/.taco_home/remote-builds/taco-remote/builds/13154/cordovaApp","statusTime":"2017-10-08T19:47:17.588Z","appName":"HelloCordova"}
at Request._callback (/usr/local/lib/node_modules/remotebuild/node_modules/taco-remote/lib/selftest.js:104:46)
at Request.self.callback (/usr/local/lib/node_modules/remotebuild/node_modules/request/request.js:121:22)
at emitTwo (events.js:106:13)
at Request.emit (events.js:191:7)
at Request. (/usr/local/lib/node_modules/remotebuild/node_modules/request/request.js:985:14)
at emitOne (events.js:101:20)
at Request.emit (events.js:188:7)
at IncomingMessage. (/usr/local/lib/node_modules/remotebuild/node_modules/request/request.js:936:12)
at emitNone (events.js:91:20)
at IncomingMessage.emit (events.js:185:7)

Error deploying to local iOS device

I'm getting a "Cannot find the app installed on the device. Check that the device is connected, awake, and unlocked" error when I try to debug my VS TACO app on an iPod attached to my Windows machine. Here is the relevant info from the build log:

2>------ Deploy started: Project: IntroToCordova2, Configuration: Debug iOS ------
2>Found iTunes version: 12.5.1.21
2>Uninstalling app ID: io.cordova.introforpluralsight.
2>Successfully installed .ipa file: E:\Projects\Pluralsight\IntroToCordova2\IntroToCordova2\bin\iOS\Debug\IntroToCordova2.ipa.
2>Starting idevicedebugserverproxy.exe at port 3000.
2>Cannot find the app installed on the device. Check that the device is connected, awake, and unlocked.
2>Deployment failed.

It claims it successfully installed, but I see no indication that it actually did.

I've tried several different possible solutions online, and none have worked. Any help?

Build failed with error Warning: Could not find development team.

Having issues with my build.json not working. Not sure if this is an issue of remote build but its giving me this issue. Im using Visual Studio 2017, Cordova 7.1.0, ios platform 4.5.2

1>MSBUILD : cordova-build error : Remote build error from the build server http://25.110.24.226:3000/cordova - Build failed with error Warning: Could not find development team. Starting with XCode 8, you must provide a build.json with a development team. See https://go.microsoft.com/fwlink/?linkid=833112 for more details.

Here is my build.json code.

{
"android": {
"release": {
"keystore": "",
"storePassword": "",
"alias": "",
"password": "",
"keystoreType": ""
}
},

"ios": {
"debug": {
"codeSignIdentity": "iPhone Developer",
"developmentTeam": "253T5B4P9B",
"packageType": "development",
"provisioningProfile": "1334738f-4466-4fb9-b485-87615af06c74"
//"buildFlag": [
// "EMBEDDED_CONTENT_CONTAINS_SWIFT = YES",
// "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO",
// "LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks""
//]
},

"release": {
  "developmentTeam": "253T5B4P9B",
  "codeSignIdentity": "iPhone Developer",
  "packageType": "app-store",
  "provisioningProfile": "1334738f-4466-4fb9-b485-87615af06c74"
}

}
}

Local Deploy install silently fails

I am having trouble with local debugging. I am trying to debug to a device running 10.2 attached to a windows computer with VS 2015.

If the app is already installed on the device, it is successfully uninstalled. It says it is successfully installed, but that is not true. I am building using cordova 6.4 and ios 4.3 with automatic provisioning. The device has been added to the Apple developer portal under devices.

Any ideas why the app cannot be installed?

1> ------ Copying back to project: iOS
2>------ Deploy started: Project: Palit, Configuration: Debug iOS ------
2>Found iTunes version: 12.5.4.42
2>Uninstalling app ID: com.latesnacker.tipt.
2>Successfully installed .ipa file: C:\Users\morga\OneDrive\Apps\Palit-App\Tipt\bin\iOS\Debug\Palit.ipa.
2>Starting idevicedebugserverproxy.exe at port 3000.
2>Cannot find the app installed on the device. Check that the device is connected, awake, and unlocked.
2>Deployment failed.
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
========== Deploy: 0 succeeded, 1 failed, 0 skipped ==========

unable to deploy or debug in the iOS device or simulator

After following this thread #26 , i'm able to build the project and can able to generate the .ipa file using LocalDevice , but i'm unable to debug or Deploy directly to simulator or device

When i tried to debug using iOS Simulator i got the following error in Visual studio

----- Copying back to project: iOS
2>------ Deploy started: Project: TCM_Mobile, Configuration: Debug iOS ------
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
========== Deploy: 1 succeeded, 0 failed, 0 skipped ==========

But here is the Debug error

Timed out connecting debugger to remote Apache Cordova app. See Output window for JavaScript console output.
------ Cordova tools 6.5.0 already installed.
C:\Users\venkat\AppData\Roaming\npm\node_modules\vs-tac\node_modules\q\q.js:126
                    throw e;
                          ^
Error: The edge module has not been pre-compiled for node.js version v0.12.9. You must build a custom version of edge.node. Please refer to https://github.com/tjanczuk/edge for building instructions.
    at determineVersion (C:\Users\venkat\AppData\Roaming\npm\node_modules\vs-tac\node_modules\edge\lib\edge.js:20:11)
    at Object.<anonymous> (C:\Users\venkat\AppData\Roaming\npm\node_modules\vs-tac\node_modules\edge\lib\edge.js:32:102)
    at Module._compile (module.js:460:26)
    at Object.Module._extensions..js (module.js:478:10)
    at Module.load (module.js:355:32)
    at Function.Module._load (module.js:310:12)
    at Module.require (module.js:365:17)
    at require (module.js:384:17)
    at Object.<anonymous> (C:\Users\venkat\AppData\Roaming\npm\node_modules\vs-tac\lib\remoteBuild.js:19:12)
    at Module._compile (module.js:460:26)
------ Cordova tools 6.5.0 already installed.
C:\Users\venkat\AppData\Roaming\npm\node_modules\vs-tac\node_modules\q\q.js:126
                    throw e;
                          ^
Error: The edge module has not been pre-compiled for node.js version v0.12.9. You must build a custom version of edge.node. Please refer to https://github.com/tjanczuk/edge for building instructions.
    at determineVersion (C:\Users\venkat\AppData\Roaming\npm\node_modules\vs-tac\node_modules\edge\lib\edge.js:20:11)
    at Object.<anonymous> (C:\Users\venkat\AppData\Roaming\npm\node_modules\vs-tac\node_modules\edge\lib\edge.js:32:102)
    at Module._compile (module.js:460:26)
    at Object.Module._extensions..js (module.js:478:10)
    at Module.load (module.js:355:32)
    at Function.Module._load (module.js:310:12)
    at Module.require (module.js:365:17)
    at require (module.js:384:17)
    at Object.<anonymous> (C:\Users\venkat\AppData\Roaming\npm\node_modules\vs-tac\lib\remoteBuild.js:19:12)
    at Module._compile (module.js:460:26)

remotebuild test fails

simply running remotebuild test fails with the following
screen shot 2017-01-06 at 2 55 55 pm

I have tried deleting the remotebuild.config file and regenerating it and still same problem, here is the content of of remotebuild.config

{ "serverDir": "/Users/kovanabdulla/.taco_home/remote-builds", "port": 3000, "secure": true, "pinTimeout": 10, "hostname": "Kovans-MacBook-Air.local", "writePidToFile": false, "lang": "en-CA", "suppressSetupMessage": false, "type": "literal", "modules": { "taco-remote": { "mountPath": "cordova", "maxBuildsInQueue": 10, "maxBuildsToKeep": 20, "deleteBuildsOnShutdown": true, "allowsEmulate": true, "appLaunchStepTimeout": 10000, "emulatorLaunchTimeout": 20000, "nativeDebugProxyPort": 3001, "webDebugProxyDevicePort": 9221, "webDebugProxyRangeMin": 9222, "webDebugProxyRangeMax": 9322 } } }

running my project from VS connected to the Mac works fine in simulator but when I deploy to "local device" I get other errors, but my first step is to get the remotebuild test to actually work then I can go to the next step

I didnt upgrade to xcode 8 but installed 8 to begin with and I added the correct items to the build.json, here is my build.json
`{ "android": {
"release": {
"keystore": "",
"storePassword": "",
"alias": "",
"password": "",
"keystoreType": ""
}
},
"ios": {
"debug": {
"developmentTeam": "...."
},

"release": {
  "developmentTeam": "....",
  "codeSignIdentity": "iPhone Developer",
  "packageType": "ad-hoc"
}

}
}`

Also here is the error i get when i try to deploy to "local device"
----- New Build information: {"command":"build","vcordova":"6.3.1","cfg":"debug","options":"--device","status":"Error","buildCommand":"build","buildPlatform":"ios","configuration":"debug","buildDir":"/Users/kovanabdulla/.taco_home/remote-builds/taco-remote/builds/1347","buildNumber":1347,"logLevel":0,"submissionTime":"2017-01-06T20:38:11.122Z","changeList":{"deletedFiles":[]},"buildSuccessful":false,"messageId":"BuildFailedWithError","messageArgs":["Error code 65 for command: xcodebuild with args: -xcconfig,/Users/kovanabdulla/.taco_home/remote-builds/taco-remote/builds/1347/cordovaApp/platforms/ios/cordova/build-debug.xcconfig,-project,TacoTest1.xcodeproj,-target,TacoTest1,-configuration,Debug,-destination,platform=iOS,build,CONFIGURATION_BUILD_DIR=/Users/kovanabdulla/.taco_home/remote-builds/taco-remote/builds/1347/cordovaApp/platforms/ios/build/device,SHARED_PRECOMPS_DIR=/Users/kovanabdulla/.taco_home/remote-builds/taco-remote/builds/1347/cordovaApp/platforms/ios/build/sharedpch"],"message":"Build failed with error Error code 65 for command: xcodebuild with args: -xcconfig,/Users/kovanabdulla/.taco_home/remote-builds/taco-remote/builds/1347/cordovaApp/platforms/ios/cordova/build-debug.xcconfig,-project,TacoTest1.xcodeproj,-target,TacoTest1,-configuration,Debug,-destination,platform=iOS,build,CONFIGURATION_BUILD_DIR=/Users/kovanabdulla/.taco_home/remote-builds/taco-remote/builds/1347/cordovaApp/platforms/ios/build/device,SHARED_PRECOMPS_DIR=/Users/kovanabdulla/.taco_home/remote-builds/taco-remote/builds/1347/cordovaApp/platforms/ios/build/sharedpch","tgzFilePath":"/Users/kovanabdulla/.taco_home/remote-builds/taco-remote/builds/1347/upload_1347.tgz","appDir":"/Users/kovanabdulla/.taco_home/remote-builds/taco-remote/builds/1347/cordovaApp","statusTime":"2017-01-06T20:38:24.541Z","appName":"TacoTest1"} Error - Build failed with error Error code 65 for command: xcodebuild with args: -xcconfig,/Users/kovanabdulla/.taco_home/remote-builds/taco-remote/builds/1347/cordovaApp/platforms/ios/cordova/build-debug.xcconfig,-project,TacoTest1.xcodeproj,-target,TacoTest1,-configuration,Debug,-destination,platform=iOS,build,CONFIGURATION_BUILD_DIR=/Users/kovanabdulla/.taco_home/remote-builds/taco-remote/builds/1347/cordovaApp/platforms/ios/build/device,SHARED_PRECOMPS_DIR=/Users/kovanabdulla/.taco_home/remote-builds/taco-remote/builds/1347/cordovaApp/platforms/ios/build/sharedpch 1>MSBUILD : cordova-build error : Remote build error from the build server http://192.168.0.19:3000/cordova - Build failed with error Error code 65 for command: xcodebuild with args: -xcconfig,/Users/kovanabdulla/.taco_home/remote-builds/taco-remote/builds/1347/cordovaApp/platforms/ios/cordova/build-debug.xcconfig,-project,TacoTest1.xcodeproj,-target,TacoTest1,-configuration,Debug,-destination,platform=iOS,build,CONFIGURATION_BUILD_DIR=/Users/kovanabdulla/.taco_home/remote-builds/taco-remote/builds/1347/cordovaApp/platforms/ios/build/device,SHARED_PRECOMPS_DIR=/Users/kovanabdulla/.taco_home/remote-builds/taco-remote/builds/1347/cordovaApp/platforms/ios/build/sharedpch ------ Remote build log follows

IOS Icons

Hello, when compiling the app for android the icons appear correctly, however when compiling for IOS does not appear the custom icons, it comes with the standard icons of the cordova.
Anyone know how to solve this?

Error with xcode 8.3

using cordova-ios 4.3.0 and xcode 8.3 is no longer possible to compile:

1> “Swift Language Version” (SWIFT_VERSION) is required to be configured correctly for targets which use Swift. Use the [Edit > Convert > To Current Swift Syntax…] menu to choose a Swift version or use the Build Settings editor to configure the build setting directly.
1> “Swift Language Version” (SWIFT_VERSION) is required to be configured correctly for targets which use Swift. Use the [Edit > Convert > To Current Swift Syntax…] menu to choose a Swift version or use the Build Settings editor to configure the build setting directly.
1>
1> ** ARCHIVE FAILED **

Error running remotebuild

After updating my Mac I am running into an error when trying to run remote build from terminal. Here is the output:

remotebuild --secure false
/usr/local/lib/node_modules/remotebuild/node_modules/taco-utils/node_modules/applicationinsights/AutoCollection/Exceptions.js:25
throw error;
^

Error: Error parsing your JSON configuration file: [/Users/developer/.taco_home/RemoteBuild.config].
at File.loadSync (/usr/local/lib/node_modules/remotebuild/node_modules/nconf/lib/nconf/stores/file.js:141:13)
at Provider.add (/usr/local/lib/node_modules/remotebuild/node_modules/nconf/lib/nconf/provider.js:135:23)
at Provider.file (/usr/local/lib/node_modules/remotebuild/node_modules/nconf/lib/nconf/provider.js:61:15)
at Function.CliHelper.parseRemoteBuildConf (/usr/local/lib/node_modules/remotebuild/lib/cli.js:65:15)
at /usr/local/lib/node_modules/remotebuild/lib/cli.js:36:41
at _fulfilled (/usr/local/lib/node_modules/remotebuild/node_modules/q/q.js:787:54)
at self.promiseDispatch.done (/usr/local/lib/node_modules/remotebuild/node_modules/q/q.js:816:30)
at Promise.promise.promiseDispatch (/usr/local/lib/node_modules/remotebuild/node_modules/taco-utils/node_modules/q/q.js:796:13)
at /usr/local/lib/node_modules/remotebuild/node_modules/taco-utils/node_modules/q/q.js:556:49
at runSingle (/usr/local/lib/node_modules/remotebuild/node_modules/taco-utils/node_modules/q/q.js:137:13)

I have tried uninstalling remotebuild and reinstalling it with no success. Any idea on how to fix this?

Increase the 90sec timeout when uploading the ios build to remotebuild on Mac from VS2017

I'm getting a timeout when uploading the build to the Mac from VS2017 after 90 seconds:

1>MSBUILD : cordova-build error : An error occurred uploading to the build server https://XXX:3000/cordova/build/tasks?command=build&vcordova=7.0.0&cfg=debug&options=--device: Timeout für Vorgang überschritten

The cordova platform ios folder has a size of ~80MB and cannot be uploaded in time through my 10MBit/s internet connection.
Could you please increase the upload timeout?

Thank you and kind regards, Anton

image

Build to Remote Device fails with error code 14 "No applicable devices found"

Hi, I'm having trouble getting remoteBuild to work when deploying to a remote device. When trying to build to a device connected to my mac I get an error giving Error Code 70. Drilling down in the error message gives Error Domain=IDEDistributionErrorDomain Code=14 "No applicable devices found." UserInfo={NSLocalizedDescription=No applicable devices found.}

Below is the tail of the build.log generated by remoteBuild

Touch build/device/Toco\ Connect.app.dSYM
cd /Users/jack/.taco_home/remote-builds/taco-remote/builds/34198/cordovaApp/platforms/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/jack/.taco_home/node_modules/taco-remote-lib/2.2.1/node_modules/ios-sim/bin:/Users/jack/.rvm/gems/ruby-2.2.3/bin:/Users/jack/.rvm/gems/ruby-2.2.3@global/bin:/Users/jack/.rvm/rubies/ruby-2.2.3/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Library/TeX/texbin:/Users/jack/.rvm/bin:/Users/jack/bin:/Users/jack/.rvm/bin:/Users/jack/.rvm/bin:/Users/jack/Library/Android/sdk/tools"
/usr/bin/touch -c /Users/jack/.taco_home/remote-builds/taco-remote/builds/34198/cordovaApp/platforms/ios/build/device/Toco\ Connect.app.dSYM

** ARCHIVE SUCCEEDED **

Non-system Ruby in use. This may cause packaging to fail.
If you use RVM, please run rvm use system.
If you use chruby, please run chruby system.
2016-12-06 14:22:45.193 xcodebuild[77107:447088] [MT] IDEDistribution: -[IDEDistributionLogging _createLoggingBundleAtPath:]: Created bundle at path '/var/folders/sb/775jkvp13lnfgrn_vz425xqw0000gn/T/Toco Connect_2016-12-06_14-22-45.191.xcdistributionlogs'.
1.2.840.113635.100.1.61
2016-12-06 14:22:48.145 xcodebuild[77107:447088] [MT] IDEDistribution: Step failed: <IDEDistributionThinningStep: 0x7fa0861f09c0>: Error Domain=IDEDistributionErrorDomain Code=14 "No applicable devices found." UserInfo={NSLocalizedDescription=No applicable devices found.}
error: exportArchive: No applicable devices found.

Error Domain=IDEDistributionErrorDomain Code=14 "No applicable devices found." UserInfo={NSLocalizedDescription=No applicable devices found.}

** EXPORT FAILED **

Failed to build app for buildNumber 34198: Error code 70 for command: xcodebuild with args: -exportArchive,-archivePath,Toco Connect.xcarchive,-exportOptionsPlist,/Users/jack/.taco_home/remote-builds/taco-remote/builds/34198/cordovaApp/platforms/ios/exportOptions.plist,-exportPath,/Users/jack/.taco_home/remote-builds/taco-remote/builds/34198/cordovaApp/platforms/ios/build/device

I looked at the logs, navigated to the directory where remoteBuild had created the .xcarchive, ran the command manually and it appeared to work. The following is the output from running the xcodebuild command manually with the arguments used by remote build

RAN THIS COMMAND MANUALLY
xcodebuild -exportArchive -archivePath Toco\ Connect.xcarchive -exportOptionsPlist /Users/jack/.taco_home/remote-builds/taco-remote/builds/34198/cordovaApp/platforms/ios/exportOptions.plist -exportPath /Users/jack/.taco_home/remote-builds/taco-remote/builds/34198/cordovaApp/platforms/ios/build/device

Got this response
2016-12-06 14:56:45.657 xcodebuild[84648:499343] [MT] IDEDistribution: -[IDEDistributionLogging _createLoggingBundleAtPath:]: Created bundle at path '/var/folders/sb/775jkvp13lnfgrn_vz425xqw0000gn/T/Toco Connect_2016-12-06_14-56-45.656.xcdistributionlogs'.
1.2.840.113635.100.1.61
Exported Toco Connect.xcarchive to: /Users/jack/.taco_home/remote-builds/taco-remote/builds/34198/cordovaApp/platforms/ios/build/device
** EXPORT SUCCEEDED **

This command generated an .ipa in the ios/build/device directory.

I've confirmed that i'm able to deploy to the device using the provisioning profile selected when I use Xcode, but can't seem to get it working with xcodebuild. I'm hoping someone can point me in the right direction, please let me know if you need any further debug info.

Adding a CocoaPod in cordova-ios 4.3.0 makes build fail

There's a new function in Cordova iOS where you can add CocoaPods from the config.xml file. This is fine and all, but the build fails on an unrelated note.

Adding a CocoaPod triggers an event.emit('verbose', message) call which ultimately leads to logFormatHelper.ts to choose a format for the 'verbose' style. The problem is, there's no 'verbose' style, so the build fails with the error:

TypeError colors[style] is not a function

The solution, of course, is to add the corresponding style.

7.0.1 is an invalid cordova version

What I'm trying to do:

Use remotebuild to build my Cordova app remotely from taco-cli on my Windows machine.

What I've done:

(On Mac)

sudo npm install [email protected] [email protected] remotebuild -g
remotebuild start

(On Windows)

cd projectfolder
npm install [email protected] [email protected] taco-cli -g
taco build ios

What happens:

Upon running taco build ios on my Windows machine, it sends all the data to my Mac, begins to build and then fails with this build.log:

/Users/admin/.taco_home/node_modules/taco-remote-lib/2.3.2/node_modules/taco-utils/tacoPackageLoader.js:274
                    throw errorHelper.get(TacoErrorCodes.PackageLoaderInvalidPackageVersionSpecifier, packageId.split("@")[1], packageName);
                    ^
PackageLoaderInvalidPackageVersionSpecifier: Error: 7.0.1
 is an invalid cordova version
Process exited with code 1

run 404 and Breakpoint is not valid

iOS 10.1
Now deploy is correct,run 404 and debug 200.
Run on remote iOS device results in this error:
DeviceLaunchTimeout
Report by taco-remote-lib --> ios.js function runOnDevice
In idevice-app-launcher --> runApp.js function startAppViaDebugger,the third socket message "$c#63" get answer one character "+". the first message and the seconde message get answer "$OK#9a".
debug is started and Breakpoint is not valid

Could not find development team. Starting with XCode 8, you must provide a build.json with a development team.

A new App ID was added from the Apple Developer and started issuing the following error:

NY:~ user13$ remotebuild test
Remote build server listening on [http] port 3000
Please view/edit server configuration at /Users/user1/.taco_home/RemoteBuild.config. You many need to run 'remotebuild saveconfig' to generate it. You will have to restart the server if you update the server configurations.
New build request submitted:
/build/tasks/?vcordova=5.4.0&vcli=1.3.5&cfg=debug&command=build&options=--emulator
{"host":"host.local:3000","connection":"close","transfer-encoding":"chunked"}

Downloading: taco-remote-multiplexer
npm WARN enoent ENOENT: no such file or directory, open '/Users/user132698/.taco_home/node_modules/taco-remote-multiplexer/latest/package.json'
npm WARN latest No description
npm WARN latest No repository field.
npm WARN latest No README data
npm WARN latest No license field.

taco-remote-multiplexer downloaded and installed.
Error: Cannot find module '/Users/user13/.taco_home/node_modules/taco-remote-multiplexer/latest/node_modules/taco-remote-multiplexer'
Build will be executed under: /Users/user13/.taco_home/remote-builds/taco-remote/builds/1858
Saving build request payload to : /Users/user13/.taco_home/remote-builds/taco-remote/builds/1858
Saved uploaded build to /Users/user13/.taco_home/remote-builds/taco-remote/builds/1858/upload_1858.tgz
POST /cordova/build/tasks/?vcordova=5.4.0&vcli=1.3.5&cfg=debug&command=build&options=--emulator 202 1353.766 ms - 668
Extracted app contents from uploaded build request to /Users/user13/.taco_home/remote-builds/taco-remote/builds/1858/cordovaApp. Requesting build.
Taking 1858 as current build
Done with current build. Checking for next build in queue.
1...
GET /cordova/build/tasks/1858 200 5.654 ms - 1094
Error: taco-remote test failed.
Build Failed: {"vcordova":"5.4.0","vcli":"1.3.5","cfg":"debug","command":"build","options":"--emulator","status":"Error","buildCommand":"build","buildPlatform":"ios","configuration":"debug","buildDir":"/Users/user132698/.taco_home/remote-builds/taco-remote/builds/1858","buildNumber":1858,"logLevel":0,"submissionTime":"2017-11-16T18:42:50.611Z","changeList":null,"buildSuccessful":false,"messageId":"BuildFailedWithError","messageArgs":["Warning: Could not find development team. Starting with XCode 8, you must provide a build.json with a development team. See https://go.microsoft.com/fwlink/?linkid=833112 for more details."],"message":"Build failed with error Warning: Could not find development team. Starting with XCode 8, you must provide a build.json with a development team. See https://go.microsoft.com/fwlink/?linkid=833112 for more details.","tgzFilePath":"/Users/user13/.taco_home/remote-builds/taco-remote/builds/1858/upload_1858.tgz","appDir":"/Users/user13/.taco_home/remote-builds/taco-remote/builds/1858/cordovaApp","statusTime":"2017-11-16T18:42:54.230Z","appName":"HelloCordova"}
/usr/local/lib/node_modules/remotebuild/node_modules/applicationinsights/AutoCollection/Exceptions.js:25
throw error;
^

Error: Build Failed: {"vcordova":"5.4.0","vcli":"1.3.5","cfg":"debug","command":"build","options":"--emulator","status":"Error","buildCommand":"build","buildPlatform":"ios","configuration":"debug","buildDir":"/Users/user13/.taco_home/remote-builds/taco-remote/builds/1858","buildNumber":1858,"logLevel":0,"submissionTime":"2017-11-16T18:42:50.611Z","changeList":null,"buildSuccessful":false,"messageId":"BuildFailedWithError","messageArgs":["Warning: Could not find development team. Starting with XCode 8, you must provide a build.json with a development team. See https://go.microsoft.com/fwlink/?linkid=833112 for more details."],"message":"Build failed with error Warning: Could not find development team. Starting with XCode 8, you must provide a build.json with a development team. See https://go.microsoft.com/fwlink/?linkid=833112 for more details.","tgzFilePath":"/Users/user13/.taco_home/remote-builds/taco-remote/builds/1858/upload_1858.tgz","appDir":"/Users/user13/.taco_home/remote-builds/taco-remote/builds/1858/cordovaApp","statusTime":"2017-11-16T18:42:54.230Z","appName":"HelloCordova"}
at Request._callback (/usr/local/lib/node_modules/remotebuild/node_modules/taco-remote/lib/selftest.js:104:46)
at Request.self.callback (/usr/local/lib/node_modules/remotebuild/node_modules/request/request.js:121:22)
at emitTwo (events.js:106:13)
at Request.emit (events.js:191:7)
at Request. (/usr/local/lib/node_modules/remotebuild/node_modules/request/request.js:985:14)
at emitOne (events.js:101:20)
at Request.emit (events.js:188:7)
at IncomingMessage. (/usr/local/lib/node_modules/remotebuild/node_modules/request/request.js:936:12)
at emitNone (events.js:91:20)
at IncomingMessage.emit (events.js:185:7)

The operation has timed out

Using Visual Studio 17 I am trying to remote build on MAC my Cordova application it was working fine with VS 15 but after i upgrade to VS 17 it is giving the Following Error

An error occurred uploading to the build server http://192.168.18.12:3000/cordova/build/tasks?command=build&vcordova=6.3.1&cfg=debug&options=--device: The operation has timed out

Output Window:
1>------ Build started: Project: JobTrexMobile, Configuration: Debug iOS ------
Cordova 6.3.1
------ Platform ios already exists


| _ \ ___ _ __ ___ ___ | |_ | | _ () | __| |
| |
) / _ \ '_ _ \ / _ \| __/ _ \ '_ \| | | | | |/ _ |
| _ < / | | | | | () | || __/ |) | || | | | (| |
|_| __
|| || ||___/ __|_./ _,|||_,|


Sending the build to the remote build server

------ Incremental Build: False
------ Submitting new build request to: http://192.168.18.12:3000/cordova/build/tasks?command=build&vcordova=6.3.1&cfg=debug&options=--device
1>MSBUILD : cordova-build error : An error occurred uploading to the build server http://192.168.18.12:3000/cordova/build/tasks?command=build&vcordova=6.3.1&cfg=debug&options=--device: The operation has timed out
1>MSBUILD : cordova-build error : An error occured connecting to the build machine: The build url cannot be null.
1>Done building project "JobTrexMobile.jsproj" -- FAILED.
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
========== Deploy: 0 succeeded, 0 failed, 0 skipped ==========

Q: is RESTAPI.md stable?

I am building a Gulp plugin that trigger remotebuild to build a Cordova app, without using MSBuild or Visual Studio. It enables remotebuild in a CI/CD workflow (we are using VSTS). It tarball-gzip the input vinyl, send it thru REST to remotebuild, then unzip the files back to vinyl.

And I am looking at this REST API doc and its last commit was September 2015.

Is this REST API doc is stable? Are there any upcoming changes to the API?

Failed to build app for buildNumber [build number]:

Placeholder for a known bug, so it gets more visibility. If you're getting this empty, useless error message, try globally installing cordova on your build machine. This is a temporary workaround and a fix is coming soon.

The issue has to do with how we grab the cordova-ios version. If we can't find the version on your machine, we error out. However, the error string for this case doesn't exist - hence the useless message.

I expect a quick fix, then localized strings a few days after.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.