IntelliJ IDEA 2023.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. Make sure you have Node.js on your computer.

  2. Install and enable the Cordova plugin on the Settings | Plugins page, tab Marketplace, as described in Installing plugins from JetBrains Marketplace.

  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:

Creating a new PhoneGap or Cordova application

If you have no application yet, you can generate an 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 dialog (Ctrl+Alt+S) and go to Languages & 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, refer to 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.

Project security

When you open a project that was created outside IntelliJ IDEA and was imported into it, IntelliJ IDEA displays a dialog where you can decide how to handle this project with unfamiliar source code.

Untrusted project warning

Select one of the following options:

  • Preview in Safe Mode: in this case, IntelliJ IDEA opens the project in a preview mode. It means that you can browse the project's sources but you cannot run tasks and script or run/debug your project.

    IntelliJ IDEA displays a notification on top of the editor area, and you can click the Trust project link and load your project at any time.

  • Trust Project: in this case, IntelliJ IDEA opens and loads a project. That means the project is initialized, project's plugins are resolved, dependencies are added, and all IntelliJ IDEA features are available.

  • Don't Open: in this case, IntelliJ IDEA doesn't open the project.

Learn more from Project security.

Running PhoneGap and Cordova applications

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

Create a run configuration

  1. Go to Run | Edit Configurations. In the Edit Configuration dialog that opens, click the Add New Configuration button on the toolbar and select 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, refer to Before you start.

Run an application

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

Last modified: 19 March 2024