How to generate ios build with IONIC project

0

Good afternoon,

I'm on a project made in ionic, nodeJS and MongoDB. I have access to the code, which is in the BITBUCKET repository but I do not know how to create the project build in xcode (because I use MACOS). Does anyone know how I can generate this blessed application to execute on my iPhone, the programs that I need to download to be able to do this, what step by step to be able to build.

ATT,

    
asked by anonymous 21.10.2017 / 22:14

3 answers

0

It's simple:

ionic cordova platform add ios
ionic cordova build ios

You can find more information on the official Ionic website: link

    
21.10.2017 / 23:46
0

Make sure you already have Node.js installed, if you do not have it, click here

link

With the terminal open, install Ionic

npm install -g cordova ionic

If you already have both installed, perform an update

npm update -g cordova ionic

With the environment set up, you can now build and run your application.

First add the platform

ionic cordova platform add ios  

Within the project folder, run the following command

ionic cordova run ios
    
19.11.2018 / 11:15
0

Just inside the project folder you run the following commands:

ionic cordova platform add ios
ionic cordova build ios --prod --release

The ios platform will be added, --prod indicates that it is for production and --release a release build with Cordova.

    
19.11.2018 / 10:51