How To Run Ionic App In Mac

  1. How To Run Ionic App In Macbook Pro
  2. Ionic App Update
  3. How To Run Ionic App In Mac Download

Cordova is a popular framework for building hybrid mobile applications. This post provides a complete guide on how to install it on a Mac running OS X or macOS, so you can deploy a Cordova-based app to your iOS or Android device.

Since Cordova is the technology that underpins other frameworks such as Ionic, this post also acts as an installation guide for these projects.

This guide was last updated on 29th May 2017. If any of the steps below are out of date, please let me know via the comments section below.

Prerequisites

To follow through this guide you’ll need:

Setup Ionic on Mac: Ionic 3 Tutorial 2 - Duration: 6:31. Codedamn 56,583 views. 5 Ionic Basics: Creating and Running an Ionic App - Duration: 8:27. Samarth Agarwal 27,591 views. Full mac tutorial on ionic build app. Ionic build IOS. Covering ionic cordova run android, ionic cordova build ios, and ionic build for web. Learn about ioni.

  • A Mac running OS X (Mavericks or above) or macOS.
  • An iOS or Android device, plus a USB cable to connect it to your Mac.

In addition to the above, the following software is recommended (but not essential):

  • iTerm2 - a terminal replacement app.

Running Windows? You can still install Cordova and deploy to an Android device, the instructions can be found in this post.

Steps

Briefly, these are steps you need to take:

  1. Ensure you have a valid Apple ID.
  2. Install and configure Xcode
  3. Install and configure the Android SDK
  4. Install the Cordova CLI and create a sample app
  5. Deploy to the emulators
  6. Deploy to your device

1) Apple ID

You need an Apple ID to deploy to iOS devices.

  • If you don’t have an Apple ID, you can get one here.
  • If you have one but you’ve forgotten the password, you can reset it here.

Tip: Even if you already have an Apple ID, consider using a separate Apple ID for development purposes. It will help to separate work and personal life.

2) Xcode

Xcode is the IDE used on a Mac to create and publish iOS apps. It also comes with a set of command-line tools which are essential for deploying Cordova apps.

Install

The easiest way to download Xcode is through the Mac App Store:

  • Open the Mac App Store.
  • Search for Xcode.
  • Install.

Xcode is a hefty download, weighing in at over 4GB, so you might want to skip to the next section (installing the Android SDK) while it is downloading, and come back here later. Add app to mac.

Command Line Tools

Once Xcode has installed itself, you should open a Terminal window. Type the following:

If the command line tools are already installed, a message will be shown in the terminal: xcode-select: error: command line tools are already installed. Otherwise, a pop-up window will appear asking if you want to install the command line tools, click Yes and wait for these to download and install.

Configure

Open Xcode. You should see the Welcome to Xcode screen.

In the top menu, press Xcode -> Preferences.

In the Accounts tab, press + -> Add Apple ID.

Sign in with your Apple ID. When complete, your account will appear in the list. You can now close the Preferences pane.

Next Step

We’re done with iOS for the time being. In the next section, we’ll set up the Android SDK.

3) Android SDK

The Android SDK is used to build Android apps. There are a few steps involved to get the Android SDK:

  • Install Java
  • Install the Android command line tools
  • Install the Android SDK

We’ll cover these steps now.

Installing Java

  • Go to the Java download page.
  • After accepting the license agreement, choose the Mac OS X file under the Java SE Development Kit section to begin the download.
  • Once the .dmg file has downloaded, open it.
  • Double click on the package installer icon. The Java installer should appear - click through to install Java.

To check that Java was installed correctly, open a terminal window and type java -version. You should see the Java version printed to the terminal.

Installing the Android command line tools

  • Go to the Android SDK Command Line tools installation page.
  • Click on the zip file for the Mac platform to download the tools to your Mac.
  • When it has finished downloading, open the zip file to extract the contents.
  • Create a new folder in your home directory named android.
  • Move the tools folder from the zip into the new android folder.

When you are done, you should have a new folder at /Users/<username>/android/tools.

Installing the SDK

We’ll now use the Command Line tools to install the SDK and other necessary tools.

  • Open a terminal window.
  • Type the following commands:

Make sure to accept the license agreement. Once these commands have completed, your android folder should contain a whole bunch of new directories, including:

  • build-tools - these are the tools used by Cordova to build your Android app.
  • emulator - this is the Android emulator that will be used later to preview the app on your Mac.
  • platforms - this is the Android SDK, separated by platform version. These correspond to the releases of Android: Nougat, Marshmallow, etc. The command above has downloaded the most recent platform version (25).
  • platform-tools - more tools that are used to administer Android devices on the command line.
  • system-images - these are images used by the emulator.

Installing Gradle

Gradle is a tool that is required by the Android SDK to build Android apps. It used to be included with the Android SDK, but now it must be downloaded and configured manually.

  • Go to the gradle releases page.
  • Find the binary-only version of the latest release and select it to begin the download.
  • When the download has finished, unzip the file.
  • Rename the resulting folder to just gradle.
  • Move this gradle folder to the android folder that was created above.

Configuration

In order to make this dizzying array of tools available to Cordova, and to us when using the terminal, we need to set some environment variables. To do this:

  • In a terminal window, type nano ~/.bash_profile.
  • Add the following lines to the file:
  • Type Ctrl-X and then y and Enter to save the file.
  • Back in the terminal, type source ~/.bash_profile to setup the environment variables.

Note: If you are using a different shell (such as zsh) you will need to add the environment variables above to the correct shell file. If you don’t know what shell you are using, ignore this (you’ll be using bash).

To test that all of this has worked, try typing the following into the terminal window:

After running each command, you should see the respective tool print its version number. If any of these commands results in a command not found, the environment has not yet been setup correctly. Please double check that the above steps have been carried out before continuing.

Next Step

If you have got this far, congratulations! We have now set up the iOS and Android SDKs. The next step is to install the Cordova CLI and create a sample app.

4) Install the Cordova CLI

Install node.js

The Cordova CLI requires node.js. If you have already installed node, you can skip to the next section.

Otherwise:

  • Go to the node.js download page.
  • Click on the ‘Macintosh Installer’ box to download the LTS version of node for Mac.
  • When the file has downloaded, click on it to run the installer.

Set npm permissions

If you have already used npm, you might have found that you can’t install packages without prefixing your command with sudo. To fix this, it’s recommended to follow these instructions.

Install Cordova

  • In a terminal window, type npm install -g cordova.

When this finished, you should be able to run the command cordova -v which should print the cordova version to the terminal.

Install iOS deployment tools

To deploy to the iOS simulator and devices from the terminal, we should also install two more packages:

We’ll use these tools later.

Create a sample app

We’ll now create a sample app which we can deploy to the simulator and device.

Open a terminal and change to a folder where you are happy for code to live. The commands below will generate a new cordova project in a subdirectory of whichever folder you are currently in.

For example, if you have code living in folders at /Users/<username>/Code, change to this directory before running the commands below.

Once you are in the correct directory, run the following:

These commands will create a new cordova project, add the iOS and Android platforms, and build the respective files for deployment to iOS and Android.

Before continuing, please ensure that the commands above all worked correctly, with no errors. If there were any errors, you’ll need to go back and check that the iOS and Android SDKs were both installed correctly, and that you’ve set the environment variables correctly.

Note: if you see the following error: xcode-select: error: tool 'xcodebuild' requires Xcode .. then run the following commands to try again:

5) Deploy the sample app to the emulators

iOS Simulator

To deploy the app to the iOS simulator, type:

The iOS simulator should automatically launch. When it has finished initialising, the Cordova Hello World app should be displayed:

Android emulator

To deploy the app to the Android emulator, type:

The emulator should launch and display the app:

Note: If you see an error in the terminal such as Failed to sync vcpu reg when the emulator is starting, this means that the emulator cannot start its virtual machine. To solve this problem, make sure you aren’t running any other virtual machines on your Mac. This includes Virtualbox (or Vagrant), VMWare and Docker. Close all of these applications before trying again.

6) Deploy the sample app to your device

The final step in the process is to deploy the app to your device(s).

Change Bundle ID

Before the app is deployed, the Bundle ID of the app needs to be changed to something unique. A Bundle ID is used to uniquely identify an app. When building for an iOS device, Xcode will verify that the bundle ID has not been used by any other iOS app.

The convention for a Bundle ID is to use a reverse domain identifier, followed by the name of the app. For example, using a domain tomspencer.dev and an app name of Hello Cordova, the Bundle ID would be dev.tomspencer.hellocordova. If you own a domain, you can use the above convention, otherwise use a random string of alphanumeric characters.

Once you have chosen your Bundle ID, update it by editing the file config.xml in the project root directory. You are looking for the section that reads widget - change io.cordova.hellocordova to your new Bundle ID.

When you change the Bundle ID, you need to regenerate the platform files. Do this by running the following commands from the project root directory in the terminal:

iOS: first launch

If you have an iPhone or iPad running iOS 10+, you can deploy the app to your device. You’ll need a lightning cable to connect your iOS device to your Mac.

Before starting with this section, ensure that your device is running the latest version of iOS. You can check this by using the Settings app on the device. Choose General ->Software Update to check if there is an update available. If there is, install it before continuing.

The first time you deploy the app, you’ll need to use Xcode. Carry out the following steps:

  • Connect your iOS device to your Mac with a lightning cable. (iTunes might appear - you can safely close it.)
  • If this is the first time you’ve connected your device to your Mac, you may see a message on your device, Trust This Computer? Tap Trust.
  • Open a terminal window and change to your project’s root directory.
  • Type the following:
  • In the resulting Xcode window, ensure the Project navigator pane is displayed by clicking the folder icon in the top left hand corner.
  • Click on the HelloCordova project. The middle pane will reveal the Signing section. You should see a message Signing for 'HelloCordova' requires a development team.
  • In the Signing section, from the Team dropdown, choose the entry that resembles {Your Name} (Personal Team). Xcode will ‘repair’ and ‘provision’ your app to allow it to be deployed to your device.

You should now see the text iPhone Developer next to the Signing Certificate entry.

Note: if you see the following error: Failed to create provisioning profile. The app ID cannot be registered to your development team. Change your bundle identifier to a unique string to try again. - this means that the Bundle ID that you set at the start of this section was not unique. Close Xcode, set a new Bundle ID and run through this section again.

Now that the app has been provisioned, it can be deployed to your device.

  • Make sure your iOS device is unlocked.
  • From the active scheme menu (to the right of the ‘play’ button in the top left hand corner), change the scheme from iPhone 7 Plus to your iOS device.
  • Press the ‘Play’ button.

Note: before the app can be deployed, you may need to wait for the iOS device to ‘finish processing symbol files’. This can take a few minutes.

Xcode will now attempt to build and deploy the app to your device, but it will fail. You’ll see a message in Xcode: Verify the Developer App certificate for your account is trusted on your device. Follow the instructions provided by Xcode to complete this task. Once your account is trusted, you won’t need to perform this step again.

Note: the process of trusting your account requires an Internet connection, so make sure your iOS device is online whilst performing the step above.

Now, return to Xcode and press ‘Play’ again. This time, the app should launch on your device.

iOS: subsequent launches

Now that Xcode and your iOS device are configured, you can deploy the app from the terminal as follows:

  • Ensure your device is connected to your Mac and is unlocked.
  • Open a terminal window and navigate to the project root directory.
  • Run the command:

Android

If you have an Android phone or tablet running Android 4.4+, you can deploy the app to your device. You’ll need a USB cable to connect your device to your Mac.

To begin, you need to configure your device to accept deployments from your Mac:

  • Open the Settings app on your device.
  • Scroll to the bottom of the list and tap About phone or About tablet.
  • Scroll to the bottom of the list and find the Build number item.
  • Tap on the Build number item seven times. This will enable a new menu item Developer Options in the main Settings app.
  • Go back to the Settings app and tap on the new Developer Options item. You should see a screen resembling the following:
  • If not enabled, tap the toggle switch to enable ‘Developer Mode’.
  • Scroll down and find the item ‘USB Debugging’ and tap the toggle switch to enable USB Debugging.

Your device can now accept app deployments from your Mac.

To continue:

  • Ensure your device is unlocked.
  • Connect your device to your Mac with the USB cable.
  • You should see a message to ‘Allow USB Debugging’. Check the ‘Always allow from this computer’ checkbox and tap ‘OK’.
  • Open a terminal window and type adb devices. You should see your device listed as attached in the terminal.

You can now deploy the app to your device:

  • In the terminal, type:

After a short while, the app will be deployed and automatically opened on your device.

Next Steps

You’ve now got Cordova installed, configured and running on your Mac, and you are able to deploy apps to the simulators and devices. You’re in good shape!

I’d recommend taking a look at the Ionic Framework, which builds on Cordova by providing a set of platform-specific UI components and additional build tools to help you build an awesome hybrid mobile app.

Introduction

Ionic 4 is finally here! So in this post we will discuss what is the best way to install, run, and emulate Ionic 4 app. We will also see how to test our app while building. Now this post is for Mac users only.

Prerequisites

Make sure you have an up-to-date version of Node.js installed on your system. If you don’t have Node.js installed, you can install it from here

Also we need Ionic and Cordova, So open a terminal window (Mac) and install Cordova and Ionic:

sudo npm install -g cordova ionic

If you already have Cordova and Ionic installed on your computer, make sure you update to the latest version:

sudo npm update -g cordova ionic

We also need an IDE or Text Editor. Personally I use Visual Studio Code. But you can use any.

We also need Xcode to simulate devices.

Example Configuration

For demonstration purposes, we’re going to create a simple app

Step One — Create a new Ionic Application

First of all open Terminal and go to a directory where you want to create app. You can use following command to go to different directory.

cd Desktop/

To create a new Ionic 4 application, paste this command in your terminal. There are 3 basic layouts we can use when we are creating a new Ionic 4 app.

  • Blank
  • Sidemenu
  • Tabs

In this tutorial we will be using Tabs.

After installing `NPM` modules and dependencies, you will see this question, just type `N` because we are not using it yet.

Install the free Ionic Appflow SDK and connect your app? (Y/n) : N

Next, go to the newly created app folder.

cd appName/

Step Two — Running App

Now we can use following command to run the app in browser.

ionic serve -l

You will see this question, just type `Y` and press enter.

Install @ionic/lab? (Y/n) : Y

Now we have successfully created an Ionic 4 app and we even tested it by running it on web browser. Perfect!!!

Is that it?

May be there is one more thing we need to do, Now if you open Inspect Element of this page, by right clicking on app, and then click on Inspect

After clicking on Inspect, you will see a new window, Now I want you to click on Console.

You will see something like following image. Now what the Heck are these errors?

So basically StatusBar is a Native Cordova plugin and as we are running our app on web browser, so Native Cordova plugins won’t work like Camera, Push Notifications etc.

Now you can use Ionic DevApp. You can just install it on your iOS or Android device and run app there. The native Cordova plugins will work just fine there.

But while building the app. we will need see console to see all errors. But if we are using Ionic DevApp, we can’t see console.

So what’s the solution?

So we need to run this app in actual iPhone and use Safari Web Inspector to see console. So what if we don’t have physical device? That’s ok as well. We can run a simulator for iPhone, which will work just like as physical device.

Step Three — Enable Cordova

Run following command to get all Cordova files.

ionic integrations enable cordova

This command is going to create some new files. After that we need to change package id in config.xml file. You have to change the id attribute of widget tag to change your app id.

For Example:

So for my project I am going to change io.ionic.starter to net.flicher

How To Run Ionic App In Macbook Pro

<widget id=”io.ionic.starter” version=”0.0.1″ xmlns=”http://www.w3.org/ns/widgets” xmlns:cdv=”http://cordova.apache.org/ns/1.0″>

<widget id=”net.flicher” version=”0.0.1″ xmlns=”http://www.w3.org/ns/widgets” xmlns:cdv=”http://cordova.apache.org/ns/1.0″>

Step Four — Running app on Simulator

To run Simulator run following command, as mentioned in Ionic documentation.

Xcode 10 support in Cordova is still a work-in-progress. So they recommend using XCode 9. So either you can install XCode 9 or use following command to get it working with XCode 10. See this issue for details.

Lets understand flags used in this command

-l: Live Reload
-c: Console Errors in terminal
buildFlag=”-UseModernBuildSystem=0″: Use XCode old build system

Ionic App Update

After running this command, Simulator will open and app will be installed on it. It will look like this.

Step Five — Opening Safari Web Inspector

Safari has Web Inspector support for iOS simulators and devices. Open the Develop menu and select the simulator or device, then select the Ionic App to open Web Inspector.

If the Develop menu is hidden, enable it in Safari » Preferences » Advanced » Show Develop menu in menu bar.

After you click on Simulator, a new windows will open which will look like this.

You can refresh the app once by pressing Command (⌘)-R on Web Inspector to see console logs. As Live reload is enabled, so if you make modification to your project. The Ionic App will reload it self, when you save the file and you will see the change you made in Simulator.

Conclusion

Congratulation, you have successfully created your first Ionic 4 app and ran it on Simulator as well.

What’s next?

Go to Ionic Documentation and add new features to your app.

How To Run Ionic App In Mac Download

Have fun!