├── .asf.yaml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ ├── FEATURE_REQUEST.md │ └── SUPPORT_QUESTION.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── android.yml │ ├── chrome.yml │ ├── ios.yml │ ├── lint.yml │ └── release-audit.yml ├── .gitignore ├── .npmrc ├── .ratignore ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── ci-plugin ├── ci.js ├── package.json └── plugin.xml ├── conf └── pr │ └── local │ ├── android-10.config.json │ ├── android-11.config.json │ ├── android-12.config.json │ ├── android-12L.config.json │ ├── android-13.config.json │ ├── android-14.config.json │ ├── android-15.config.json │ ├── android-16.config.json │ ├── android-5.1.config.json │ ├── android-6.config.json │ ├── android-7.1.config.json │ ├── android-7.config.json │ ├── android-8.1.config.json │ ├── android-8.config.json │ ├── android-9.config.json │ ├── browser.config.json │ ├── ios-10.0.config.json │ ├── ios-11.4.config.json │ ├── ios-12.x.config.json │ ├── ios-13.6.config.json │ ├── ios-13.x.config.json │ ├── ios-14.x.config.json │ ├── ios-15.x.config.json │ ├── ios-16.x.config.json │ ├── ios-17.x.config.json │ ├── ios-18.x.config.json │ └── ios-26.x.config.json ├── eslint.config.js ├── ios-geolocation-permissions-plugin ├── package.json ├── plugin.xml └── src │ └── ios │ └── CDVAllowLocation.m ├── lib ├── LocalServer.js ├── ParamedicApp.js ├── ParamedicAppUninstall.js ├── ParamedicConfig.js ├── ParamedicKill.js ├── ParamedicLogCollector.js ├── ParamedicTargetChooser.js ├── ParamediciOSPermissions.js ├── PluginsManager.js ├── Reporters.js ├── paramedic.js └── utils │ ├── execWrapper.js │ ├── index.js │ └── utilities.js ├── licence_checker.yml ├── main.js ├── package.json ├── paramedic-plugin ├── JasmineParamedicProxy.js ├── package-lock.json ├── package.json ├── paramedic.js └── plugin.xml ├── sample-config └── .paramedic.config.js └── spec └── testable-plugin ├── package.json ├── plugin.xml ├── tests ├── foo │ └── package.json ├── package.json ├── plugin.xml └── tests.js └── www └── testable.js /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/chrome.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/.github/workflows/chrome.yml -------------------------------------------------------------------------------- /.github/workflows/ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/.github/workflows/ios.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release-audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/.github/workflows/release-audit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/.npmrc -------------------------------------------------------------------------------- /.ratignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/.ratignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/README.md -------------------------------------------------------------------------------- /ci-plugin/ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/ci-plugin/ci.js -------------------------------------------------------------------------------- /ci-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/ci-plugin/package.json -------------------------------------------------------------------------------- /ci-plugin/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/ci-plugin/plugin.xml -------------------------------------------------------------------------------- /conf/pr/local/android-10.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/android-10.config.json -------------------------------------------------------------------------------- /conf/pr/local/android-11.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/android-11.config.json -------------------------------------------------------------------------------- /conf/pr/local/android-12.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/android-12.config.json -------------------------------------------------------------------------------- /conf/pr/local/android-12L.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/android-12L.config.json -------------------------------------------------------------------------------- /conf/pr/local/android-13.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/android-13.config.json -------------------------------------------------------------------------------- /conf/pr/local/android-14.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/android-14.config.json -------------------------------------------------------------------------------- /conf/pr/local/android-15.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/android-15.config.json -------------------------------------------------------------------------------- /conf/pr/local/android-16.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/android-16.config.json -------------------------------------------------------------------------------- /conf/pr/local/android-5.1.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/android-5.1.config.json -------------------------------------------------------------------------------- /conf/pr/local/android-6.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/android-6.config.json -------------------------------------------------------------------------------- /conf/pr/local/android-7.1.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/android-7.1.config.json -------------------------------------------------------------------------------- /conf/pr/local/android-7.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/android-7.config.json -------------------------------------------------------------------------------- /conf/pr/local/android-8.1.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/android-8.1.config.json -------------------------------------------------------------------------------- /conf/pr/local/android-8.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/android-8.config.json -------------------------------------------------------------------------------- /conf/pr/local/android-9.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/android-9.config.json -------------------------------------------------------------------------------- /conf/pr/local/browser.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/browser.config.json -------------------------------------------------------------------------------- /conf/pr/local/ios-10.0.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/ios-10.0.config.json -------------------------------------------------------------------------------- /conf/pr/local/ios-11.4.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/ios-11.4.config.json -------------------------------------------------------------------------------- /conf/pr/local/ios-12.x.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/ios-12.x.config.json -------------------------------------------------------------------------------- /conf/pr/local/ios-13.6.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/ios-13.6.config.json -------------------------------------------------------------------------------- /conf/pr/local/ios-13.x.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/ios-13.x.config.json -------------------------------------------------------------------------------- /conf/pr/local/ios-14.x.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/ios-14.x.config.json -------------------------------------------------------------------------------- /conf/pr/local/ios-15.x.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/ios-15.x.config.json -------------------------------------------------------------------------------- /conf/pr/local/ios-16.x.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/ios-16.x.config.json -------------------------------------------------------------------------------- /conf/pr/local/ios-17.x.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/ios-17.x.config.json -------------------------------------------------------------------------------- /conf/pr/local/ios-18.x.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/ios-18.x.config.json -------------------------------------------------------------------------------- /conf/pr/local/ios-26.x.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/conf/pr/local/ios-26.x.config.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/eslint.config.js -------------------------------------------------------------------------------- /ios-geolocation-permissions-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/ios-geolocation-permissions-plugin/package.json -------------------------------------------------------------------------------- /ios-geolocation-permissions-plugin/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/ios-geolocation-permissions-plugin/plugin.xml -------------------------------------------------------------------------------- /ios-geolocation-permissions-plugin/src/ios/CDVAllowLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/ios-geolocation-permissions-plugin/src/ios/CDVAllowLocation.m -------------------------------------------------------------------------------- /lib/LocalServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/lib/LocalServer.js -------------------------------------------------------------------------------- /lib/ParamedicApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/lib/ParamedicApp.js -------------------------------------------------------------------------------- /lib/ParamedicAppUninstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/lib/ParamedicAppUninstall.js -------------------------------------------------------------------------------- /lib/ParamedicConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/lib/ParamedicConfig.js -------------------------------------------------------------------------------- /lib/ParamedicKill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/lib/ParamedicKill.js -------------------------------------------------------------------------------- /lib/ParamedicLogCollector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/lib/ParamedicLogCollector.js -------------------------------------------------------------------------------- /lib/ParamedicTargetChooser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/lib/ParamedicTargetChooser.js -------------------------------------------------------------------------------- /lib/ParamediciOSPermissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/lib/ParamediciOSPermissions.js -------------------------------------------------------------------------------- /lib/PluginsManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/lib/PluginsManager.js -------------------------------------------------------------------------------- /lib/Reporters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/lib/Reporters.js -------------------------------------------------------------------------------- /lib/paramedic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/lib/paramedic.js -------------------------------------------------------------------------------- /lib/utils/execWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/lib/utils/execWrapper.js -------------------------------------------------------------------------------- /lib/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/lib/utils/index.js -------------------------------------------------------------------------------- /lib/utils/utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/lib/utils/utilities.js -------------------------------------------------------------------------------- /licence_checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/licence_checker.yml -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/package.json -------------------------------------------------------------------------------- /paramedic-plugin/JasmineParamedicProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/paramedic-plugin/JasmineParamedicProxy.js -------------------------------------------------------------------------------- /paramedic-plugin/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/paramedic-plugin/package-lock.json -------------------------------------------------------------------------------- /paramedic-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/paramedic-plugin/package.json -------------------------------------------------------------------------------- /paramedic-plugin/paramedic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/paramedic-plugin/paramedic.js -------------------------------------------------------------------------------- /paramedic-plugin/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/paramedic-plugin/plugin.xml -------------------------------------------------------------------------------- /sample-config/.paramedic.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/sample-config/.paramedic.config.js -------------------------------------------------------------------------------- /spec/testable-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/spec/testable-plugin/package.json -------------------------------------------------------------------------------- /spec/testable-plugin/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/spec/testable-plugin/plugin.xml -------------------------------------------------------------------------------- /spec/testable-plugin/tests/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/spec/testable-plugin/tests/foo/package.json -------------------------------------------------------------------------------- /spec/testable-plugin/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/spec/testable-plugin/tests/package.json -------------------------------------------------------------------------------- /spec/testable-plugin/tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/spec/testable-plugin/tests/plugin.xml -------------------------------------------------------------------------------- /spec/testable-plugin/tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/spec/testable-plugin/tests/tests.js -------------------------------------------------------------------------------- /spec/testable-plugin/www/testable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-paramedic/HEAD/spec/testable-plugin/www/testable.js --------------------------------------------------------------------------------