Ionic Capacitor
Ionic Capacitor is a cross-platform app runtime that makes it easy to build web apps that run natively on iOS, Android, Electron, and the web.
Last updated
Was this helpful?
Ionic Capacitor is a cross-platform app runtime that makes it easy to build web apps that run natively on iOS, Android, Electron, and the web.
Last updated
Was this helpful?
Capacitor is a cross-platform app runtime that makes it easy to build web apps that run natively on iOS, Android, Electron, and the web. It was created -and is maintained- by the Ionic team.
Capacitor can work with any web project, it’s not specific to Ionic apps.
It provides a consistent, web-focused set of APIs that enable an app to stay as close to web-standards as possible, while accessing rich native device features on platforms that support them. It has full support for PWAs.
It's a spiritual successor to Apache Cordova and Adobe PhoneGap. Its mantra is "Code once, configure everywhere". We love working with Capacitor because the developer experience is incredibly good.
Learn more about .
The Capacitor workflow involves a few consistent tasks:
This app has an iOS folder which contains the iOS native app. Read how to .
You must build your Ionic project at least once before adding any native platforms.
Because our project uses SSR, we don’t have www
folder. We instead have to use dist/app/browser
and change it in capacitor.config.json
Both android and ios folders at the root of the project are created. These are entirely separate native project artifacts that should be considered part of your Ionic app (i.e., check them into source control, edit them in their own IDEs, etc.).
When you are ready to run your app natively on a device or in a simulator, copy your built web assets using:
Capacitor uses the Native IDEs to build, simulate, and run your app. To open one, run:
In some cases, the Capacitor app needs to be updated, such as when installing new plugins.
To install new plugins (including Cordova ones), run:
To check if there are any new updates to Capacitor itself, run npx cap doctor
to print out the current installed dependencies as well view the latest available.
To update Capacitor Core and CLI:
To update any or all of the platforms you are using:
See how to do this in the following video.
We use and strongly recommend using Capacitor, the developer experience is SO MUCH better than it was with Cordova. However, in this section, we will show you how to remove Capacitor and add Cordova if you are not yet ready to use it.
Delete ios, android and .gradle folders
Delete capacitor.config.json
Run: ionic integrations disable capacitor
Run: ionic cordova platform add ios
Run: ionic cordova platform add android
Install Ionic Native by running:
Go to app.component.ts
and do the following:
Remove:
Add:
Change the initializeApp()
method for the following code:
Add the following parameters to the constructor:
Now go to app.module.ts and add the following:
Then add them as providers of the module:
Now if you run ionic serve everything should work fine.
Now you can safely remove the Capacitor dependencies from your package.json.
Web apps can access the full power of Native APIs with plugins. Plugins wrap common native operations that might use very different APIs across platforms while exposing a consistent, cross-platform API to JavaScript.
This app has an Android folder which contains the Android native app. Read how to .
Follow the steps from the .
This creates the www
folder that Capacitor has been to use as the webDir
in capacitor.config.json.
There are two main major points when doing a Cordova vs Capacitor comparison: Native Project Management and Plugin and CLI Management. In our we go through each of them to see the main changes and their benefits.
You will have to change the Capacitor plugins for plugins.
Find examples of how to to your project.