Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I use remote build for Cordova app without Visual Studio?

In the past I have built my Cordova apps with Visual Studio Tools for Apache Cordova and remote build on a provisioned Mac (from macincloud).

I'm now using VS Code rather than Visual Studio, and wondering if there is a way of doing it with command line tools instead?

like image 276
user888734 Avatar asked May 29 '16 12:05

user888734


People also ask

Which are the platforms where we can develop apps using Cordova?

Cordova is powered by Apache Foundation. It is an open-source mobile development framework. You can use standard web technologies like HTML5, CSS3, and JavaScript to build cross-platform mobile applications like Android, iOS and Blackberry apps.

Is Cordova still supported?

Supported platforms As of version 9, Apache Cordova currently supports development for the operating systems Apple iOS, Google Android, Windows 8.1, Windows Phone 8.1 , Windows 10 and Electron (software framework) (which in turn runs on Windows, Linux and macOS).

How do I run a Cordova project in Visual Studio?

Select Add new app from the menu. Enter a name for your application project, adding an optional description as needed. Select the appropriate OS for your application project (Android or iOS only), then select the Cordova platform option. Click the Add new app button on the bottom-right corner of the page.


1 Answers

Turns out you can with TACO CLI:

npm install -g taco-cli

taco remote add ios

Then it prompts you for the remote details

like image 80
user888734 Avatar answered Nov 15 '22 10:11

user888734