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 4010db3b372..a7f9cd5a1e1 100644
--- a/src/components/global/Playground/index.tsx
+++ b/src/components/global/Playground/index.tsx
@@ -571,14 +571,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
@@ -586,12 +587,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/components/page/reference/ReleaseNotes/release-notes.json b/src/components/page/reference/ReleaseNotes/release-notes.json
index b356192e816..909c46e3321 100644
--- a/src/components/page/reference/ReleaseNotes/release-notes.json
+++ b/src/components/page/reference/ReleaseNotes/release-notes.json
@@ -1,42 +1,51 @@
[
{
- "body": "Bug Fixes
\n\n- alert: date inputs render correctly in mobile safari (#28495) (b833f0e), closes #28494
\n- datetime: allow disabling datetime with prefer-wheel (#28511) (01130e1)
\n
\n",
- "name": "v7.5.7",
- "published_at": "November 29 2023",
- "tag_name": "v7.5.7",
+ "name": "v7.6.4",
+ "published_at": "January 10 2024",
+ "tag_name": "v7.6.4",
"type": "patch",
- "version": "7.5.7"
+ "version": "7.6.4"
},
{
- "body": "Bug Fixes
\n\n- alert: match MD spec on tablet (#28501) (6a2be9f), closes #23977
\n- angular: ng add @ionic/angular in standalone projects (#28523) (c07312e), closes #28514
\n- angular: overlays are defined when using standalone controllers (#28560) (9453132), closes #28385
\n- datetime: updating value with min scrolls to new value (#28549) (388d19e), closes #28548
\n
\n",
- "name": "v7.5.6",
- "published_at": "November 21 2023",
- "tag_name": "v7.5.6",
+ "name": "v7.6.3",
+ "published_at": "January 3 2024",
+ "tag_name": "v7.6.3",
"type": "patch",
- "version": "7.5.6"
+ "version": "7.6.3"
},
{
- "body": "Bug Fixes
\n\n- accordion-group: correct accordion is open on load (#28510) (a000dd2), closes #28506
\n- action-sheet: adjust height for safe area with scrollable options (#28504) (900267e), closes #27777
\n- header: collapsible large title does not flicker when collapse prop not reflected (#28472) (8227b0e), closes #28466
\n- item-divider: apply safe area to proper side regardless of direction (#28420) (4513e0c)
\n- radio-group: emit value change on componentDidLoad (#28488) (73b8bfd), closes #28356
\n- searchbar: cancel icon aligns with back button (#28478) (c053fd9), closes #28468
\n
\n\n[!NOTE]\nIonic Vue developers utilizing the v-ion-change
or v-ion-input
workaround for https://github.com/ionic-team/ionic-framework/issues/27292 should remove this workaround when updating to Ionic v7.5.5.
\n
\n",
- "name": "v7.5.5",
- "published_at": "November 15 2023",
- "tag_name": "v7.5.5",
+ "name": "v7.6.2",
+ "published_at": "December 19 2023",
+ "tag_name": "v7.6.2",
"type": "patch",
- "version": "7.5.5"
+ "version": "7.6.2"
},
{
- "body": "Bug Fixes
\n\n- inputs: remove invalid legacy warnings in input, textarea, and select (#28484) (c765dcb)
\n- item: apply safe area to proper side regardless of direction (#28403) (ed040b0)
\n- list: remove border from last item with item-sliding (#28439) (cafafcc), closes #28435
\n
\n",
- "name": "v7.5.4",
- "published_at": "November 8 2023",
- "tag_name": "v7.5.4",
+ "name": "v7.6.1",
+ "published_at": "December 13 2023",
+ "tag_name": "v7.6.1",
"type": "patch",
- "version": "7.5.4"
+ "version": "7.6.1"
},
{
- "body": "Bug Fixes
\n\n- alert: long words wrap to next line (#28408) (34257d6), closes #28406
\n- angular: inputs on standalone form controls are reactive (#28434) (3b6e631), closes #28431
\n- angular: NavController works with nested outlets (#28421) (90acad1), closes #28417
\n- angular: run platform subscriptions inside zone (#28404) (a4b303e), closes #19539
\n- angular: standalone form components do not error when multiple are used (#28423) (89698b3), closes #28418
\n- datetime: allow calendar navigation in readonly mode; disallow keyboard navigation when disabled (#28336) (f6a6877), closes #28121
\n- input, textarea, select: use consistent sizes (#28390) (b31ecbb), closes #28388
\n- list-header: apply safe area to proper side regardless of direction (#28371) (f99d530)
\n- segment: avoid scrolling webkit bug (#28376) (8e2f818), closes #28373
\n- tab-bar: apply safe area to proper side regardless of direction (#28372) (d47b7e7)
\n
\n",
- "name": "v7.5.3",
- "published_at": "November 1 2023",
- "tag_name": "v7.5.3",
+ "name": "v7.6.0",
+ "published_at": "December 6 2023",
+ "tag_name": "v7.6.0",
+ "type": "minor",
+ "version": "7.6.0"
+ },
+ {
+ "name": "v7.5.8",
+ "published_at": "December 6 2023",
+ "tag_name": "v7.5.8",
"type": "patch",
- "version": "7.5.3"
+ "version": "7.5.8"
+ },
+ {
+ "name": "v7.5.7",
+ "published_at": "November 29 2023",
+ "tag_name": "v7.5.7",
+ "type": "patch",
+ "version": "7.5.7"
}
]
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..277dc6313dd 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,13 +153,20 @@ 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 {
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..7e318931103 100644
--- a/src/theme/DocPage/Layout/Main/index.tsx
+++ b/src/theme/DocRoot/Layout/Main/index.tsx
@@ -6,10 +6,10 @@
*/
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..3b550456246 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,4 +1,4 @@
{
- "extends": "@tsconfig/docusaurus/tsconfig.json",
+ "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..2e51c21b422 100644
--- a/versioned_docs/version-v5/angular/your-first-app.md
+++ b/versioned_docs/version-v5/angular/your-first-app.md
@@ -12,7 +12,7 @@ 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
>
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..4a1865454f9 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,7 +101,7 @@ 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"
@@ -130,7 +130,7 @@ 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"
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..7ab56a317a8 100644
--- a/versioned_docs/version-v5/index.md
+++ b/versioned_docs/version-v5/index.md
@@ -130,18 +130,11 @@ Ionic Framework is actively developed and maintained full-time by a core team, a
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.
+
+- 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..6129250d46b 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?
@@ -30,10 +25,7 @@ ABBYY Real-Time Recognition SDK (RTR SDK) in apps.
>
-
- If you're building a 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 offerpremium 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..c8039daffff 100644
--- a/versioned_docs/version-v5/native/action-sheet.md
+++ b/versioned_docs/version-v5/native/action-sheet.md
@@ -16,16 +16,7 @@ Requires Cordova plugin: `cordova-plugin-actionsheet`. For more info, please see
- {' '}
- https://github.com/EddyVerbruggen/cordova-plugin-actionsheet
-
+ href="https://github.com/EddyVerbruggen/cordova-plugin-actionsheet" target="_blank" rel="noopener" className="git-link">github.com/EddyVerbruggen/cordova-plugin-actionsheet
Stuck on a Cordova issue?
@@ -36,10 +27,7 @@ Requires Cordova plugin: `cordova-plugin-actionsheet`. For more info, please see
>
-
- If you're building a 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 +59,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..c431e65eb20 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?
@@ -31,10 +26,7 @@ Requires Cordova plugin: `com.adjust.sdk`. For more info, please see the [Adjust
>
-
- If you're building a 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..7340ad0d785 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?
@@ -29,10 +24,7 @@ AdMob Plus is the successor of cordova-plugin-admob-free, which provides a clean
>
-
- If you're building a 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..89371feff88 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?
@@ -37,10 +32,7 @@ Monetize your apps and games with AdMob ads, using latest Google AdMob SDK. With
>
-
- If you're building a 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..73d92b9b368 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?
@@ -31,10 +26,7 @@ The encryption and decryption are performed on the device native layer so that t
>
-
- If you're building a 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..a728b3d6962 100644
--- a/versioned_docs/version-v5/native/all-in-one-sdk.md
+++ b/versioned_docs/version-v5/native/all-in-one-sdk.md
@@ -17,16 +17,7 @@ For more information about Paytm All-in-One SDK, please visit https://developer.
- {' '}
- https://github.com/paytm/paytm-allinonesdk-ionic-cordova.git
-
+ href="https://github.com/paytm/paytm-allinonesdk-ionic-cordova.git" target="_blank" rel="noopener" className="git-link">github.com/paytm/paytm-allinonesdk-ionic-cordova.git
Stuck on a Cordova issue?
@@ -37,10 +28,7 @@ For more information about Paytm All-in-One SDK, please visit https://developer.
>
-
- If you're building a 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 +60,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..50c8ba4df94 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?
@@ -29,10 +24,7 @@ Google Analytics Firebase plugin for Ionic Native apps.
>
-
- If you're building a 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..b6891af1af0 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?
@@ -31,10 +26,7 @@ https://github.com/google/ExoPlayer
>
-
- If you're building a 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..c25da4e21d7 100644
--- a/versioned_docs/version-v5/native/android-full-screen.md
+++ b/versioned_docs/version-v5/native/android-full-screen.md
@@ -16,16 +16,7 @@ In Android 4.4+, however, you can now enter true full screen, fully interactive
- {' '}
- https://github.com/mesmotronic/cordova-plugin-fullscreen
-
+ href="https://github.com/mesmotronic/cordova-plugin-fullscreen" target="_blank" rel="noopener" className="git-link">github.com/mesmotronic/cordova-plugin-fullscreen
Stuck on a Cordova issue?
@@ -36,10 +27,7 @@ In Android 4.4+, however, you can now enter true full screen, fully interactive
>
-
- If you're building a 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 +59,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..69156f3988a 100644
--- a/versioned_docs/version-v5/native/android-notch.md
+++ b/versioned_docs/version-v5/native/android-notch.md
@@ -16,16 +16,7 @@ This plugin works on all android versions, but we can only detect notches starti
- {' '}
- https://github.com/tobspr/cordova-plugin-android-notch.git
-
+ href="https://github.com/tobspr/cordova-plugin-android-notch.git" target="_blank" rel="noopener" className="git-link">github.com/tobspr/cordova-plugin-android-notch.git
Stuck on a Cordova issue?
@@ -36,10 +27,7 @@ This plugin works on all android versions, but we can only detect notches starti
>
-
- If you're building a 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 +59,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..cf9704da8b1 100644
--- a/versioned_docs/version-v5/native/android-permissions.md
+++ b/versioned_docs/version-v5/native/android-permissions.md
@@ -18,16 +18,7 @@ You can find all permissions here: https://developer.android.com/reference/andro
- {' '}
- https://github.com/NeoLSN/cordova-plugin-android-permissions
-
+ href="https://github.com/NeoLSN/cordova-plugin-android-permissions" target="_blank" rel="noopener" className="git-link">github.com/NeoLSN/cordova-plugin-android-permissions
Stuck on a Cordova issue?
@@ -38,10 +29,7 @@ You can find all permissions here: https://developer.android.com/reference/andro
>
-
- If you're building a 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 +61,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..ca0a60b5e13 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?
@@ -29,10 +24,7 @@ Anyline provides an easy-to-use SDK for applications to enable Optical Character
>
-
- If you're building a 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..84abb5941ed 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?
@@ -31,10 +26,7 @@ Requires Cordova plugin: cordova-plugin-appavailability. For more info, please s
>
-
- If you're building a 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..033585c2dc2 100644
--- a/versioned_docs/version-v5/native/app-center-analytics.md
+++ b/versioned_docs/version-v5/native/app-center-analytics.md
@@ -19,16 +19,7 @@ For more info, please see https://docs.microsoft.com/en-us/appcenter/sdk/analyti
- {' '}
- https://github.com/Microsoft/appcenter-sdk-cordova/tree/master/cordova-plugin-appcenter-analytics
-
+ href="https://github.com/Microsoft/appcenter-sdk-cordova/tree/master/cordova-plugin-appcenter-analytics" target="_blank" rel="noopener" className="git-link">github.com/Microsoft/appcenter-sdk-cordova/tree/master/cordova-plugin-appcenter-analytics
Stuck on a Cordova issue?
@@ -39,10 +30,7 @@ For more info, please see https://docs.microsoft.com/en-us/appcenter/sdk/analyti
>
-
- If you're building a 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 +62,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..94162332c4d 100644
--- a/versioned_docs/version-v5/native/app-center-crashes.md
+++ b/versioned_docs/version-v5/native/app-center-crashes.md
@@ -19,16 +19,7 @@ For more info, please see https://docs.microsoft.com/en-us/appcenter/sdk/crashes
- {' '}
- https://github.com/Microsoft/appcenter-sdk-cordova/tree/master/cordova-plugin-appcenter-crashes
-
+ href="https://github.com/Microsoft/appcenter-sdk-cordova/tree/master/cordova-plugin-appcenter-crashes" target="_blank" rel="noopener" className="git-link">github.com/Microsoft/appcenter-sdk-cordova/tree/master/cordova-plugin-appcenter-crashes
Stuck on a Cordova issue?
@@ -39,10 +30,7 @@ For more info, please see https://docs.microsoft.com/en-us/appcenter/sdk/crashes
>
-
- If you're building a 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 +62,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..5cf4f76fd29 100644
--- a/versioned_docs/version-v5/native/app-center-push.md
+++ b/versioned_docs/version-v5/native/app-center-push.md
@@ -14,16 +14,7 @@ For more info, please see https://docs.microsoft.com/en-us/appcenter/sdk/push/co
- {' '}
- https://github.com/Microsoft/appcenter-sdk-cordova/tree/master/cordova-plugin-appcenter-push
-
+ href="https://github.com/Microsoft/appcenter-sdk-cordova/tree/master/cordova-plugin-appcenter-push" target="_blank" rel="noopener" className="git-link">github.com/Microsoft/appcenter-sdk-cordova/tree/master/cordova-plugin-appcenter-push
Stuck on a Cordova issue?
@@ -34,10 +25,7 @@ For more info, please see https://docs.microsoft.com/en-us/appcenter/sdk/push/co
>
-
- If you're building a 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 +57,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..64e851db59f 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?
@@ -29,10 +24,7 @@ This plugin allows you to read and write app preferences
>
-
- If you're building a 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..76f7aba045d 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?
@@ -31,10 +26,7 @@ Requires Cordova plugin: cordova-plugin-apprate. For more info, please see 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.
-
+ If you're building a 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..40b236509e4 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?
@@ -38,10 +28,7 @@ Requires Cordova plugin: `cordova-plugin-app-version`. For more info, please see
>
-
- If you're building a 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..1fe98893438 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?
@@ -29,10 +24,7 @@ A Cordova plugin that enables users from Add Payment Cards to their Apple Wallet
>
-
- If you're building a 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..b2baef3fbd9 100644
--- a/versioned_docs/version-v5/native/appsflyer.md
+++ b/versioned_docs/version-v5/native/appsflyer.md
@@ -14,16 +14,7 @@ Appsflyer Cordova SDK support for Attribution
- {' '}
- https://github.com/AppsFlyerSDK/cordova-plugin-appsflyer-sdk
-
+ href="https://github.com/AppsFlyerSDK/cordova-plugin-appsflyer-sdk" target="_blank" rel="noopener" className="git-link">github.com/AppsFlyerSDK/cordova-plugin-appsflyer-sdk
Stuck on a Cordova issue?
@@ -34,10 +25,7 @@ Appsflyer Cordova SDK support for Attribution
>
-
- If you're building a 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 +57,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..9be8729efcb 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?
@@ -35,10 +25,7 @@ For more detail, please see https://github.com/transistorsoft/cordova-plugin-bac
>
-
- If you're building a 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..ddff7d519c6 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?
@@ -37,10 +27,7 @@ more detail, please see https://github.com/mauron85/cordova-plugin-background-ge
>
-
- If you're building a 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..902c8825e55 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?
@@ -37,10 +27,7 @@ Requires Cordova plugin: cordova-plugin-background-mode. For more info about plu
>
-
- If you're building a 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..dee61c6ed4d 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?
@@ -34,10 +24,7 @@ This plugin does something
>
-
- If you're building a 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..b3038ac8019 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?
@@ -33,10 +28,7 @@ Android Note: Badges have historically only been a feature implemented by third
>
-
- If you're building a 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..a4baeb984f9 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?
@@ -38,10 +28,7 @@ Requires Cordova plugin: `phonegap-plugin-barcodescanner`. For more info, please
>
-
- If you're building a 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..f2097a58826 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?
@@ -29,10 +24,7 @@ Requires Cordova plugin: cordova-plugin-batterystatus. For more info, please see
>
-
- If you're building a 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..c5f2eebf01a 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?
@@ -29,10 +24,7 @@ BioCatch SDK Cordova support
>
-
- If you're building a 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..eebf355edf9 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..64f89d30bef 100644
--- a/versioned_docs/version-v5/native/ble.md
+++ b/versioned_docs/version-v5/native/ble.md
@@ -41,10 +41,7 @@ Simultaneous connections to multiple peripherals are supported.
>
-
- If you're building a 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 +71,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..6af196a4b79 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?
@@ -30,10 +25,7 @@ blinkid-phonegap repository for available recognizers and other 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.
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..969eb7d6d09 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?
@@ -36,10 +26,7 @@ It supports peripheral **and** central modes and covers most of the API methods
>
-
- If you're building a 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..49490573f28 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?
@@ -28,10 +23,7 @@ This plugin enables serial communication over Bluetooth. It was written for comm
>
-
- If you're building a 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..891c0e87b20 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?
@@ -34,10 +24,7 @@ Branch.io is an attribution service for deeplinking and invitation links
>
-
- If you're building a 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..042f6ef139f 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?
@@ -29,10 +24,7 @@ This plugin adds exchanging events between native code and your app.
>
-
- If you're building a 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..055940b6f5a 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?
@@ -29,10 +24,7 @@ This plugin provides build 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.
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..1271f397062 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?
@@ -38,10 +28,7 @@ Requires Cordova plugin: `cordova-plugin-calendar`. For more info, please see th
>
-
- If you're building a 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..40b3219578b 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?
@@ -35,10 +25,7 @@ to process the changes in the call directory extension.
>
-
- If you're building a 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..0aec376050d 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?
@@ -30,10 +25,7 @@ Call a number directly from your Cordova/Ionic application.
>
-
- If you're building a 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..96d15d627fc 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?
@@ -36,10 +26,7 @@ Requires Cordova plugin: `https://github.com/cordova-plugin-camera-preview/cordo
>
-
- If you're building a 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..6fe34d26e13 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?
@@ -43,10 +38,7 @@ 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/Cordova-DocPicker
- If you're building a 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
- If you're building a 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 - + href="https://github.com/NeutrinosPlatform/cordova-plugin-mobile-ocr" target="_blank" rel="noopener" className="git-link">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.