All Projects β†’ microsoft β†’ Vscode Cordova

microsoft / Vscode Cordova

Licence: other
A Visual Studio Code extension providing intellisense, debug, and build support for Cordova and Ionic projects.

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Vscode Cordova

Ionic Typescript Starter
πŸ“± Platform and IDE agnostic starter project for building mobile apps with Ionic and TypeScript.
Stars: ✭ 124 (-53.56%)
Mutual labels:  vscode, cordova, ionic
Vscode React Native
VSCode extension for React Native - supports debugging and editor integration
Stars: ✭ 2,366 (+786.14%)
Mutual labels:  vscode, extension, debugger
Code Debug
Native debugging for VSCode
Stars: ✭ 232 (-13.11%)
Mutual labels:  vscode, extension, debugger
cordova-plugin-crypto-file
Encrypts source files, works with cordova-plugin-ionic-webview
Stars: ✭ 29 (-89.14%)
Mutual labels:  cordova, ionic
ionic-docker
An ionic image for CI
Stars: ✭ 56 (-79.03%)
Mutual labels:  cordova, ionic
keyonic-v2
A Keycloak Mobile Implementation using Angular v4 and Ionic v3
Stars: ✭ 23 (-91.39%)
Mutual labels:  cordova, ionic
example-cordova-code-push-plugin
Ionic + Cordova Code Push Plugin Example
Stars: ✭ 45 (-83.15%)
Mutual labels:  cordova, ionic
ionic-native-sms-retriever-plugin-master
Cross-platform plugin for Cordova / PhoneGap to Retrieve SMS. Available for Android.
Stars: ✭ 16 (-94.01%)
Mutual labels:  cordova, ionic
generator-angular-pro
AngularJS project generator for scalable, enterprise-grade web and mobile applications
Stars: ✭ 43 (-83.9%)
Mutual labels:  cordova, ionic
Vue Vscode Extensionpack
The extensions I use when developing a Vue application with VS Code
Stars: ✭ 264 (-1.12%)
Mutual labels:  vscode, extension
setup-ionic
Set up your GitHub Actions workflow with Cordova/Ionic environment
Stars: ✭ 23 (-91.39%)
Mutual labels:  cordova, ionic
cordova-plugin-apkupdater
This plugin allows your Android app to download and install compressed updates without the Google Play Store.
Stars: ✭ 46 (-82.77%)
Mutual labels:  cordova, ionic
cordova-plugin-xpay
πŸ’° This is a app payment cordova-plugin, support wechat payment and alipay temporally.
Stars: ✭ 19 (-92.88%)
Mutual labels:  cordova, ionic
todo-list
TodoList using Ionic2/3 & Firebase: * PWA * SSO Google plus. * Share list via QRcode. * Upload image from Camera or Storage. * Speech Recognition.
Stars: ✭ 18 (-93.26%)
Mutual labels:  cordova, ionic
cordova-plugin-flurryanalytics
Adds support for all that Flurry Analytics flavored goodness to your Cordova based apps
Stars: ✭ 23 (-91.39%)
Mutual labels:  cordova, ionic
cordova-plugin-today-widget
Add a today widget app extension target to your cordova project.
Stars: ✭ 51 (-80.9%)
Mutual labels:  cordova, ionic
ionic4-angular6-crud-example
Building CRUD Mobile App using Ionic 4, Angular 6 and Cordova
Stars: ✭ 50 (-81.27%)
Mutual labels:  cordova, ionic
vscode-save-and-run
Visual Studio Code extension to run commands whenever a file is saved https://marketplace.visualstudio.com/items?itemName=wk-j.save-and-run
Stars: ✭ 31 (-88.39%)
Mutual labels:  extension, vscode
ionic-multi-camera
Take multiple photos one after another
Stars: ✭ 12 (-95.51%)
Mutual labels:  cordova, ionic
bitpocket-mobile-app
Mobile app for accepting bitcoin payments at the point of sale (Bitcoin POS).
Stars: ✭ 26 (-90.26%)
Mutual labels:  cordova, ionic

Cordova Tools Extension

Build Status

Debug your code, find commands in the Command Palette, and use IntelliSense to browse objects, functions, and parameters in plugin APIs. This extension works with any Cordova-based project.

Choose Cordova debugger

Install it

  1. Install NodeJS
  2. Open a Terminal (on a Mac) or a Command Prompt (on a Windows computer).
  3. Run npm install -g cordova
  4. If you're planning on targeting iOS devices,
  1. If you're planning on targeting Android devices, set up your machine by following instructions at Android Platform Guide from Apache Cordova

Add a platform to your Cordova project

Open a Terminal or a Command Prompt and run the following command in the root directory of your project

cordova platform add android

Supported platforms: android, ios

Choose the Cordova debug environment

Click the debug icon (Choose Cordova debugger) in the View bar, and then click the configure gear icon (Configure-gear) to choose the Cordova debug environment.

Choose Cordova debugger

The launch configuration file appears. It contains some default configurations such as what is shown below.

Cordova launch configuration file

You can modify these configurations or add new ones to the list. Just don't add a Windows configuration as it is not supported yet.

You can use other fields in these configurations as well. Here's the complete list:

Name Description Defaults
port The port number that the debugger uses to connect to a device or emulator. 9222
platform The target platform to run for (either 'ios', 'android', 'browser' or 'serve'; other platforms are not currently supported). n/a
target Target to run on. Possible values: emulator, device, <Android emulator/device id>, <Android emulator name>. For simulation in the browser, you can use chrome, edge. If the value is emulator and platform is android then the quick pick window will be expanded with the names of the available Android virtual devices, then the target value in launch.json will be changed to the name of the selected virtual device. If you have only one virtual device available, it will be selected automatically. n/a
trace Trace may be set to true to print diagnostic logs of the extension to the console and write diagnostic logs of the Javascript debugger to the disk true
sourceMaps Set this field to true if you want the debugger to use javascript sourcemaps (if they exist). false
webkitRangeMin, webkitRangeMax Combines to specify the port range that you want the debugger to use to find the specific device or simulator described in the configuration. 9223, 9322
attachAttempts The maximum number of times that you want the debugger to attempt to attach to a running iOS app. 5
attachDelay The time in milliseconds between each attempt to attach to a running iOS application. 1000
attachTimeout Time in milliseconds to wait before the debugger is attached to the debug session 10000
iosDebugProxyPort The port number that you want the debugger to use when it launches iOS applications on a device. 9221
ionicLiveReload Set to true to enable Ionic live reload. false
devServerAddress For Ionic live reload scenario specify the IP address the device can use to contact the Ionic server. n/a
devServerPort For Ionic live reload scenario specify the port the device can use to contact the Ionic server. n/a
devServerTimeout Timeout in milliseconds for starting the Ionic dev server when serving to the browser or running with Ionic live reload enabled. 20000
simulatePort Port to use for connecting to the local Cordova Simulate server. 8000
livereload When simulating in the browser, determines whether live reload is enabled. true
forcePrepare When simulating in the browser, determines whether a file change triggers a cordova prepare before live reloading. false
corsProxy When simulating in the browser, determines whether XHR requests are proxied to appear as though they originate from the same domain as the target true
livereloadDelay When simulating in the browser, set the delay in milliseconds between saving of a modified file and the application page reloading 200
simulateTempDir The directory where temporary browser simulation files are hosted. ${workspaceRoot}/.vscode/simulation
runArguments Run arguments (array) to be passed to 'cordova run/build ' or 'ionic serve' command (Override all other configuration params). n/a

Debug your Cordova-based project

To start the debugger, choose a target from the target drop-down list, and then either click the start button (Configure-gear) or press F5.

Cordova launch targets

To restart a Cordova application debugging correctly click on the Restart Cordova debugging button. In case of a launch debug scenario the application will be rebuild otherwise the debugger will reattach to the application.

Restart Cordova debugging button

You can debug your app on an Android emulator or an Android/iOS device. If you have your app running in one already, you can attach the debugger to it. The debugger uses the application ID of your project to locate the running instance.

Visual Studio Emulator for Android: To deploy your app to the Visual Studio Emulator for Android using our extension, you first need to manually launch the emulator. Once it is running, select the Run Android on Device debug target rather than the emulator target. If ADB didn't automatically recognize the VS Android emulator when you launched it, you will need to run adb connect [EMULATOR'S IP] on the command prompt before trying to deploy. To find out the IP address of your emulator, click the double arrow icon at the bottom of the emulator's side-menu to open the "Additional Tools" window, and go to the "Network" tab. Use the IP of an appropriate network adapter in the list.

We won't go into all of the great things that you can do with the Visual Studio Code debugger, but you can read about it here.

Troubleshooting tip: If you receive an error stating that ADB is not recognized as an internal or external command, you'll have to update your path variable to include the location of your ADB executable file. The ADB executable file is located in a subfolder along with your other Android SDK files. For example, on a Windows computer, the location of the ADB executable file would likely be here: C:\Program Files (x86)\Android\android-sdk\platform-tools.

Troubleshooting tip: If you press debug button, but nothing happens and you can see only pending spinner for a long time, make sure that Cordova project is opened as a workspace root. If, for instance, you have one parent directory, and your Cordova project is in a subdirectory, it is recommended to use a multi-root workspace approach, so that the debugger can find the necessary Cordova files properly.

Find Cordova commands in the Command Palette

In the Command Palette, type Cordova and choose a command.

Cordova commands

The Build command triggers cordova build and builds for all platforms that you've added to the project.

Since all platforms are built you may receive errors for incompatible configurations. For example, if you're on a Windows computer, and you've added an iOS platform to your project, you'll get an error because you need a Mac to build for iOS platforms. You can't build an iOS app on a Mac by using VSCode on a Windows computer.

The Prepare command triggers cordova prepare, which transforms config.xml metadata to platform-specific manifest files, copies icons & splashscreens, copies plugin files for specified platforms so that the project is ready to build with each native SDK.

The Run command triggers cordova run and starts your app without debugging and just like the Build command, it runs all platforms that you've added to your project.

The Simulate Android in browser and Simulate iOS in browser launch your application in the browser and they are described in the next section.

Simulate your app in the browser

The debugging target list includes two additional targets: Simulate Android in browser and Simulate iOS in browser. If you don't see these targets in your debugging target list, you might have to remove your .vscode/launch.json configuration file and regenerate it by following the steps described in the Choose the Cordova debug environment section.

If you just want to run the application in the browser without debugging, two commands with the same names are available in the Command Palette.

If you launch the application using one of these debug targets or commands, the application will launch in Chrome, and Visual Studio Code will display an additional panel that controls the simulation for the core plugins added to your project. Here are some of the new features:

  • support for the majority of core plugins
  • live reload
  • event firing
  • device screen resizing (while debugging only)

Cordova Simulate

Note: If the simulate panel is closed accidentally when you navigate to a new file in your editor, it can be reopened by using Ctrl+Tab. This is the same command you use for navigating through your open documents.

Here is a video demo of the feature. If you have feature requests or suggestions, please reach out to us here.

Support for Ionic

  • The debug target includes the ability to serve to the browser for use with Ionic projects. You can now deploy and debug directly to Chrome, live reload is enabled by default.

  • We've included a number of useful JavaScript and HTML code snippets for your project, try typing ion_ in the editor to see what's available.

JavaScript snippets HTML snippets

  • New Ionic commands have also been added to the Command Palette, type Ionic in the palette to see the full list.

  • Ionic live reload is supported on devices and emulators.

  • Additional IntelliSense has been added for Ionic, Angular and JQuery.

Use IntelliSense with Plugin APIs

Intellisense helps you discover objects, functions, and parameters in libraries that your project consumes. Now you can use it for the more popularly used core plugins.

IntelliSense

IntelliSense appears only for plugins that you've added to your project, but it doesn't matter whether you add the plugin before or after you install this extension.

Just start typing in the code editor to see the objects, functions, and parameters of your plugin's API.

By default, this extension supports the typings for the following plugins. To add typings for other plugins, place the appropriate .d.ts file(s) in your project's .vscode/typings folder.

  • cordova-plugin-battery-status
  • cordova-plugin-camera
  • cordova-plugin-contacts
  • cordova-plugin-device
  • cordova-plugin-device-motion
  • cordova-plugin-device-orientation
  • cordova-plugin-dialogs
  • cordova-plugin-file
  • cordova-plugin-file-transfer
  • cordova-plugin-globalization
  • cordova-plugin-inappbrowser
  • cordova-plugin-media
  • cordova-plugin-media-capture
  • cordova-plugin-network-information
  • cordova-plugin-splashscreen
  • cordova-plugin-statusbar
  • cordova-plugin-vibration
  • cordova-plugin-websql
  • cordova-plugin-x-toast
  • ionic-plugin-keyboard
  • phonegap-plugin-barcodescanner
  • phonegap-plugin-push

Use IntelliSense with injected Ionic and Angular services

While IntelliSense is also available for Ionic and Angular, these frameworks use a dependency injection model for built-in services that VSCode's language service cannot understand by default.

To properly enable IntelliSense in these scenarios, you will need to use JSDoc headers.

IntelliSense for Angular and Ionic services

Our extension will provide the typings for you, so all you have to do is create the JSDoc headers above the functions you wish to receive IntelliSense for.

Note: JSDoc headers may not be supported (for IntelliSense purposes) in old VSCode versions.

For Ionic services, the service type will be in the following format: ionic.[service].Ionic[Service]Service, where [service] and [Service] should be replaced with the service's name, without the $ionic prefix. For example:

@param {ionic.popup.IonicPopupService} $ionicPopup - The $ionicPopup service

@param {ionic.modal.IonicModalService} $ionicModal - The $ionicModal service

For Angular services, the service type will be in the following format: angular.I[Service]Service, where [Service] should be replaced with the capitalized service's name, without the $ prefix. For example:

@param {angular.ITimeoutService} $timeout - The Angular $timeout service

@param {angular.IHttpService} $http - The Angular $http service

For a list of supported services for IntelliSense, see the angular.d.ts and ionic.d.ts typing files, which our extension places by default under .vscode/typings in your project.

How to disable telemetry reporting

VS Code Cordova extension collects usage data and sends it to Microsoft to help improve our products and services. Read our privacy statement to learn more.

If you don’t wish to send usage data to Microsoft, please follow the instructions below to disable its collection.

Windows

  • Edit VSCodeTelemetrySettings.json file at %appdata%\vscode-cordova and add "optIn":false.

OS X / Linux

  • Edit VSCodeTelemetrySettings.json file at ~/.vscode-cordova and add "optIn":false.

Known Issues

Why can't I debug my app on iOS Simulator?

Due to recent changes in macOS we cannot connect to simulators to enable debugging of Cordova apps. We hope to re-introduce this functionality as soon as macOS provides a mechanism that allows the extension to connect to apps running in simulator. You can read more about the issue here.

Error 'Debugger' domain was not foundError processing "<attach/launch>": 'Debugger' domain was not found: [object Object]

Due to recent changes in iOS we cannot connect to Ionic and Cordova applications which are using WKWebView for content rendering. This caused by changes in Webkit protocol in iOS version above 12.2. As soon as the ios-webkit-debug-proxy version with the corresponding compatibility fix will be released, this issue should be resolved. You can read more about the issue here.

Error 'Cannot connect to runtime process, timeout after {0} ms - (reason: {1}).', '{_timeout}', '{_error}' occured while running debug scenarios

Try to increase attach timeout by adding attachTimeout configuration parameter.

Error Error running android while running Ionic 4 project for android platform

It caused by ionic cli bug. As workaround, you can use Node JS v10+.

After running Ionic 4 project on native platform I get white screen in application and error (intermediate value).fill is not a function in Debug Console.

Explanation and solution for it.

I try to attach to Ionic 4 app running with livereload but breakpoints are not being hit or being placed to incorrect positions

Add "ionicLiveReload": true to your attach debug configuration and reattach.

A complete list of known issues can be found on GitHub

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].