├── .editorconfig ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json ├── plugin.xml ├── src └── android │ └── WebViewChecker.java └── www └── webview-checker.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoNameProvided/cordova-plugin-webview-checker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoNameProvided/cordova-plugin-webview-checker/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # Project related files 2 | .editorconfig 3 | CONTRIBUTING.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoNameProvided/cordova-plugin-webview-checker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoNameProvided/cordova-plugin-webview-checker/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoNameProvided/cordova-plugin-webview-checker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoNameProvided/cordova-plugin-webview-checker/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoNameProvided/cordova-plugin-webview-checker/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoNameProvided/cordova-plugin-webview-checker/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/WebViewChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoNameProvided/cordova-plugin-webview-checker/HEAD/src/android/WebViewChecker.java -------------------------------------------------------------------------------- /www/webview-checker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoNameProvided/cordova-plugin-webview-checker/HEAD/www/webview-checker.js --------------------------------------------------------------------------------