- Cards are a great way to display an important piece of content, and can contain images, buttons, text, and more. -
+ +Cards are a great way to display an important piece of content, and can contain images, buttons, text, and more.
blocks.
+ */
+ readme = readme.replaceAll(//g, '').replace(/(.*?)<\/code>/g, (_match, p1) => {
+ // Replace { with \{ inside the matched content
+ return `${p1.replace(/{/g, '\\{')}
`;
+ });
return `
---
diff --git a/scripts/release-notes.js b/scripts/release-notes.mjs
similarity index 89%
rename from scripts/release-notes.js
rename to scripts/release-notes.mjs
index e7358189f83..3a397bd8c6a 100644
--- a/scripts/release-notes.js
+++ b/scripts/release-notes.mjs
@@ -1,11 +1,12 @@
-const { outputJson } = require('fs-extra');
-const fetch = require('node-fetch');
-const { resolve } = require('path');
-const semver = require('semver');
-const { URL } = require('url');
+import pkg from 'fs-extra';
+import fetch from 'node-fetch';
+import { resolve } from 'path';
+import { compare } from 'semver';
+import { URL } from 'url';
-const { renderMarkdown } = require('./utils.js');
+import { renderMarkdown } from './utils.mjs';
+const __dirname = new URL('.', import.meta.url).pathname;
const OUTPUT_PATH = resolve(__dirname, '../src/components/page/reference/ReleaseNotes/release-notes.json');
// export default {
@@ -58,7 +59,7 @@ const getReleases = async () => {
};
})
.sort((a, b) => {
- return -semver.compare(a.tag_name, b.tag_name);
+ return -compare(a.tag_name, b.tag_name);
});
} else {
console.error('There was an issue getting releases:', releases);
@@ -95,6 +96,7 @@ function getVersionType(version) {
}
async function run() {
+ const { outputJson } = pkg;
outputJson(OUTPUT_PATH, await getReleases(), { spaces: 2 });
}
diff --git a/scripts/utils.js b/scripts/utils.mjs
similarity index 94%
rename from scripts/utils.js
rename to scripts/utils.mjs
index b98cdc034f3..672c104fa6e 100644
--- a/scripts/utils.js
+++ b/scripts/utils.mjs
@@ -1,6 +1,6 @@
-const unified = require('unified');
-const markdown = require('remark-parse');
-const html = require('remark-html');
+import {unified} from 'unified';
+import markdown from 'remark-parse';
+import html from 'remark-html';
function renderMarkdown(markdownString) {
return unified().use(markdown).use(html).processSync(markdownString);
@@ -77,7 +77,7 @@ function getHeadTag({ title: metaTitle, description: metaDescription } = {}) {
`;
}
-module.exports = {
+export {
gitBranchSVG,
renderMarkdown,
renderReference,
diff --git a/src/components/global/Playground/index.tsx b/src/components/global/Playground/index.tsx
index 1ef1dba4489..9b9cee2a28e 100644
--- a/src/components/global/Playground/index.tsx
+++ b/src/components/global/Playground/index.tsx
@@ -591,14 +591,15 @@ export default function Playground({
}
useEffect(() => {
- const codeSnippets = {};
+ const codeSnips = {};
Object.keys(code).forEach((key) => {
if (typeof code[key] === 'function') {
/**
* Instantiates the React component from the MDX content for
* single-file playground examples.
*/
- codeSnippets[key] = code[key]({});
+ const DynamicComponent = code[key];
+ codeSnips[key] = ;
} else if (typeof code[key] === 'object') {
/**
* Instantiates the list of React components from the MDX content for
@@ -606,12 +607,13 @@ export default function Playground({
*/
const fileSnippets = {};
for (const fileName of Object.keys(code[key].files)) {
- fileSnippets[`${fileName}`] = code[key].files[fileName]({});
+ const DynamicFileComponent = code[key].files[fileName];
+ fileSnippets[`${fileName}`] = ;
}
- codeSnippets[key] = fileSnippets;
+ codeSnips[key] = fileSnippets;
}
});
- setCodeSnippets(codeSnippets);
+ setCodeSnippets(codeSnips);
}, []);
function getCodeSnippetId(usageTarget: string, fileName: string) {
diff --git a/src/styles/components/_admonition.scss b/src/styles/components/_admonition.scss
index de76d5a8982..cb4e1df485f 100644
--- a/src/styles/components/_admonition.scss
+++ b/src/styles/components/_admonition.scss
@@ -2,13 +2,13 @@ html[data-theme='light'] {
--admonition-note-c-bg: var(--c-yellow-10);
--admonition-info-c-bg: var(--c-blue-0);
--admonition-tip-c-bg: var(--c-green-10);
- --admonition-caution-c-bg: var(--c-orange-10);
+ --admonition-warning-c-bg: var(--c-orange-10);
--admonition-danger-c-bg: var(--c-red-0);
--admonition-code-note-c-bg: var(--c-yellow-30);
--admonition-code-info-c-bg: var(--c-blue-10);
--admonition-code-tip-c-bg: var(--c-green-20);
- --admonition-code-caution-c-bg: var(--c-orange-20);
+ --admonition-code-warning-c-bg: var(--c-orange-20);
--admonition-code-danger-c-bg: var(--c-red-10);
}
@@ -16,13 +16,13 @@ html[data-theme='dark'] {
--admonition-note-c-bg: #241800;
--admonition-info-c-bg: #000d24;
--admonition-tip-c-bg: #00240a;
- --admonition-caution-c-bg: #240b00;
+ --admonition-warning-c-bg: #240b00;
--admonition-danger-c-bg: #240002;
--admonition-code-note-c-bg: #3d2900;
--admonition-code-info-c-bg: #00163d;
--admonition-code-tip-c-bg: #003d11;
- --admonition-code-caution-c-bg: #3d1200;
+ --admonition-code-warning-c-bg: #3d1200;
--admonition-code-danger-c-bg: #3d0003;
}
@@ -30,13 +30,13 @@ html[data-theme='dark'] {
--admonition-bar-note-c-bg: var(--c-yellow-80);
--admonition-bar-info-c-bg: var(--c-blue-80);
--admonition-bar-tip-c-bg: var(--c-green-80);
- --admonition-bar-caution-c-bg: var(--c-orange-80);
+ --admonition-bar-warning-c-bg: var(--c-orange-80);
--admonition-bar-danger-c-bg: var(--c-red-60);
--admonition-link-note-c: var(--c-yellow-90);
--admonition-link-info-c: var(--c-blue-90);
--admonition-link-tip-c: var(--c-green-90);
- --admonition-link-caution-c: var(--c-orange-90);
+ --admonition-link-warning-c: var(--c-orange-90);
--admonition-link-danger-c: var(--c-red-90);
}
@@ -101,11 +101,11 @@ html[data-theme='dark'] {
--admonition-code-c-bg: var(--admonition-code-tip-c-bg);
--admonition-link-c: var(--admonition-link-tip-c);
}
- &-caution {
- --ifm-alert-background-color: var(--admonition-caution-c-bg);
- --admonition-bar-c-bg: var(--admonition-bar-caution-c-bg);
- --admonition-code-c-bg: var(--admonition-code-caution-c-bg);
- --admonition-link-c: var(--admonition-link-caution-c);
+ &-warning {
+ --ifm-alert-background-color: var(--admonition-warning-c-bg);
+ --admonition-bar-c-bg: var(--admonition-bar-warning-c-bg);
+ --admonition-code-c-bg: var(--admonition-code-warning-c-bg);
+ --admonition-link-c: var(--admonition-link-warning-c);
}
&-danger {
--ifm-alert-background-color: var(--admonition-danger-c-bg);
diff --git a/src/styles/components/_doc-page.scss b/src/styles/components/_doc-root.scss
similarity index 91%
rename from src/styles/components/_doc-page.scss
rename to src/styles/components/_doc-root.scss
index c0f04ffd836..a7a57df67a3 100644
--- a/src/styles/components/_doc-page.scss
+++ b/src/styles/components/_doc-root.scss
@@ -12,7 +12,7 @@
}
}
- [class^='docPage_'] {
+ [class^='docRoot_'] {
> div {
flex-grow: 1;
min-width: 0;
diff --git a/src/styles/components/_navbar.scss b/src/styles/components/_navbar.scss
index 897d2b09e8a..ebb9364455a 100644
--- a/src/styles/components/_navbar.scss
+++ b/src/styles/components/_navbar.scss
@@ -236,7 +236,7 @@ html[data-theme='dark'] {
border: none;
- background: var(--ifm-menu-link-sublist-icon) 50% / 0.5rem 0.25rem;
+ background: var(--ifm-menu-link-sublist-icon) 50% / 0.5rem 0.3rem;
background-repeat: no-repeat;
min-width: 0.5rem;
diff --git a/src/styles/components/_search.scss b/src/styles/components/_search.scss
index d9b0617f965..12d9db38322 100644
--- a/src/styles/components/_search.scss
+++ b/src/styles/components/_search.scss
@@ -33,13 +33,13 @@ html[data-theme='dark'] {
//overrides
#__docusaurus {
- [class^='searchBox_'] {
+ [class^='navbarSearchContainer_'] {
flex-grow: 1;
max-width: 14rem;
}
@media (max-width: 996px) {
- [class^='searchBox_'] {
+ [class^='navbarSearchContainer_'] {
position: static;
right: initial;
}
diff --git a/src/styles/custom.scss b/src/styles/custom.scss
index ff779adfd82..b02baa35e86 100644
--- a/src/styles/custom.scss
+++ b/src/styles/custom.scss
@@ -11,7 +11,7 @@
@use './components/back-to-top-button';
@use './components/code';
@use './components/doc-item';
-@use './components/doc-page';
+@use './components/doc-root';
@use './components/doc-sidebar';
@use './components/edit-this-page';
@use './components/markdown';
@@ -153,15 +153,23 @@ iframe {
box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
}
-.git-link svg {
- height: 1em;
- width: 1em;
- vertical-align: -0.1em;
-}
-.git-link path {
- fill: currentColor;
+.git-link {
+ &::before {
+ content: '';
+ height: 1em;
+ width: 1em;
+ display: inline-block;
+ background-color: currentColor;
+ mask-repeat: no-repeat;
+ mask-position: center;
+ mask-size: 100% 100%;
+ mask-image: url(../../static/icons/code-branch.svg);
+ vertical-align: -0.1em;
+ margin-inline-end: 5px;
+ }
}
+
.cordova-ee-card {
max-width: 100%;
}
diff --git a/src/theme/DocPage/Layout/Main/index.tsx b/src/theme/DocRoot/Layout/Main/index.tsx
similarity index 82%
rename from src/theme/DocPage/Layout/Main/index.tsx
rename to src/theme/DocRoot/Layout/Main/index.tsx
index 593b2c2175b..980de526a1d 100644
--- a/src/theme/DocPage/Layout/Main/index.tsx
+++ b/src/theme/DocRoot/Layout/Main/index.tsx
@@ -6,10 +6,9 @@
*/
import React from 'react';
-import Main from '@theme-original/DocPage/Layout/Main';
-import type {Props} from '@theme/DocPage/Layout/Main';
-
+import Main from '@theme-original/DocRoot/Layout/Main';
import Navbar from '@theme/Navbar';
+import type {Props} from '@theme/DocRoot/Layout/Main';
export default function MainWrapper(props: Props): JSX.Element {
return (
diff --git a/src/theme/Layout/index.tsx b/src/theme/Layout/index.tsx
index d2333c5fd28..e9683b1c6ca 100644
--- a/src/theme/Layout/index.tsx
+++ b/src/theme/Layout/index.tsx
@@ -3,7 +3,7 @@
* @link https://github.com/facebook/docusaurus/blob/main/packages/docusaurus-theme-classic/src/theme/Layout/index.tsx
*
* Reason for overriding:
- * - Removed the navbar. It's been moved to the top of the docs page ({@link ../../DocPage/Layout/index.tsx}).
+ * - Removed the navbar. It's been moved to the top of the docs page ({@link ../../DocRoot/Layout/index.tsx}).
*/
import React from 'react';
diff --git a/static/icons/code-branch.svg b/static/icons/code-branch.svg
new file mode 100644
index 00000000000..22673402a92
--- /dev/null
+++ b/static/icons/code-branch.svg
@@ -0,0 +1,3 @@
+
diff --git a/tsconfig.json b/tsconfig.json
index e3204c051f9..a1617086e76 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,4 +1,4 @@
{
- "extends": "@tsconfig/docusaurus/tsconfig.json",
- "exclude": ["static/code/stackblitz/"]
+ "extends": "@docusaurus/tsconfig",
+ "exclude": ["static/code/stackblitz/"],
}
diff --git a/versioned_docs/version-v5/angular/your-first-app.md b/versioned_docs/version-v5/angular/your-first-app.md
index a44f9cab7dc..1ebc93eb9fe 100644
--- a/versioned_docs/version-v5/angular/your-first-app.md
+++ b/versioned_docs/version-v5/angular/your-first-app.md
@@ -12,9 +12,9 @@ Here’s the finished app running on all 3 platforms:
width="560"
height="315"
src="https://www.youtube.com/embed/0ASQ13Y1Rk4"
- frameborder="0"
+ frameBorder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
- allowfullscreen
+ allowFullScreen
>
:::note
diff --git a/versioned_docs/version-v5/components.md b/versioned_docs/version-v5/components.md
index 62596fd9eca..0c43dd0b021 100644
--- a/versioned_docs/version-v5/components.md
+++ b/versioned_docs/version-v5/components.md
@@ -42,9 +42,8 @@ Ionic apps are made of high-level building blocks called Components, which allow
-
- Cards are a great way to display an important piece of content, and can contain images, buttons, text, and more.
-
+
+ Cards are a great way to display an important piece of content, and can contain images, buttons, text, and more.
diff --git a/versioned_docs/version-v5/deployment/play-store.md b/versioned_docs/version-v5/deployment/play-store.md
index b1fb796ae13..c5715966928 100644
--- a/versioned_docs/version-v5/deployment/play-store.md
+++ b/versioned_docs/version-v5/deployment/play-store.md
@@ -26,7 +26,7 @@ keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg R
Once that command has been ran and its prompts have been answered a file called `my-release-key.keystore` will be created in the current directory.
-:::caution
+:::warning
Save this file and keep it somewhere safe. If it is lost the Google Play Store will not accept updates for this app!
:::
diff --git a/versioned_docs/version-v5/developer-resources/guides/first-app-v3/realtime-updates-ionic-deploy.md b/versioned_docs/version-v5/developer-resources/guides/first-app-v3/realtime-updates-ionic-deploy.md
index b33fb66ea8a..da6f9462ecc 100644
--- a/versioned_docs/version-v5/developer-resources/guides/first-app-v3/realtime-updates-ionic-deploy.md
+++ b/versioned_docs/version-v5/developer-resources/guides/first-app-v3/realtime-updates-ionic-deploy.md
@@ -101,11 +101,11 @@ Now comes the fun part: testing out the native app on your device! For iOS, the
src="https://fast.wistia.net/embed/iframe/s5v4fujv7w?videoFoam=true"
title="Wistia video player"
allowtransparency="true"
- frameborder="0"
+ frameBorder="0"
scrolling="no"
class="wistia_embed"
name="wistia_embed"
- allowfullscreen
+ allowFullScreen
mozallowfullscreen
webkitallowfullscreen
oallowfullscreen
@@ -130,11 +130,11 @@ In the upper right hand corner, click the Play button. Select your connected dev
src="https://fast.wistia.net/embed/iframe/b2ys5v4sno?videoFoam=true"
title="Wistia video player"
allowtransparency="true"
- frameborder="0"
+ frameBorder="0"
scrolling="no"
class="wistia_embed"
name="wistia_embed"
- allowfullscreen
+ allowFullScreen
mozallowfullscreen
webkitallowfullscreen
oallowfullscreen
diff --git a/versioned_docs/version-v5/developing/android.md b/versioned_docs/version-v5/developing/android.md
index 3b060bd0284..ebcfdd3e2de 100644
--- a/versioned_docs/version-v5/developing/android.md
+++ b/versioned_docs/version-v5/developing/android.md
@@ -112,14 +112,8 @@ If you are using any version of **`cordova-android`** below `10.0.0`, install th
### Gradle
-
- Gradle
- is the build tool used in Android apps and must be installed separately. See the
- install page
- for details.
+
+Gradle is the build tool used in Android apps and must be installed separately. See the install page for details.
## Project Setup
diff --git a/versioned_docs/version-v5/developing/ios.md b/versioned_docs/version-v5/developing/ios.md
index d20fd71d218..f9244962211 100644
--- a/versioned_docs/version-v5/developing/ios.md
+++ b/versioned_docs/version-v5/developing/ios.md
@@ -77,9 +77,8 @@ Before apps can be deployed to iOS simulators and devices, the native project mu
For Cordova, open the `config.xml` file and modify the `id` attribute of the root element, ``. See [the Cordova documentation](https://cordova.apache.org/docs/en/latest/config_ref/#widget) for more information.
-1.
- Open the project in Xcode.
-
+
+1. Open the project in Xcode.
For Capacitor, run the following to open the app in Xcode:
@@ -89,18 +88,13 @@ Before apps can be deployed to iOS simulators and devices, the native project mu
For Cordova, open Xcode. Use **File** » **Open** and locate the app. Open the app's `platforms/ios` directory.
-1.
- In Project navigator, select the project root to open the project editor. Under the **Identity** section,
- verify that the Package ID that was set matches the Bundle Identifier.
-
+
+1. In Project navigator, select the project root to open the project editor. Under the **Identity** section, verify that the Package ID that was set matches the Bundle Identifier.

-1.
- In the same project editor, under the Signing section, ensure Automatically manage signing is
- enabled.
- Then, select a Development Team. Given a Development Team, Xcode will attempt to automatically prepare provisioning
- and signing.
+
+1. In the same project editor, under the Signing section, ensure Automatically manage signing is enabled. Then, select a Development Team. Given a Development Team, Xcode will attempt to automatically prepare provisioning and signing.

@@ -134,7 +128,7 @@ The Ionic CLI can build, copy, and deploy Ionic apps to iOS simulators and devic
With live-reload, changes made to the app's source files trigger a rebuild of web assets and the changes are reflected on the simulator or device without having to deploy again.
-:::caution
+:::warning
For iOS devices, the device and the computer need to be on the same Wi-Fi network. An external URL for the dev server is also required so the device can connect to it. Use `--external` (or `--host=0.0.0.0`) to bind to external addresses.
:::
diff --git a/versioned_docs/version-v5/index.md b/versioned_docs/version-v5/index.md
index 30798c43d16..53e6f39a030 100644
--- a/versioned_docs/version-v5/index.md
+++ b/versioned_docs/version-v5/index.md
@@ -128,20 +128,13 @@ Ionic Framework is actively developed and maintained full-time by a core team, a
### Join the Community
-There are millions of Ionic developers in over 200 countries worldwide. Here are some ways to join:
-
--
- Forum:
- A great place for asking questions and sharing ideas.
--
- Twitter:
- Where we post updates and share content from the Ionic community.
--
- GitHub:
- For reporting bugs or requesting new features, create an issue here. PRs welcome!
--
- Content authoring:
- Write a technical blog or share your story with the Ionic community.
+There are millions of Ionic developers in o ver 200 countries worldwide. Here are some ways to join:
+
+
+- Forum: A great place for asking questions and sharing ideas.
+- Twitter: Where we post updates and share content from the Ionic community.
+- GitHub: For reporting bugs or requesting new features, create an issue here. PRs welcome!
+- Content authoring: Write a technical blog or share your story with the Ionic community.
## License
diff --git a/versioned_docs/version-v5/native.md b/versioned_docs/version-v5/native.md
index 33b13362d24..7d2c5e52b89 100644
--- a/versioned_docs/version-v5/native.md
+++ b/versioned_docs/version-v5/native.md
@@ -33,16 +33,12 @@ Build native-powered app experiences with a collection of open source and premiu
-
- A modern, open source native runtime built and maintained by the Ionic team and the Capacitor community. Our
- recommended native solution.
-
+
+ A modern, open source native runtime built and maintained by the Ionic team and the Capacitor community. Our recommended native solution.
-
- A collection of free Cordova plugins, built and maintained by the community, with TypeScript wrappers and a
- consistent API and naming convention.
-
+
+ A collection of free Cordova plugins, built and maintained by the community, with TypeScript wrappers and a consistent API and naming convention.
diff --git a/versioned_docs/version-v5/native/abbyy-rtr.md b/versioned_docs/version-v5/native/abbyy-rtr.md
index 40711028f9a..0aef215889b 100644
--- a/versioned_docs/version-v5/native/abbyy-rtr.md
+++ b/versioned_docs/version-v5/native/abbyy-rtr.md
@@ -14,12 +14,7 @@ This plugin allows to use the Text Capture and Data Capture features of
ABBYY Real-Time Recognition SDK (RTR SDK) in apps.
-
- {' '}
- https://github.com/abbyysdk/RTR-SDK.Cordova
-
+ github.com/abbyysdk/RTR-SDK.Cordova
Stuck on a Cordova issue?
@@ -29,11 +24,8 @@ ABBYY Real-Time Recognition SDK (RTR SDK) in apps.
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -65,14 +57,7 @@ ABBYY Real-Time Recognition SDK (RTR SDK) in apps.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/action-sheet.md b/versioned_docs/version-v5/native/action-sheet.md
index f5c874965cd..cbc5d6a85e5 100644
--- a/versioned_docs/version-v5/native/action-sheet.md
+++ b/versioned_docs/version-v5/native/action-sheet.md
@@ -15,17 +15,7 @@ The ActionSheet plugin shows a native list of options the user can choose from.
Requires Cordova plugin: `cordova-plugin-actionsheet`. For more info, please see the [ActionSheet plugin docs](https://github.com/EddyVerbruggen/cordova-plugin-actionsheet).
-
- {' '}
- https://github.com/EddyVerbruggen/cordova-plugin-actionsheet
-
+ github.com/EddyVerbruggen/cordova-plugin-actionsheet
Stuck on a Cordova issue?
@@ -35,11 +25,8 @@ Requires Cordova plugin: `cordova-plugin-actionsheet`. For more info, please see
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -71,14 +58,7 @@ Requires Cordova plugin: `cordova-plugin-actionsheet`. For more info, please see
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/adjust.md b/versioned_docs/version-v5/native/adjust.md
index b6bbda06c79..34932afb300 100644
--- a/versioned_docs/version-v5/native/adjust.md
+++ b/versioned_docs/version-v5/native/adjust.md
@@ -15,12 +15,7 @@ This is the Ionic Cordova SDK of Adjust™. You can read more about Adjust™ at
Requires Cordova plugin: `com.adjust.sdk`. For more info, please see the [Adjust Cordova SDK](https://github.com/adjust/cordova_sdk)
-
- {' '}
- https://github.com/adjust/cordova_sdk
-
+ github.com/adjust/cordova_sdk
Stuck on a Cordova issue?
@@ -30,11 +25,8 @@ Requires Cordova plugin: `com.adjust.sdk`. For more info, please see the [Adjust
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -64,14 +56,7 @@ Requires Cordova plugin: `com.adjust.sdk`. For more info, please see the [Adjust
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/admob-plus.md b/versioned_docs/version-v5/native/admob-plus.md
index a288da3f672..0090d2c7353 100644
--- a/versioned_docs/version-v5/native/admob-plus.md
+++ b/versioned_docs/version-v5/native/admob-plus.md
@@ -13,12 +13,7 @@ import CodeBlock from '@theme/CodeBlock';
AdMob Plus is the successor of cordova-plugin-admob-free, which provides a cleaner API and build with modern tools.
-
- {' '}
- https://github.com/admob-plus/admob-plus
-
+ github.com/admob-plus/admob-plus
Stuck on a Cordova issue?
@@ -28,11 +23,8 @@ AdMob Plus is the successor of cordova-plugin-admob-free, which provides a clean
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -62,14 +54,7 @@ AdMob Plus is the successor of cordova-plugin-admob-free, which provides a clean
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/admob.md b/versioned_docs/version-v5/native/admob.md
index fd2a295760b..c3baec8fa0b 100644
--- a/versioned_docs/version-v5/native/admob.md
+++ b/versioned_docs/version-v5/native/admob.md
@@ -21,12 +21,7 @@ Monetize your apps and games with AdMob ads, using latest Google AdMob SDK. With
- [Tappx](http://www.tappx.com/?h=dec334d63287772de859bdb4e977fce6) ads
-
- {' '}
- https://github.com/appfeel/admob-google-cordova
-
+ github.com/appfeel/admob-google-cordova
Stuck on a Cordova issue?
@@ -36,11 +31,8 @@ Monetize your apps and games with AdMob ads, using latest Google AdMob SDK. With
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -70,14 +62,7 @@ Monetize your apps and games with AdMob ads, using latest Google AdMob SDK. With
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/aes-256.md b/versioned_docs/version-v5/native/aes-256.md
index 779b205a568..74f2598bd00 100644
--- a/versioned_docs/version-v5/native/aes-256.md
+++ b/versioned_docs/version-v5/native/aes-256.md
@@ -15,12 +15,7 @@ It's a cross-platform plugin which supports both Android and iOS.
The encryption and decryption are performed on the device native layer so that the performance is much faster.
-
- {' '}
- https://github.com/Ideas2IT/cordova-aes256
-
+ github.com/Ideas2IT/cordova-aes256
Stuck on a Cordova issue?
@@ -30,11 +25,8 @@ The encryption and decryption are performed on the device native layer so that t
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -66,14 +58,7 @@ The encryption and decryption are performed on the device native layer so that t
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/all-in-one-sdk.md b/versioned_docs/version-v5/native/all-in-one-sdk.md
index 6dfb2c7b682..4b84c03b674 100644
--- a/versioned_docs/version-v5/native/all-in-one-sdk.md
+++ b/versioned_docs/version-v5/native/all-in-one-sdk.md
@@ -16,17 +16,7 @@ Paytm All-in-One SDK enables payment acceptance via Paytm wallet, Paytm Payments
For more information about Paytm All-in-One SDK, please visit https://developer.paytm.com/docs/all-in-one-sdk/hybrid-apps/cordova/
-
- {' '}
- https://github.com/paytm/paytm-allinonesdk-ionic-cordova.git
-
+ github.com/paytm/paytm-allinonesdk-ionic-cordova.git
Stuck on a Cordova issue?
@@ -36,11 +26,8 @@ For more information about Paytm All-in-One SDK, please visit https://developer.
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -72,14 +59,7 @@ For more information about Paytm All-in-One SDK, please visit https://developer.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/analytics-firebase.md b/versioned_docs/version-v5/native/analytics-firebase.md
index cde93bc783a..843d78cceb1 100644
--- a/versioned_docs/version-v5/native/analytics-firebase.md
+++ b/versioned_docs/version-v5/native/analytics-firebase.md
@@ -13,12 +13,7 @@ import CodeBlock from '@theme/CodeBlock';
Google Analytics Firebase plugin for Ionic Native apps.
-
- {' '}
- https://github.com/appfeel/analytics-google
-
+ github.com/appfeel/analytics-google
Stuck on a Cordova issue?
@@ -28,11 +23,8 @@ Google Analytics Firebase plugin for Ionic Native apps.
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -64,14 +56,7 @@ Google Analytics Firebase plugin for Ionic Native apps.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/android-exoplayer.md b/versioned_docs/version-v5/native/android-exoplayer.md
index 25bcd1edcd9..c41eda47fce 100644
--- a/versioned_docs/version-v5/native/android-exoplayer.md
+++ b/versioned_docs/version-v5/native/android-exoplayer.md
@@ -15,12 +15,7 @@ Cordova media player plugin using Google's ExoPlayer framework.
https://github.com/google/ExoPlayer
-
- {' '}
- https://github.com/frontyard/cordova-plugin-exoplayer
-
+ github.com/frontyard/cordova-plugin-exoplayer
Stuck on a Cordova issue?
@@ -30,11 +25,8 @@ https://github.com/google/ExoPlayer
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -66,14 +58,7 @@ https://github.com/google/ExoPlayer
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/android-full-screen.md b/versioned_docs/version-v5/native/android-full-screen.md
index e5bb778c0a0..beeb4114bfc 100644
--- a/versioned_docs/version-v5/native/android-full-screen.md
+++ b/versioned_docs/version-v5/native/android-full-screen.md
@@ -15,17 +15,7 @@ Using Android 4.0+, you can use true full screen in "lean mode", the way you see
In Android 4.4+, however, you can now enter true full screen, fully interactive immersive mode. In this mode, your app will remain in true full screen until you choose otherwise; users can swipe down from the top of the screen to temporarily display the system UI.
-
- {' '}
- https://github.com/mesmotronic/cordova-plugin-fullscreen
-
+ github.com/mesmotronic/cordova-plugin-fullscreen
Stuck on a Cordova issue?
@@ -35,11 +25,8 @@ In Android 4.4+, however, you can now enter true full screen, fully interactive
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -71,14 +58,7 @@ In Android 4.4+, however, you can now enter true full screen, fully interactive
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/android-notch.md b/versioned_docs/version-v5/native/android-notch.md
index d362ccb9187..c2b9d80df5d 100644
--- a/versioned_docs/version-v5/native/android-notch.md
+++ b/versioned_docs/version-v5/native/android-notch.md
@@ -15,17 +15,7 @@ It is based on the cordova plugin developed by @tobspr: https://github.com/tobsp
This plugin works on all android versions, but we can only detect notches starting from Android 9.
-
- {' '}
- https://github.com/tobspr/cordova-plugin-android-notch.git
-
+ github.com/tobspr/cordova-plugin-android-notch.git
Stuck on a Cordova issue?
@@ -35,11 +25,8 @@ This plugin works on all android versions, but we can only detect notches starti
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -71,14 +58,7 @@ This plugin works on all android versions, but we can only detect notches starti
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/android-permissions.md b/versioned_docs/version-v5/native/android-permissions.md
index 8fcaec415b9..cc6cd9a49d0 100644
--- a/versioned_docs/version-v5/native/android-permissions.md
+++ b/versioned_docs/version-v5/native/android-permissions.md
@@ -17,17 +17,7 @@ This plugin is designed to support Android new permissions checking mechanism.
You can find all permissions here: https://developer.android.com/reference/android/Manifest.permission.html
-
- {' '}
- https://github.com/NeoLSN/cordova-plugin-android-permissions
-
+ github.com/NeoLSN/cordova-plugin-android-permissions
Stuck on a Cordova issue?
@@ -37,11 +27,8 @@ You can find all permissions here: https://developer.android.com/reference/andro
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -73,14 +60,7 @@ You can find all permissions here: https://developer.android.com/reference/andro
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/anyline.md b/versioned_docs/version-v5/native/anyline.md
index b4d66a84feb..bc9ec166ba3 100644
--- a/versioned_docs/version-v5/native/anyline.md
+++ b/versioned_docs/version-v5/native/anyline.md
@@ -13,12 +13,7 @@ import CodeBlock from '@theme/CodeBlock';
Anyline provides an easy-to-use SDK for applications to enable Optical Character Recognition (OCR) on mobile devices.
-
- {' '}
- https://github.com/Anyline/anyline-ocr-cordova-module
-
+ github.com/Anyline/anyline-ocr-cordova-module
Stuck on a Cordova issue?
@@ -28,11 +23,8 @@ Anyline provides an easy-to-use SDK for applications to enable Optical Character
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -62,14 +54,7 @@ Anyline provides an easy-to-use SDK for applications to enable Optical Character
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/app-availability.md b/versioned_docs/version-v5/native/app-availability.md
index a0db035ac39..cdd3e6cc5b6 100644
--- a/versioned_docs/version-v5/native/app-availability.md
+++ b/versioned_docs/version-v5/native/app-availability.md
@@ -15,12 +15,7 @@ This plugin allows you to check if an app is installed on the user's device. It
Requires Cordova plugin: cordova-plugin-appavailability. For more info, please see the [AppAvailability plugin docs](https://github.com/ohh2ahh/AppAvailability).
-
- {' '}
- https://github.com/ohh2ahh/AppAvailability
-
+ github.com/ohh2ahh/AppAvailability
Stuck on a Cordova issue?
@@ -30,11 +25,8 @@ Requires Cordova plugin: cordova-plugin-appavailability. For more info, please s
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -66,14 +58,7 @@ Requires Cordova plugin: cordova-plugin-appavailability. For more info, please s
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/app-center-analytics.md b/versioned_docs/version-v5/native/app-center-analytics.md
index 666d0cb4502..c5751de0cd7 100644
--- a/versioned_docs/version-v5/native/app-center-analytics.md
+++ b/versioned_docs/version-v5/native/app-center-analytics.md
@@ -18,17 +18,7 @@ All the information captured is available in the App Center portal for you to an
For more info, please see https://docs.microsoft.com/en-us/appcenter/sdk/analytics/cordova
-
- {' '}
- https://github.com/Microsoft/appcenter-sdk-cordova/tree/master/cordova-plugin-appcenter-analytics
-
+ github.com/Microsoft/appcenter-sdk-cordova/tree/master/cordova-plugin-appcenter-analytics
Stuck on a Cordova issue?
@@ -38,11 +28,8 @@ For more info, please see https://docs.microsoft.com/en-us/appcenter/sdk/analyti
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -74,14 +61,7 @@ For more info, please see https://docs.microsoft.com/en-us/appcenter/sdk/analyti
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/app-center-crashes.md b/versioned_docs/version-v5/native/app-center-crashes.md
index 6c0080fac73..8aca0878212 100644
--- a/versioned_docs/version-v5/native/app-center-crashes.md
+++ b/versioned_docs/version-v5/native/app-center-crashes.md
@@ -18,17 +18,7 @@ All the information captured is available in the App Center portal for you to an
For more info, please see https://docs.microsoft.com/en-us/appcenter/sdk/crashes/cordova
-
- {' '}
- https://github.com/Microsoft/appcenter-sdk-cordova/tree/master/cordova-plugin-appcenter-crashes
-
+ github.com/Microsoft/appcenter-sdk-cordova/tree/master/cordova-plugin-appcenter-crashes
Stuck on a Cordova issue?
@@ -38,11 +28,8 @@ For more info, please see https://docs.microsoft.com/en-us/appcenter/sdk/crashes
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -74,14 +61,7 @@ For more info, please see https://docs.microsoft.com/en-us/appcenter/sdk/crashes
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/app-center-push.md b/versioned_docs/version-v5/native/app-center-push.md
index 0fd67610957..6c13119c665 100644
--- a/versioned_docs/version-v5/native/app-center-push.md
+++ b/versioned_docs/version-v5/native/app-center-push.md
@@ -13,17 +13,7 @@ import CodeBlock from '@theme/CodeBlock';
For more info, please see https://docs.microsoft.com/en-us/appcenter/sdk/push/cordova
-
- {' '}
- https://github.com/Microsoft/appcenter-sdk-cordova/tree/master/cordova-plugin-appcenter-push
-
+ github.com/Microsoft/appcenter-sdk-cordova/tree/master/cordova-plugin-appcenter-push
Stuck on a Cordova issue?
@@ -33,11 +23,8 @@ For more info, please see https://docs.microsoft.com/en-us/appcenter/sdk/push/co
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -69,14 +56,7 @@ For more info, please see https://docs.microsoft.com/en-us/appcenter/sdk/push/co
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/app-preferences.md b/versioned_docs/version-v5/native/app-preferences.md
index 0991b665444..2f9b36f18a9 100644
--- a/versioned_docs/version-v5/native/app-preferences.md
+++ b/versioned_docs/version-v5/native/app-preferences.md
@@ -13,12 +13,7 @@ import CodeBlock from '@theme/CodeBlock';
This plugin allows you to read and write app preferences
-
- {' '}
- https://github.com/apla/me.apla.cordova.app-preferences
-
+ github.com/apla/me.apla.cordova.app-preferences
Stuck on a Cordova issue?
@@ -28,11 +23,8 @@ This plugin allows you to read and write app preferences
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -64,14 +56,7 @@ This plugin allows you to read and write app preferences
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/app-rate.md b/versioned_docs/version-v5/native/app-rate.md
index 197936cb26e..a48f696c168 100644
--- a/versioned_docs/version-v5/native/app-rate.md
+++ b/versioned_docs/version-v5/native/app-rate.md
@@ -15,12 +15,7 @@ The AppRate plugin makes it easy to prompt the user to rate your app, either now
Requires Cordova plugin: cordova-plugin-apprate. For more info, please see the [AppRate plugin docs](https://github.com/pushandplay/cordova-plugin-apprate).
-
- {' '}
- https://github.com/pushandplay/cordova-plugin-apprate
-
+ github.com/pushandplay/cordova-plugin-apprate
Stuck on a Cordova issue?
@@ -30,11 +25,8 @@ Requires Cordova plugin: cordova-plugin-apprate. For more info, please see the [
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -64,14 +56,7 @@ Requires Cordova plugin: cordova-plugin-apprate. For more info, please see the [
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/app-version.md b/versioned_docs/version-v5/native/app-version.md
index ac21f93dada..2a218f41f02 100644
--- a/versioned_docs/version-v5/native/app-version.md
+++ b/versioned_docs/version-v5/native/app-version.md
@@ -17,17 +17,7 @@ Reads the version of your app from the target build settings.
Requires Cordova plugin: `cordova-plugin-app-version`. For more info, please see the [Cordova App Version docs](https://github.com/whiteoctober/cordova-plugin-app-version).
-
- {' '}
- https://github.com/whiteoctober/cordova-plugin-app-version
-
+ github.com/whiteoctober/cordova-plugin-app-version
Stuck on a Cordova issue?
@@ -37,11 +27,8 @@ Requires Cordova plugin: `cordova-plugin-app-version`. For more info, please see
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -73,14 +60,7 @@ Requires Cordova plugin: `cordova-plugin-app-version`. For more info, please see
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/apple-wallet.md b/versioned_docs/version-v5/native/apple-wallet.md
index 8fe152ebabc..eacca30f4e2 100644
--- a/versioned_docs/version-v5/native/apple-wallet.md
+++ b/versioned_docs/version-v5/native/apple-wallet.md
@@ -13,12 +13,7 @@ import CodeBlock from '@theme/CodeBlock';
A Cordova plugin that enables users from Add Payment Cards to their Apple Wallet.
-
- {' '}
- https://github.com/tomavic/cordova-apple-wallet
-
+ /github.com/tomavic/cordova-apple-wallet
Stuck on a Cordova issue?
@@ -28,11 +23,8 @@ A Cordova plugin that enables users from Add Payment Cards to their Apple Wallet
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -63,14 +55,7 @@ A Cordova plugin that enables users from Add Payment Cards to their Apple Wallet
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/appsflyer.md b/versioned_docs/version-v5/native/appsflyer.md
index 2464f8008ca..5f72f054a88 100644
--- a/versioned_docs/version-v5/native/appsflyer.md
+++ b/versioned_docs/version-v5/native/appsflyer.md
@@ -13,17 +13,7 @@ import CodeBlock from '@theme/CodeBlock';
Appsflyer Cordova SDK support for Attribution
-
- {' '}
- https://github.com/AppsFlyerSDK/cordova-plugin-appsflyer-sdk
-
+ github.com/AppsFlyerSDK/cordova-plugin-appsflyer-sdk
Stuck on a Cordova issue?
@@ -33,11 +23,8 @@ Appsflyer Cordova SDK support for Attribution
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -69,14 +56,7 @@ Appsflyer Cordova SDK support for Attribution
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/background-fetch.md b/versioned_docs/version-v5/native/background-fetch.md
index 1090feb0d6d..0003192291d 100644
--- a/versioned_docs/version-v5/native/background-fetch.md
+++ b/versioned_docs/version-v5/native/background-fetch.md
@@ -14,17 +14,7 @@ iOS Background Fetch is basically an API which wakes up your app about every 15
For more detail, please see https://github.com/transistorsoft/cordova-plugin-background-fetch
-
- {' '}
- https://github.com/transistorsoft/cordova-plugin-background-fetch
-
+ github.com/transistorsoft/cordova-plugin-background-fetch
Stuck on a Cordova issue?
@@ -34,11 +24,8 @@ For more detail, please see https://github.com/transistorsoft/cordova-plugin-bac
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -71,14 +58,7 @@ For more detail, please see https://github.com/transistorsoft/cordova-plugin-bac
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/background-geolocation.md b/versioned_docs/version-v5/native/background-geolocation.md
index ea6175269cd..e2e68558b85 100644
--- a/versioned_docs/version-v5/native/background-geolocation.md
+++ b/versioned_docs/version-v5/native/background-geolocation.md
@@ -16,17 +16,7 @@ This plugin provides foreground and background geolocation with battery-saving "
more detail, please see https://github.com/mauron85/cordova-plugin-background-geolocation
-
- {' '}
- https://github.com/mauron85/cordova-plugin-background-geolocation
-
+ github.com/mauron85/cordova-plugin-background-geolocation
Stuck on a Cordova issue?
@@ -36,11 +26,8 @@ more detail, please see https://github.com/mauron85/cordova-plugin-background-ge
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -72,14 +59,7 @@ more detail, please see https://github.com/mauron85/cordova-plugin-background-ge
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/background-mode.md b/versioned_docs/version-v5/native/background-mode.md
index 93f0ad8f900..ad0458a0460 100644
--- a/versioned_docs/version-v5/native/background-mode.md
+++ b/versioned_docs/version-v5/native/background-mode.md
@@ -16,17 +16,7 @@ Cordova plugin to prevent the app from going to sleep while in background.
Requires Cordova plugin: cordova-plugin-background-mode. For more info about plugin, visit: https://github.com/katzer/cordova-plugin-background-mode
-
- {' '}
- https://github.com/katzer/cordova-plugin-background-mode
-
+ github.com/katzer/cordova-plugin-background-mode
Stuck on a Cordova issue?
@@ -36,11 +26,8 @@ Requires Cordova plugin: cordova-plugin-background-mode. For more info about plu
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -72,14 +59,7 @@ Requires Cordova plugin: cordova-plugin-background-mode. For more info about plu
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/background-upload.md b/versioned_docs/version-v5/native/background-upload.md
index 0f1aa687b72..396b8c62271 100644
--- a/versioned_docs/version-v5/native/background-upload.md
+++ b/versioned_docs/version-v5/native/background-upload.md
@@ -13,17 +13,7 @@ import CodeBlock from '@theme/CodeBlock';
This plugin does something
-
- {' '}
- https://github.com/spoonconsulting/cordova-plugin-background-upload
-
+ github.com/spoonconsulting/cordova-plugin-background-upload
Stuck on a Cordova issue?
@@ -33,11 +23,8 @@ This plugin does something
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -69,14 +56,7 @@ This plugin does something
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/badge.md b/versioned_docs/version-v5/native/badge.md
index 6207c124356..d2cfc105b13 100644
--- a/versioned_docs/version-v5/native/badge.md
+++ b/versioned_docs/version-v5/native/badge.md
@@ -17,12 +17,7 @@ Requires Cordova plugin: cordova-plugin-badge. For more info, please see the [Ba
Android Note: Badges have historically only been a feature implemented by third party launchers and not visible unless one of those launchers was being used (E.G. Samsung or Nova Launcher) and if enabled by the user. As of Android 8 (Oreo), [notification badges](https://developer.android.com/training/notify-user/badges) were introduced officially to reflect unread notifications. This plugin is unlikely to work as expected on devices running Android 8 or newer. Please see the [local notifications plugin docs](https://github.com/katzer/cordova-plugin-local-notifications) for more information on badge use with notifications.
-
- {' '}
- https://github.com/katzer/cordova-plugin-badge
-
+ github.com/katzer/cordova-plugin-badge
Stuck on a Cordova issue?
@@ -32,11 +27,8 @@ Android Note: Badges have historically only been a feature implemented by third
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -66,14 +58,7 @@ Android Note: Badges have historically only been a feature implemented by third
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/barcode-scanner.md b/versioned_docs/version-v5/native/barcode-scanner.md
index 9dbccc0d3a1..fcd96c75e32 100644
--- a/versioned_docs/version-v5/native/barcode-scanner.md
+++ b/versioned_docs/version-v5/native/barcode-scanner.md
@@ -17,17 +17,7 @@ The Barcode Scanner Plugin opens a camera view and automatically scans a barcode
Requires Cordova plugin: `phonegap-plugin-barcodescanner`. For more info, please see the [BarcodeScanner plugin docs](https://github.com/phonegap/phonegap-plugin-barcodescanner).
-
- {' '}
- https://github.com/phonegap/phonegap-plugin-barcodescanner
-
+ github.com/phonegap/phonegap-plugin-barcodescanner
Stuck on a Cordova issue?
@@ -37,11 +27,8 @@ Requires Cordova plugin: `phonegap-plugin-barcodescanner`. For more info, please
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -73,14 +60,7 @@ Requires Cordova plugin: `phonegap-plugin-barcodescanner`. For more info, please
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/battery-status.md b/versioned_docs/version-v5/native/battery-status.md
index bfb9b5deaf2..a141bf03f84 100644
--- a/versioned_docs/version-v5/native/battery-status.md
+++ b/versioned_docs/version-v5/native/battery-status.md
@@ -13,12 +13,7 @@ import CodeBlock from '@theme/CodeBlock';
Requires Cordova plugin: cordova-plugin-batterystatus. For more info, please see the [BatteryStatus plugin docs](https://github.com/apache/cordova-plugin-battery-status).
-
- {' '}
- https://github.com/apache/cordova-plugin-battery-status
-
+ github.com/apache/cordova-plugin-battery-status
Stuck on a Cordova issue?
@@ -28,11 +23,8 @@ Requires Cordova plugin: cordova-plugin-batterystatus. For more info, please see
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -64,14 +56,7 @@ Requires Cordova plugin: cordova-plugin-batterystatus. For more info, please see
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/biocatch.md b/versioned_docs/version-v5/native/biocatch.md
index c1af0bb895e..98813df1bf8 100644
--- a/versioned_docs/version-v5/native/biocatch.md
+++ b/versioned_docs/version-v5/native/biocatch.md
@@ -13,12 +13,7 @@ import CodeBlock from '@theme/CodeBlock';
BioCatch SDK Cordova support
-
- {' '}
- https://bitbucket.org/carlos_orellana/ionic-plugin
-
+ bitbucket.org/carlos_orellana/ionic-plugin
Stuck on a Cordova issue?
@@ -28,11 +23,8 @@ BioCatch SDK Cordova support
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -62,14 +54,7 @@ BioCatch SDK Cordova support
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/biometric-wrapper.md b/versioned_docs/version-v5/native/biometric-wrapper.md
index c67839505ce..d8561965fd1 100644
--- a/versioned_docs/version-v5/native/biometric-wrapper.md
+++ b/versioned_docs/version-v5/native/biometric-wrapper.md
@@ -13,14 +13,6 @@ import CodeBlock from '@theme/CodeBlock';
This plugin capture biometric(Iris and Fingerprint) and validate the user.
May be used in Banking domain
-
-
-
-
-
-
Stuck on a Cordova issue?
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -64,14 +53,7 @@ May be used in Banking domain
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/ble.md b/versioned_docs/version-v5/native/ble.md
index ad533810383..91dba27963f 100644
--- a/versioned_docs/version-v5/native/ble.md
+++ b/versioned_docs/version-v5/native/ble.md
@@ -25,12 +25,7 @@ Advertising information is returned when scanning for peripherals. Service, char
Simultaneous connections to multiple peripherals are supported.
-
- {' '}
- https://github.com/don/cordova-plugin-ble-central
-
+ github.com/don/
Stuck on a Cordova issue?
@@ -40,11 +35,8 @@ Simultaneous connections to multiple peripherals are supported.
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -74,14 +66,7 @@ Simultaneous connections to multiple peripherals are supported.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/blinkid.md b/versioned_docs/version-v5/native/blinkid.md
index 7262a31efd8..7435676b923 100644
--- a/versioned_docs/version-v5/native/blinkid.md
+++ b/versioned_docs/version-v5/native/blinkid.md
@@ -14,12 +14,7 @@ Microblink SDK wrapper for barcode and document scanning. See the
blinkid-phonegap repository for available recognizers and other settings
-
- {' '}
- https://github.com/BlinkID/blinkid-phonegap
-
+ github.com/BlinkID/blinkid-phonegap
Stuck on a Cordova issue?
@@ -29,11 +24,8 @@ blinkid-phonegap repository for available recognizers and other settings
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -63,14 +55,7 @@ blinkid-phonegap repository for available recognizers and other settings
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/bluetooth-le.md b/versioned_docs/version-v5/native/bluetooth-le.md
index 01af7c5c01a..d5571ea55b3 100644
--- a/versioned_docs/version-v5/native/bluetooth-le.md
+++ b/versioned_docs/version-v5/native/bluetooth-le.md
@@ -15,17 +15,7 @@ It's a wrap around [randdusing/cordova-plugin-bluetoothle](https://github.com/ra
It supports peripheral **and** central modes and covers most of the API methods available on Android and iOS.
-
- {' '}
- https://github.com/randdusing/cordova-plugin-bluetoothle
-
+ github.com/randdusing/cordova-plugin-bluetoothle
Stuck on a Cordova issue?
@@ -35,11 +25,8 @@ It supports peripheral **and** central modes and covers most of the API methods
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -71,14 +58,7 @@ It supports peripheral **and** central modes and covers most of the API methods
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/bluetooth-serial.md b/versioned_docs/version-v5/native/bluetooth-serial.md
index 61b9dcd6b42..67dec208e3c 100644
--- a/versioned_docs/version-v5/native/bluetooth-serial.md
+++ b/versioned_docs/version-v5/native/bluetooth-serial.md
@@ -12,12 +12,7 @@ import TabItem from '@theme/TabItem';
This plugin enables serial communication over Bluetooth. It was written for communicating between Android or iOS and an Arduino (not Android to Android or iOS to iOS).
-
- {' '}
- https://github.com/don/BluetoothSerial
-
+ github.com/don/BluetoothSerial
Stuck on a Cordova issue?
@@ -27,11 +22,8 @@ This plugin enables serial communication over Bluetooth. It was written for comm
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -64,14 +56,7 @@ This plugin enables serial communication over Bluetooth. It was written for comm
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/branch-io.md b/versioned_docs/version-v5/native/branch-io.md
index 01dbef02e61..4581e78ac9a 100644
--- a/versioned_docs/version-v5/native/branch-io.md
+++ b/versioned_docs/version-v5/native/branch-io.md
@@ -13,17 +13,7 @@ import CodeBlock from '@theme/CodeBlock';
Branch.io is an attribution service for deeplinking and invitation links
-
- {' '}
- https://github.com/BranchMetrics/cordova-ionic-phonegap-branch-deep-linking
-
+ github.com/BranchMetrics/cordova-ionic-phonegap-branch-deep-linking
Stuck on a Cordova issue?
@@ -33,11 +23,8 @@ Branch.io is an attribution service for deeplinking and invitation links
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -67,14 +54,7 @@ Branch.io is an attribution service for deeplinking and invitation links
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/broadcaster.md b/versioned_docs/version-v5/native/broadcaster.md
index ee39354ad89..a689afcf90c 100644
--- a/versioned_docs/version-v5/native/broadcaster.md
+++ b/versioned_docs/version-v5/native/broadcaster.md
@@ -13,12 +13,7 @@ import CodeBlock from '@theme/CodeBlock';
This plugin adds exchanging events between native code and your app.
-
- {' '}
- https://github.com/bsorrentino/cordova-broadcaster
-
+ github.com/bsorrentino/cordova-broadcaster
Stuck on a Cordova issue?
@@ -28,11 +23,8 @@ This plugin adds exchanging events between native code and your app.
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -64,14 +56,7 @@ This plugin adds exchanging events between native code and your app.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/build-info.md b/versioned_docs/version-v5/native/build-info.md
index 4272dbfa5aa..fcefd3eadc4 100644
--- a/versioned_docs/version-v5/native/build-info.md
+++ b/versioned_docs/version-v5/native/build-info.md
@@ -13,12 +13,7 @@ import CodeBlock from '@theme/CodeBlock';
This plugin provides build information.
-
- {' '}
- https://github.com/lynrin/cordova-plugin-buildinfo
-
+ github.com/lynrin/cordova-plugin-buildinfo
Stuck on a Cordova issue?
@@ -28,11 +23,8 @@ This plugin provides build information.
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -63,14 +55,7 @@ This plugin provides build information.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/calendar.md b/versioned_docs/version-v5/native/calendar.md
index 99e5655b321..edf994e1843 100644
--- a/versioned_docs/version-v5/native/calendar.md
+++ b/versioned_docs/version-v5/native/calendar.md
@@ -17,17 +17,7 @@ This plugin allows you to add events to the Calendar of the mobile device.
Requires Cordova plugin: `cordova-plugin-calendar`. For more info, please see the [Calendar plugin docs](https://github.com/EddyVerbruggen/Calendar-PhoneGap-Plugin).
-
- {' '}
- https://github.com/EddyVerbruggen/Calendar-PhoneGap-Plugin
-
+ github.com/EddyVerbruggen/Calendar-PhoneGap-Plugin
Stuck on a Cordova issue?
@@ -37,11 +27,8 @@ Requires Cordova plugin: `cordova-plugin-calendar`. For more info, please see th
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -71,14 +58,7 @@ Requires Cordova plugin: `cordova-plugin-calendar`. For more info, please see th
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/call-directory.md b/versioned_docs/version-v5/native/call-directory.md
index 15c91410878..6117296e998 100644
--- a/versioned_docs/version-v5/native/call-directory.md
+++ b/versioned_docs/version-v5/native/call-directory.md
@@ -14,17 +14,7 @@ This plugin can add phone numbers to an Callkit call directory extension. Call `
to process the changes in the call directory extension.
-
- {' '}
- https://github.com/GEDYSIntraWare/cordova-plugin-call-directory
-
+ github.com/GEDYSIntraWare/cordova-plugin-call-directory
Stuck on a Cordova issue?
@@ -34,11 +24,8 @@ to process the changes in the call directory extension.
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -70,14 +57,7 @@ to process the changes in the call directory extension.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/call-number.md b/versioned_docs/version-v5/native/call-number.md
index ead29647504..d3df8b38a33 100644
--- a/versioned_docs/version-v5/native/call-number.md
+++ b/versioned_docs/version-v5/native/call-number.md
@@ -14,12 +14,7 @@ Call a number directly from your Cordova/Ionic application.
**NOTE**: The iOS Simulator (and maybe Android Simulators) do not provide access to the phone subsystem.
-
- {' '}
- https://github.com/Rohfosho/CordovaCallNumberPlugin
-
+ github.com/Rohfosho/CordovaCallNumberPlugin
Stuck on a Cordova issue?
@@ -29,11 +24,8 @@ Call a number directly from your Cordova/Ionic application.
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -63,14 +55,7 @@ Call a number directly from your Cordova/Ionic application.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/camera-preview.md b/versioned_docs/version-v5/native/camera-preview.md
index b8a9b47fc8b..2816a745374 100644
--- a/versioned_docs/version-v5/native/camera-preview.md
+++ b/versioned_docs/version-v5/native/camera-preview.md
@@ -15,17 +15,7 @@ Showing camera preview in HTML
Requires Cordova plugin: `https://github.com/cordova-plugin-camera-preview/cordova-plugin-camera-preview.git`. For more info, please see the [Cordova Camera Preview docs](https://github.com/cordova-plugin-camera-preview/cordova-plugin-camera-preview).
-
- {' '}
- https://github.com/cordova-plugin-camera-preview/cordova-plugin-camera-preview
-
+ github.com/cordova-plugin-camera-preview/cordova-plugin-camera-preview
Stuck on a Cordova issue?
@@ -35,11 +25,8 @@ Requires Cordova plugin: `https://github.com/cordova-plugin-camera-preview/cordo
href="https://ionicframework.com/sales?product_of_interest=Ionic%20Native"
>
-
-
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer
- premium advisory services for both community plugins and premier plugins.
-
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
@@ -71,14 +58,7 @@ Requires Cordova plugin: `https://github.com/cordova-plugin-camera-preview/cordo
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team.
-
- Learn More
- or if you're interested in an enterprise version of this plugin
- Contact Us
-
+ Learn More or if you're interested in an enterprise version of this plugin Contact Us
diff --git a/versioned_docs/version-v5/native/camera.md b/versioned_docs/version-v5/native/camera.md
index 050cfd7d57b..1e4b5c102fa 100644
--- a/versioned_docs/version-v5/native/camera.md
+++ b/versioned_docs/version-v5/native/camera.md
@@ -24,15 +24,10 @@ Requires the Cordova plugin: `cordova-plugin-camera`. For more info, please see
```
-inside of the ` section
-
- {' '}
- https://github.com/apache/cordova-plugin-camera
-
+ github.com/apache/cordova-plugin-camera
Stuck on a Cordova issue?
@@ -42,11 +37,8 @@ inside of the
+
+ If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Contact Us Today!
- - {' '} - https://github.com/cyph/cordova-plugin-chooser - + github.com/cyph/cordova-plugin-chooser
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/CleverTap/clevertap-cordova - + github.com/CleverTap/clevertap-cordova
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/ihadeed/cordova-clipboard - + github.com/ihadeed/cordova-clipboard
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/dpa99c/cordova-plugin-cloud-settings - + github.com/dpa99c/cordova-plugin-cloud-settings
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/Microsoft/cordova-plugin-code-push - + github.com/Microsoft/cordova-plugin-code-push
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/paytm/paytm-customuisdk-cordova - + github.com/paytm/paytm-customuisdk-cordova
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/ionic-team/ionic-plugin-deeplinks - + github.com/ionic-team/ionic-plugin-deeplinks
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/xUnholy/cordova-device-accounts-v2 - + github.com/xUnholy/cordova-device-accounts-v2
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/apache/cordova-plugin-device-motion - + github.com/apache/cordova-plugin-device-motion
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/apache/cordova-plugin-device-orientation - + github.com/apache/cordova-plugin-device-orientation
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/apache/cordova-plugin-device - + github.com/apache/cordova-plugin-device
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/EinfachHans/cordova-plugin-dfu-update - + github.com/EinfachHans/cordova-plugin-dfu-update
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/dpa99c/cordova-diagnostic-plugin - + github.com/dpa99c/cordova-diagnostic-plugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/apache/cordova-plugin-dialogs - + github.com/apache/cordova-plugin-dialogs
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://bitbucket.org/zegeba/cordova-plugin-dns - + bitbucket.org/zegeba/cordova-plugin-dns
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/iampossible/Cordova-DocPicker - + github.com/iampossible/
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/NeutrinosPlatform/cordova-plugin-document-scanner - + github.com/NeutrinosPlatform/cordova-plugin-document-scanner
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/sitewaerts/cordova-plugin-document-viewer - + github.com/sitewaerts/cordova-plugin-document-viewer
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/katzer/cordova-plugin-email-composer - + github.com/katzer/cordova-plugin-email-composer
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://www.npmjs.com/package/cordova-fabric-plugin - + npmjs.com/package/cordova-fabric-plugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/cordova-plugin-facebook-connect/cordova-plugin-facebook-connect - + github.com/cordova-plugin-facebook-connect/cordova-plugin-facebook-connect
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated - + github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/pwlin/cordova-plugin-file-opener2 - + github.com/pwlin/cordova-plugin-file-opener2
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/hiddentao/cordova-plugin-filepath - + github.com/hiddentao/cordova-plugin-filepath
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/apache/cordova-plugin-file-transfer - + github.com/apache/cordova-plugin-file-transfer
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/apache/cordova-plugin-file - + github.com/apache/cordova-plugin-file
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/chemerisuk/cordova-plugin-firebase-analytics - + github.com/chemerisuk/cordova-plugin-firebase-analytics
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/chemerisuk/cordova-plugin-firebase-authentication - + github.com/chemerisuk/cordova-plugin-firebase-authentication
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/chemerisuk/cordova-plugin-firebase-config - + github.com/chemerisuk/cordova-plugin-firebase-config
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/chemerisuk/cordova-plugin-firebase-crash - + github.com/chemerisuk/cordova-plugin-firebase-crash
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/ReallySmallSoftware/cordova-plugin-firebase-crashlytics - + github.com/ReallySmallSoftware/cordova-plugin-firebase-crashlytics
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/chemerisuk/cordova-plugin-firebase-dynamiclinks - + github.com/chemerisuk/cordova-plugin-firebase-dynamiclinks
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/chemerisuk/cordova-plugin-firebase-messaging - + github.com/chemerisuk/cordova-plugin-firebase-messaging
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/alon22/cordova-plugin-firebase-mlvision - + github.com/alon22/cordova-plugin-firebase-mlvision
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/dpa99c/cordova-plugin-firebasex - + github.com/dpa99c/cordova-plugin-firebasex
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/arnesson/cordova-plugin-firebase - + github.com/arnesson/cordova-plugin-firebase
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/EddyVerbruggen/Flashlight-PhoneGap-Plugin - + github.com/EddyVerbruggen/Flashlight-PhoneGap-Plugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/DavidBriglio/cordova-plugin-foreground-service - + github.com/DavidBriglio/cordova-plugin-foreground-service
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/xfally/cordova-plugin-ftp - + github.com/xfally/cordova-plugin-ftp
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/waliu/cordova-plugin-gaodelocation-chenyu.git - + github.com/waliu/cordova-plugin-gaodelocation-chenyu.git
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - git@github.com:GetuiLaboratory/cordova-plugin-getuisdk.git - + {'git@github.com:GetuiLaboratory/cordova-plugin-getuisdk.git'}
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/apache/cordova-plugin-geolocation - + github.com/apache/cordova-plugin-geolocation
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/apache/cordova-plugin-globalization - + github.com/apache/cordova-plugin-globalization
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/danwilson/google-analytics-plugin - + github.com/danwilson/google-analytics-plugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/hahahannes/cordova-plugin-google-nearby - + github.com/hahahannes/cordova-plugin-google-nearby
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/EddyVerbruggen/cordova-plugin-googleplus - + github.com/EddyVerbruggen/cordova-plugin-googleplus
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/Telerik-Verified-Plugins/HealthKit - + github.com/Telerik-Verified-Plugins/HealthKit
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/dariosalvi78/cordova-plugin-health - + github.com/dariosalvi78/cordova-plugin-health
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/silkimen/cordova-plugin-advanced-http - + github.com/silkimen/cordova-plugin-advanced-http
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/iamport/iamport-cordova - + github.com/iamport/iamport-cordova
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/petermetz/cordova-plugin-ibeacon - + github.com/petermetz/cordova-plugin-ibeacon
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/Telerik-Verified-Plugins/ImagePicker - + github.com/Telerik-Verified-Plugins/ImagePicker
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/aleksandar888/cordova-plugin-imap.git - + github.com/aleksandar888/cordova-plugin-imap.git
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/apache/cordova-plugin-inappbrowser - + github.com/apache/cordova-plugin-inappbrowser
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/j3k0/cordova-plugin-purchase - + github.com/j3k0/cordova-plugin-purchase
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/omaxlive/com.omarben.inappreview - + github.com/omaxlive/com.omarben.inappreview
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/EddyVerbruggen/Insomnia-PhoneGap-Plugin - + github.com/EddyVerbruggen/Insomnia-PhoneGap-Plugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/vstirbu/InstagramPlugin - + github.com/vstirbu/InstagramPlugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/intercom/intercom-cordova - + github.com/intercom/intercom-cordova
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/ionic-team/cordova-plugin-ionic-webview - + github.com/ionic-team/cordova-plugin-ionic-webview
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/jwelker110/cordova-plugin-ios-aswebauthenticationsession-api - + github.com/jwelker110/cordova-plugin-ios-aswebauthenticationsession-api
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/mattlewis92/cordova-plugin-is-debug - + github.com/mattlewis92/cordova-plugin-is-debug
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/ionic-team/cordova-plugin-ionic-keyboard - + github.com/ionic-team/cordova-plugin-ionic-keyboard
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/ionic-team/cordova-plugin-ios-keychain - + github.com/ionic-team/cordova-plugin-ios-keychain
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/Kommunicate-io/Kommunicate-Cordova-Ionic-PhoneGap-Chat-Plugin - + github.com/Kommunicate-io/Kommunicate-Cordova-Ionic-PhoneGap-Chat-Plugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/dpa99c/phonegap-launch-navigator - + github.com/dpa99c/phonegap-launch-navigator
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/dpa99c/cordova-launch-review - + github.com/dpa99c/cordova-launch-review
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/nrikiji/cordova-line-login-plugin - + github.com/nrikiji/cordova-line-login-plugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/katzer/cordova-plugin-local-notifications - + github.com/katzer/cordova-plugin-local-notifications
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/dpa99c/cordova-plugin-request-location-accuracy - + github.com/dpa99c/cordova-plugin-request-location-accuracy
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/timbru31/cordova-plugin-lottie-splashscreen - + github.com/timbru31/cordova-plugin-lottie-splashscreen
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/apache/cordova-plugin-media-capture - + github.com/apache/cordova-plugin-media-capture
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/apache/cordova-plugin-media - + github.com/apache/cordova-plugin-media
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/metrixorg/MetrixSDK-CordovaPlugin - + github.com/metrixorg/MetrixSDK-CordovaPlugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/samzilverberg/cordova-mixpanel-plugin - + github.com/samzilverberg/cordova-mixpanel-plugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/rigelglen/cordova-plugin-mlkit-translate - + github.com/rigelglen/cordova-plugin-mlkit-translate
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/infobip/mobile-messaging-cordova-plugin - + github.com/infobip/mobile-messaging-cordova-plugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/akeotech/cordova-plugin-multiple-documents-picker - + github.com/akeotech/cordova-plugin-multiple-documents-picker
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/ghenry22/cordova-plugin-music-controls2 - + github.com/ghenry22/cordova-plugin-music-controls2
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/floatinghotpot/cordova-plugin-nativeaudio - + github.com/floatinghotpot/cordova-plugin-nativeaudio
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/sebastianbaar/cordova-plugin-nativegeocoder - + github.com/sebastianbaar/cordova-plugin-nativegeocoder
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/EddyVerbruggen/cordova-plugin-native-keyboard - + github.com/EddyVerbruggen/cordova-plugin-native-keyboard
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/Telerik-Verified-Plugins/NativePageTransitions - + github.com/Telerik-Verified-Plugins/NativePageTransitions
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/TheCocoaProject/cordova-plugin-nativestorage - + github.com/TheCocoaProject/cordova-plugin-nativestorage
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/salbahra/cordova-plugin-networkinterface - + github.com/salbahra/cordova-plugin-networkinterface
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/apache/cordova-plugin-network-information - + github.com/apache/cordova-plugin-network-information
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/chariotsolutions/phonegap-nfc - + github.com/chariotsolutions/phonegap-nfc
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/NeutrinosPlatform/cordova-plugin-mobile-ocr - + github.com/NeutrinosPlatform/cordova-plugin-mobile-ocr
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/OneSignal/OneSignal-Cordova-SDK - + github.com/OneSignal/OneSignal-Cordova-SDK
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/guyromb/Cordova-open-native-settings - + github.com/guyromb/Cordova-open-native-settings
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/iMicknl/cordova-plugin-openalpr - + github.com/iMicknl/cordova-plugin-openalpr
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/cesarvr/pdf-generator - + github.com/cesarvr/pdf-generator
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/terikon/cordova-plugin-photo-library - + github.com/terikon/cordova-plugin-photo-library
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/sarriaroman/photoviewer - + github.com/sarriaroman/photoviewer
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/katzer/cordova-plugin-printer - + github.com/katzer/cordova-plugin-printer
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/PSPDFKit/PSPDFKit-Cordova - + github.com/PSPDFKit/PSPDFKit-Cordova
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/RevenueCat/cordova-plugin-purchases - + github.com/RevenueCat/cordova-plugin-purchases
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/phonegap/phonegap-plugin-push - + github.com/phonegap/phonegap-plugin-push
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/gluelabs/pushape-cordova-push - + github.com/gluelabs/pushape-cordova-push
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/EddyVerbruggen/cordova-plugin-safariviewcontroller - + github.com/EddyVerbruggen/cordova-plugin-safariviewcontroller
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/apache/cordova-plugin-screen-orientation - + github.com/apache/cordova-plugin-screen-orientation
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/scottdermott/cordova-plugin-discovery - + github.com/scottdermott/cordova-plugin-discovery
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/leecrossley/cordova-plugin-shake - + github.com/leecrossley/cordova-plugin-shake
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/twogate/cordova-plugin-sign-in-with-apple - + github.com/twogate/cordova-plugin-sign-in-with-apple
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/smartlook/cordova-smartlook.git - + github.com/smartlook/cordova-smartlook.git
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/hanatharesh2712/ionic-native-sms-retriever-plugin-master - + github.com/hanatharesh2712/ionic-native-sms-retriever-plugin-master
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/cordova-sms/cordova-sms-plugin - + github.com/cordova-sms/cordova-sms-plugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin - + github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/pbakondy/cordova-plugin-speechrecognition - + github.com/pbakondy/cordova-plugin-speechrecognition
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/greybax/cordova-plugin-native-spinner - + github.com/greybax/cordova-plugin-native-spinner
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/apache/cordova-plugin-splashscreen - + github.com/apache/cordova-plugin-splashscreen
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/Festify/cordova-spotify-oauth - + github.com/Festify/cordova-spotify-oauth
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/an-rahulpandey/cordova-plugin-dbcopy - + github.com/an-rahulpandey/cordova-plugin-dbcopy
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/dpa99c/cordova-sqlite-porter - + github.com/dpa99c/cordova-sqlite-porter
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/litehelpers/Cordova-sqlite-storage - + github.com/litehelpers/Cordova-sqlite-storage
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/auctifera-josed/starprnt - + github.com/auctifera-josed/starprnt
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/apache/cordova-plugin-statusbar - + github.com/apache/cordova-plugin-statusbar
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/nchutchind/cordova-plugin-streaming-media - + github.com/nchutchind/cordova-plugin-streaming-media
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/zyramedia/cordova-plugin-stripe - + github.com/zyramedia/cordova-plugin-stripe
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/mariusbackes/cordova-plugin-sumup - + github.com/mariusbackes/cordova-plugin-sumup
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/EddyVerbruggen/cordova-plugin-taptic-engine - + github.com/EddyVerbruggen/cordova-plugin-taptic-engine
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/Tealium/cordova-plugin - + github.com/Tealium/cordova-plugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/Tealium/cordova-plugin - + github.com/Tealium/cordova-plugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/Tealium/cordova-plugin - + github.com/Tealium/cordova-plugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/mariusbackes/cordova-plugin-theme-detection - + github.com/mariusbackes/cordova-plugin-theme-detection
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/EddyVerbruggen/cordova-plugin-3dtouch - + github.com/EddyVerbruggen/cordova-plugin-3dtouch
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin - + github.com/EddyVerbruggen/Toast-PhoneGap-Plugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/EddyVerbruggen/cordova-plugin-touch-id - + github.com/EddyVerbruggen/cordova-plugin-touch-id
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/unvired/cordova-plugin-unvired-sdk/ - + github.com/unvired/cordova-plugin-unvired-sdk/
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/s1lviu/cordova-plugin-uptime - + github.com/s1lviu/cordova-plugin-uptime
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://www.npmjs.com/package/urbanairship-cordova - + npmjs.com/package/urbanairship-cordova
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/usabilla/usabilla-u4a-cordova - + github.com/usabilla/usabilla-u4a-cordova
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/vibes/vibes-cordova.git - + github.com/vibes/vibes-cordova.git
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/apache/cordova-plugin-vibration - + github.com/apache/cordova-plugin-vibration
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/jbavari/cordova-plugin-video-editor - + github.com/jbavari/cordova-plugin-video-editor
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/moust/cordova-plugin-videoplayer - + github.com/moust/cordova-plugin-videoplayer
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/darryncampbell/darryncampbell-cordova-plugin-intent - + github.com/darryncampbell/darryncampbell-cordova-plugin-intent
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/bykof/cordova-plugin-webserver.git - + github.com/bykof/cordova-plugin-webserver.git
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/becvert/cordova-plugin-websocket-server - + github.com/becvert/cordova-plugin-websocket-server
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/WebEngage/cordova-plugin - + github.com/WebEngage/cordova-plugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/xu-li/cordova-plugin-wechat.git - + github.com/xu-li/cordova-plugin-wechat.git
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/jasonmamy/cordova-wheel-selector-plugin - + github.com/jasonmamy/cordova-wheel-selector-plugin
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/tripflex/WifiWizard2 - + github.com/tripflex/WifiWizard2
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/wonderpush/wonderpush-cordova-sdk - + github.com/wonderpush/wonderpush-cordova-sdk
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/ihadeed/CordovaYoutubeVideoPlayer - + github.com/ihadeed/CordovaYoutubeVideoPlayer
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/tjwoon/csZBar - + github.com/tjwoon/csZBar
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/becvert/cordova-plugin-zeroconf - + github.com/becvert/cordova-plugin-zeroconf
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- - {' '} - https://github.com/zoom/zoom-sdk-ionic - + github.com/zoom/zoom-sdk-ionic
- If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer - premium advisory services for both community plugins and premier plugins. -
+If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. - - Learn More - or if you're interested in an enterprise version of this plugin - Contact Us - + Learn More or if you're interested in an enterprise version of this plugin Contact Us
- Cards are a great way to display an important piece of content, and can contain images, buttons, text, and more. -
+ +Cards are a great way to display an important piece of content, and can contain images, buttons, text, and more.