IntelliJ IDEA 2020.3 Help

PhoneGap and Cordova

PhoneGap and Apache Cordova are frameworks for developing mobile application with single HTML, CSS, and JavaScript/TypeScript code base and targeting various mobile platforms, including Android.

Before you start

  1. Install and enable the PhoneGap/Cordova plugin on the Settings/Preferences | Plugins page as described in Installing plugins from JetBrains repository.

  2. Make sure you have Node.js on your computer.

  3. Download and install an emulator tool depending on the target platform and the operating system you use. Learn more from the Cordova official website.

  4. To emulate the iOS platform, install the ios-sim and ios-deploy command-line tools globally.

    Open the embedded Terminal (Alt+F12) and type:

    npm install -g ios-sim

    npm install -g ios-deploy

Installing PhoneGap and Cordova

In the embedded Terminal (Alt+F12), type one of the following commands:

You can also install your package on the Node.js and NPM page as described in npm, pnpm, and Yarn.

Creating a new PhoneGap or Cordova application

If you have no application yet, you can generate a IntelliJ IDEA project with PhoneGap or Cordova-specific structure from a boilerplate template. Alternatively, create an empty IntelliJ IDEA project and configure PhoneGap or Cordova support in it.

Create an application from a template

  1. Select File | New | Project from the main menu or click the New Project button on the Welcome screen.

  2. In the New Project dialog, select JavaScript in the left-hand pane.

  3. In the right-hand pane, choose Cordova and click Next.

  4. On the second page of the wizard, specify the project name and the folder to create it in. Specify the location of the executable file. Depending on your operating system and target platform, this can be phonegap, phonegap.cmd, cordova, or cordova.cmd.

  5. When you click Finish, IntelliJ IDEA generates a skeleton of an application with the framework-specific structure.

Starting with an existing PhoneGap or Cordova application

To continue developing an existing application, open it in IntelliJ IDEA, download the required dependencies, and configure PhoneGap or Cordova support in your project.

Configure PhoneGap or Cordova in your project

  1. Open the Settings/Preferences dialog Ctrl+Alt+S and go to Languages and Frameworks | JavaScript | Cordova.

  2. Check the location of the executable file or specify the path to it if IntelliJ IDEA has not detected the executable automatically. This can be phonegap, phonegap.cmd, cordova , or cordova.cmd, depending on your operating system and the selected framework.

    IntelliJ IDEA detects the installed version and displays it in the Cordova version read-only field.

  3. In the Cordova working directory field, specify the folder where the application files to run are stored.

  4. By default, IntelliJ IDEA automatically treats the platforms or www directory as excluded and ignores it during indexing, parsing, and code completion, see Configuring folders in a content root.

    To preserve this default behavior, make sure the Automatically exclude working directories ('platforms', 'www' for ionic) checkbox is selected.

Running PhoneGap and Cordova applications

PhoneGap and Cordova applications are executed according to a dedicated run/debug configuration.

Create a run configuration

  1. From the main menu, choose Run | Edit Configurations. In the Edit Configuration dialog that opens, click the Add New Configuration button on the toolbar and choose Cordova from the context menu.

  2. In the Run/Debug Configuration: Cordova dialog that opens, specify the following:

    1. The name of the configuration.

    2. In the Cordova executable field, specify the location of the executable file phonegap, phonegap.cmd, cordova or cordova.cmd, depending on your operating system and the selected framework.

    3. In the Cordova working directory field, specify the folder where the application files to run are stored.

    4. From the Command list, choose the command to run. The contents of the list, depend on the actually used framework, namely, on the executable file specified in the Cordova executable field. The available options are:

      • For PhoneGap:

        • emulate

        • run

        • prepare

        • serve

        • remote build

        • remote run

        See PhoneGap CLI for a list of PhoneGap -specific commands with descriptions.

      • For Cordova:

        • emulate

        • run

        • prepare

        • serve

        See Cordova CLI for a list of Cordova -specific commands with descriptions.

    5. From the Platform list, choose the platform for which the application is intended.

      The available options are:

      • Android
      • iOS
        To emulate this platform, install the ios-sim and ios-deploy command-line tools globally.

        Open the embedded Terminal (Alt+F12) and type:

        npm install -g ios-sim

        npm install -g ios-deploy

      • browser
      • amazon-fireos
      • firefoxos
      • blackberry10
      • ubuntu
      • wp8
      • windows
      • windows8

      Learn more about targeted platforms from the Platform Guides.

    6. For Cordova, specify the targeted virtual or physical Android device to run the application on: select the Specify Target checkbox and select the required device from the list.

      The list shows all the virtual and physical devices that are currently configured on your machine. Learn more about setting up emulators from the Cordova official website.

      If IntelliJ IDEA displays the following error message: Cannot detect ios-sim in path, make sure you have installed the ios-sim, see Before you start.

Run an application

  • Select the newly created run configuration from the list on the main toolbar and click the Run button next to the list.

Last modified: 08 March 2021