├── .asf.yaml ├── .eslintignore ├── .eslintrc.yml ├── .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 ├── .gitignore ├── .npmignore ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── RELEASENOTES.md ├── package.json ├── plugin.xml ├── src ├── android │ └── Device.java ├── browser │ └── DeviceProxy.js ├── electron │ ├── index.js │ └── package.json └── ios │ ├── CDVDevice.bundle │ └── PrivacyInfo.xcprivacy │ ├── CDVDevice.h │ └── CDVDevice.m ├── tests ├── package.json ├── plugin.xml └── tests.js ├── types └── index.d.ts └── www └── device.js /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | src/electron/node_modules -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/chrome.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/.github/workflows/chrome.yml -------------------------------------------------------------------------------- /.github/workflows/ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/.github/workflows/ios.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/.npmignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/README.md -------------------------------------------------------------------------------- /RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/RELEASENOTES.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/Device.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/src/android/Device.java -------------------------------------------------------------------------------- /src/browser/DeviceProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/src/browser/DeviceProxy.js -------------------------------------------------------------------------------- /src/electron/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/src/electron/index.js -------------------------------------------------------------------------------- /src/electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/src/electron/package.json -------------------------------------------------------------------------------- /src/ios/CDVDevice.bundle/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/src/ios/CDVDevice.bundle/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /src/ios/CDVDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/src/ios/CDVDevice.h -------------------------------------------------------------------------------- /src/ios/CDVDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/src/ios/CDVDevice.m -------------------------------------------------------------------------------- /tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/tests/package.json -------------------------------------------------------------------------------- /tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/tests/plugin.xml -------------------------------------------------------------------------------- /tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/tests/tests.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /www/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-device/HEAD/www/device.js --------------------------------------------------------------------------------