cordova-plugin-detect-webview-engine

Cordova plugin to determine whether the application is using UIWebView or WKWebView engine

Usage no npm install needed!

<script type="module">
  import cordovaPluginDetectWebviewEngine from 'https://cdn.skypack.dev/cordova-plugin-detect-webview-engine';
</script>

README

cordova-plugin-detect-webview-engine

Build Status

Dependency Status devDependency Status Known Vulnerabilities

Commitizen friendly Dependabot Status License npm

Cordova plugin to determine whether the application is using UIWebView or WKWebView engine

Supported platforms

  • iOS

Installation

from npm (recommended)

$ cordova plugin add cordova-plugin-detect-webview-engine

from git (unstable)

$ cordova plugin add https://github.com/timbru31/cordova-plugin-detect-webview-engine.git

Usage

Check for UIWebView

cordova.plugins.webviewEngine.isUIWebView().then(isUIWebView => {
    // returns true or false
});

Check for WKWebView

cordova.plugins.webviewEngine.isWKWebView().then(isWKWebView => {
    // returns true or false
});

Built by (c) Tim Brust and contributors. Released under the MIT license.